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

Side by Side Diff: core/fxcrt/include/fx_basic.h

Issue 1862123003: Rename both As{Byte,Wide}StringC() helpers to AsStringC(). (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase, fix new usage. 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/fxcrt_posix.cpp ('k') | core/fxcrt/include/fx_string.h » ('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 #ifndef CORE_FXCRT_INCLUDE_FX_BASIC_H_ 7 #ifndef CORE_FXCRT_INCLUDE_FX_BASIC_H_
8 #define CORE_FXCRT_INCLUDE_FX_BASIC_H_ 8 #define CORE_FXCRT_INCLUDE_FX_BASIC_H_
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 FX_STRSIZE GetLength() const { return m_DataSize; } 60 FX_STRSIZE GetLength() const { return m_DataSize; }
61 CFX_ByteStringC GetByteString() const; 61 CFX_ByteStringC GetByteString() const;
62 62
63 CFX_ByteTextBuf& operator<<(int i); 63 CFX_ByteTextBuf& operator<<(int i);
64 CFX_ByteTextBuf& operator<<(uint32_t i); 64 CFX_ByteTextBuf& operator<<(uint32_t i);
65 CFX_ByteTextBuf& operator<<(double f); 65 CFX_ByteTextBuf& operator<<(double f);
66 CFX_ByteTextBuf& operator<<(const FX_CHAR* pStr) { 66 CFX_ByteTextBuf& operator<<(const FX_CHAR* pStr) {
67 return *this << CFX_ByteStringC(pStr); 67 return *this << CFX_ByteStringC(pStr);
68 } 68 }
69 CFX_ByteTextBuf& operator<<(const CFX_ByteString& str) { 69 CFX_ByteTextBuf& operator<<(const CFX_ByteString& str) {
70 return *this << str.AsByteStringC(); 70 return *this << str.AsStringC();
71 } 71 }
72 CFX_ByteTextBuf& operator<<(const CFX_ByteStringC& lpsz); 72 CFX_ByteTextBuf& operator<<(const CFX_ByteStringC& lpsz);
73 CFX_ByteTextBuf& operator<<(const CFX_ByteTextBuf& buf); 73 CFX_ByteTextBuf& operator<<(const CFX_ByteTextBuf& buf);
74 }; 74 };
75 75
76 class CFX_WideTextBuf : public CFX_BinaryBuf { 76 class CFX_WideTextBuf : public CFX_BinaryBuf {
77 public: 77 public:
78 void AppendChar(FX_WCHAR wch); 78 void AppendChar(FX_WCHAR wch);
79 FX_STRSIZE GetLength() const { return m_DataSize / sizeof(FX_WCHAR); } 79 FX_STRSIZE GetLength() const { return m_DataSize / sizeof(FX_WCHAR); }
80 FX_WCHAR* GetBuffer() const { 80 FX_WCHAR* GetBuffer() const {
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 FX_FLOAT c; 1058 FX_FLOAT c;
1059 FX_FLOAT d; 1059 FX_FLOAT d;
1060 FX_FLOAT e; 1060 FX_FLOAT e;
1061 FX_FLOAT f; 1061 FX_FLOAT f;
1062 FX_FLOAT g; 1062 FX_FLOAT g;
1063 FX_FLOAT h; 1063 FX_FLOAT h;
1064 FX_FLOAT i; 1064 FX_FLOAT i;
1065 }; 1065 };
1066 1066
1067 #endif // CORE_FXCRT_INCLUDE_FX_BASIC_H_ 1067 #endif // CORE_FXCRT_INCLUDE_FX_BASIC_H_
OLDNEW
« no previous file with comments | « core/fxcrt/fxcrt_posix.cpp ('k') | core/fxcrt/include/fx_string.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698