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

Side by Side Diff: core/src/fxcrt/fx_xml_composer.cpp

Issue 1265503005: clang-format all pdfium code. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: sigh Created 5 years, 4 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
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 "../../include/fxcrt/fx_xml.h" 7 #include "../../include/fxcrt/fx_xml.h"
8 #include "xml_int.h" 8 #include "xml_int.h"
9 void FX_XML_SplitQualifiedName(const CFX_ByteStringC& bsFullName, CFX_ByteString C &bsSpace, CFX_ByteStringC &bsName) 9 void FX_XML_SplitQualifiedName(const CFX_ByteStringC& bsFullName,
10 { 10 CFX_ByteStringC& bsSpace,
11 if (bsFullName.IsEmpty()) { 11 CFX_ByteStringC& bsName) {
12 return; 12 if (bsFullName.IsEmpty()) {
13 return;
14 }
15 int32_t iStart = 0;
16 for (; iStart < bsFullName.GetLength(); iStart++) {
17 if (bsFullName.GetAt(iStart) == ':') {
18 break;
13 } 19 }
14 int32_t iStart = 0; 20 }
15 for (; iStart < bsFullName.GetLength(); iStart ++) { 21 if (iStart >= bsFullName.GetLength()) {
16 if (bsFullName.GetAt(iStart) == ':') { 22 bsName = bsFullName;
17 break; 23 } else {
18 } 24 bsSpace = CFX_ByteStringC(bsFullName.GetCStr(), iStart);
19 } 25 iStart++;
20 if (iStart >= bsFullName.GetLength()) { 26 bsName = CFX_ByteStringC(bsFullName.GetCStr() + iStart,
21 bsName = bsFullName; 27 bsFullName.GetLength() - iStart);
22 } else { 28 }
23 bsSpace = CFX_ByteStringC(bsFullName.GetCStr(), iStart);
24 iStart ++;
25 bsName = CFX_ByteStringC(bsFullName.GetCStr() + iStart, bsFullName.GetLe ngth() - iStart);
26 }
27 } 29 }
28 void CXML_Element::SetTag(const CFX_ByteStringC& qSpace, const CFX_ByteStringC& tagname) 30 void CXML_Element::SetTag(const CFX_ByteStringC& qSpace,
29 { 31 const CFX_ByteStringC& tagname) {
30 m_QSpaceName = qSpace; 32 m_QSpaceName = qSpace;
31 m_TagName = tagname; 33 m_TagName = tagname;
32 } 34 }
33 void CXML_Element::SetTag(const CFX_ByteStringC& qTagName) 35 void CXML_Element::SetTag(const CFX_ByteStringC& qTagName) {
34 { 36 ASSERT(!qTagName.IsEmpty());
35 ASSERT(!qTagName.IsEmpty()); 37 CFX_ByteStringC bsSpace, bsName;
36 CFX_ByteStringC bsSpace, bsName; 38 FX_XML_SplitQualifiedName(qTagName, bsSpace, bsName);
37 FX_XML_SplitQualifiedName(qTagName, bsSpace, bsName); 39 m_QSpaceName = bsSpace;
38 m_QSpaceName = bsSpace; 40 m_TagName = bsName;
39 m_TagName = bsName;
40 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698