/external/clang/include/clang/Sema/ |
TypoCorrection.h | 174 template<std::size_t StrLen> 175 bool isKeyword(const char (&Str)[StrLen]) const {
|
/external/llvm/include/llvm/ADT/ |
StringMap.h | 44 unsigned StrLen; 46 explicit StringMapEntryBase(unsigned Len) : StrLen(Len) {} 48 unsigned getKeyLength() const { return StrLen; } 123 explicit StringMapEntry(unsigned strLen) 124 : StringMapEntryBase(strLen), second() {} 125 StringMapEntry(unsigned strLen, const ValueTy &V) 126 : StringMapEntryBase(strLen), second(V) {}
|
/external/clang/include/clang/Basic/ |
IdentifierTable.h | 91 template <std::size_t StrLen> 92 bool isStr(const char (&Str)[StrLen]) const { 93 return getLength() == StrLen-1 && !memcmp(getNameStart(), Str, StrLen-1);
|
/external/zlib/src/contrib/pascal/ |
example.pas | 61 len := StrLen(hello)+1; 90 len := StrLen(hello)+1; 162 uncomprLen := StrLen(PChar(uncompr)); 189 len := StrLen(hello)+1; 373 len := StrLen(hello)+1; 461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary)); 469 c_stream.avail_in := StrLen(hello)+1; 513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
|
/external/llvm/lib/Transforms/Utils/ |
SimplifyLibCalls.cpp | 287 if (Dst == Src) { // stpcpy(x,x) -> x+strlen(x) 288 Value *StrLen = EmitStrLen(Src, B, TD, TLI); 289 return StrLen ? B.CreateInBoundsGEP(Dst, StrLen) : 0; 382 // memory is to be moved to. We just generate a call to strlen. 479 // zero (a weird way to spell strlen). 664 if (Dst == Src) { // stpcpy(x,x) -> x+strlen(x) 665 Value *StrLen = EmitStrLen(Src, B, TD, TLI); 666 return StrLen ? B.CreateInBoundsGEP(Dst, StrLen) : 0 [all...] |
BuildLibCalls.cpp | 33 /// EmitStrLen - Emit a call to the strlen function to the builder, for the 37 if (!TLI->has(LibFunc::strlen)) 48 Constant *StrLen = M->getOrInsertFunction("strlen", 54 CallInst *CI = B.CreateCall(StrLen, CastToCStr(Ptr, B), "strlen"); 55 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts()))
|
/external/clang/lib/Basic/ |
Diagnostic.cpp | 35 Output.append(Str, Str+strlen(Str)); 438 template <std::size_t StrLen> 440 const char (&Str)[StrLen]) { 441 return StrLen-1 == ModifierLen && !memcmp(Modifier, Str, StrLen-1); 774 OutStr.append(S, S + strlen(S)); 823 OutStr.append(S, S + strlen(S)); [all...] |
/external/chromium_org/base/third_party/symbolize/ |
demangle.cc | 153 // We don't use strlen() in libc since it's not guaranteed to be async 155 static size_t StrLen(const char *str) { 177 state->mangled_end = mangled + StrLen(mangled); 299 int length = StrLen(str); [all...] |
/external/llvm/lib/Analysis/ |
ConstantFolding.cpp | 481 unsigned StrLen = Str.size(); 486 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 && 491 for (signed i = StrLen-1; i >= 0; i--) { 496 for (unsigned i = 0; i < StrLen; i++) { [all...] |
/external/clang/lib/Sema/ |
SemaInit.cpp | [all...] |
SemaChecking.cpp | [all...] |
/external/clang/lib/AST/ |
ItaniumMangle.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | [all...] |