Searched refs:CStr (Results 1 – 8 of 8) sorted by relevance
/external/icu/icu4c/source/common/ |
D | cstr.h | 41 class U_COMMON_API CStr : public UMemory { 43 CStr(const UnicodeString &in); 44 ~CStr(); 49 CStr(const CStr &other); // Forbid copying of this class. 50 CStr &operator =(const CStr &other); // Forbid assignment.
|
D | cstr.cpp | 16 CStr::CStr(const UnicodeString &in) { in CStr() function in CStr 27 CStr::~CStr() { in ~CStr() 30 const char * CStr::operator ()() const { in operator ()()
|
/external/llvm/utils/TableGen/ |
D | CodeGenInstruction.cpp | 201 static void ParseConstraint(const std::string &CStr, CGIOperandList &Ops) { in ParseConstraint() argument 203 std::string::size_type wpos = CStr.find_first_of(" \t"); in ParseConstraint() 204 std::string::size_type start = CStr.find_first_not_of(" \t"); in ParseConstraint() 205 std::string Tok = CStr.substr(start, wpos - start); in ParseConstraint() 207 std::string Name = CStr.substr(wpos+1); in ParseConstraint() 210 PrintFatalError("Illegal format for @earlyclobber constraint: '" + CStr + "'"); in ParseConstraint() 223 std::string::size_type pos = CStr.find_first_of('='); in ParseConstraint() 225 start = CStr.find_first_not_of(" \t"); in ParseConstraint() 226 std::string Name = CStr.substr(start, pos - start); in ParseConstraint() 231 PrintFatalError("Illegal format for tied-to constraint: '" + CStr + "'"); in ParseConstraint() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | strtest.cpp | 542 if (0 != strcmp(CStr(us)(), cs)) { in TestCStr() 543 … errln("%s:%d CStr(s)() failed. Expected \"%s\", got \"%s\"", __FILE__, __LINE__, cs, CStr(us)()); in TestCStr()
|
/external/lldb/include/lldb/Expression/ |
D | IRForTarget.h | 330 llvm::GlobalVariable *CStr);
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 302 static void PrintCString(const char *CStr) { in PrintCString() argument 303 if (CStr != NULL && CStr[0] != '\0') { in PrintCString() 304 for ( ; *CStr; ++CStr) { in PrintCString() 305 const char C = *CStr; in PrintCString() 318 static void PrintCStringWithPrefix(const char *Prefix, const char *CStr) { in PrintCStringWithPrefix() argument 320 PrintCString(CStr); in PrintCStringWithPrefix()
|
/external/tinyxml2/ |
D | tinyxml2.h | 1440 const char* CStr() const { return buffer.Mem(); } in CStr() function
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 1775 const char* CStr() { return buffer.c_str(); } in CStr() function
|