Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(820)

Side by Side Diff: core/fxcrt/fx_bidi.cpp

Issue 1832173003: Remove FX_DWORD from core/ and delete definition (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fxcrt/fx_basic_utf.cpp ('k') | core/fxcrt/fx_extension.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "core/fxcrt/fx_bidi.h" 7 #include "core/fxcrt/fx_bidi.h"
8 #include "core/fxcrt/include/fx_ucd.h" 8 #include "core/fxcrt/include/fx_ucd.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
11 11
12 CFX_BidiChar::CFX_BidiChar() 12 CFX_BidiChar::CFX_BidiChar()
13 : m_CurrentSegment({0, 0, NEUTRAL}), m_LastSegment({0, 0, NEUTRAL}) {} 13 : m_CurrentSegment({0, 0, NEUTRAL}), m_LastSegment({0, 0, NEUTRAL}) {}
14 14
15 bool CFX_BidiChar::AppendChar(FX_WCHAR wch) { 15 bool CFX_BidiChar::AppendChar(FX_WCHAR wch) {
16 FX_DWORD dwProps = FX_GetUnicodeProperties(wch); 16 uint32_t dwProps = FX_GetUnicodeProperties(wch);
17 int32_t iBidiCls = (dwProps & FX_BIDICLASSBITSMASK) >> FX_BIDICLASSBITS; 17 int32_t iBidiCls = (dwProps & FX_BIDICLASSBITSMASK) >> FX_BIDICLASSBITS;
18 Direction direction = NEUTRAL; 18 Direction direction = NEUTRAL;
19 switch (iBidiCls) { 19 switch (iBidiCls) {
20 case FX_BIDICLASS_L: 20 case FX_BIDICLASS_L:
21 case FX_BIDICLASS_AN: 21 case FX_BIDICLASS_AN:
22 case FX_BIDICLASS_EN: 22 case FX_BIDICLASS_EN:
23 direction = LEFT; 23 direction = LEFT;
24 break; 24 break;
25 case FX_BIDICLASS_R: 25 case FX_BIDICLASS_R:
26 case FX_BIDICLASS_AL: 26 case FX_BIDICLASS_AL:
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 if (nR2L > 0 && nR2L >= nL2R) 72 if (nR2L > 0 && nR2L >= nL2R)
73 SetOverallDirectionRight(); 73 SetOverallDirectionRight();
74 } 74 }
75 75
76 void CFX_BidiString::SetOverallDirectionRight() { 76 void CFX_BidiString::SetOverallDirectionRight() {
77 if (m_eOverallDirection != CFX_BidiChar::RIGHT) { 77 if (m_eOverallDirection != CFX_BidiChar::RIGHT) {
78 std::reverse(m_Order.begin(), m_Order.end()); 78 std::reverse(m_Order.begin(), m_Order.end());
79 m_eOverallDirection = CFX_BidiChar::RIGHT; 79 m_eOverallDirection = CFX_BidiChar::RIGHT;
80 } 80 }
81 } 81 }
OLDNEW
« no previous file with comments | « core/fxcrt/fx_basic_utf.cpp ('k') | core/fxcrt/fx_extension.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698