HomeSort by relevance Sort by last modified time
    Searched refs:StrLen (Results 1 - 13 of 13) sorted by null

  /external/clang/include/clang/Sema/
TypoCorrection.h 161 template<std::size_t StrLen>
162 bool isKeyword(const char (&Str)[StrLen]) const {
  /external/llvm/include/llvm/Support/
PathV1.h 187 /// @param StrLen The length of the path name at StrStart
189 Path(const char *StrStart, unsigned StrLen);
657 unsigned StrLen ///< Length of the path
    [all...]
  /external/llvm/include/llvm/ADT/
StringMap.h 44 unsigned StrLen;
46 explicit StringMapEntryBase(unsigned Len) : StrLen(Len) {}
48 unsigned getKeyLength() const { return StrLen; }
115 explicit StringMapEntry(unsigned strLen)
116 : StringMapEntryBase(strLen), second() {}
117 StringMapEntry(unsigned strLen, const ValueTy &V)
118 : StringMapEntryBase(strLen), second(V) {}
  /external/clang/include/clang/Basic/
IdentifierTable.h 90 template <std::size_t StrLen>
91 bool isStr(const char (&Str)[StrLen]) const {
92 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/clang/lib/Basic/
Diagnostic.cpp 33 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);
772 OutStr.append(S, S + strlen(S));
821 OutStr.append(S, S + strlen(S));
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 170 // memory is to be moved to. We just generate a call to strlen.
273 // zero (a weird way to spell strlen).
488 if (Dst == Src) { // stpcpy(x,x) -> x+strlen(x)
489 Value *StrLen = EmitStrLen(Src, B, TD, TLI);
490 return StrLen ? B.CreateInBoundsGEP(Dst, StrLen) : 0;
561 // 'strlen' Optimizations
573 // Constant folding: strlen("xyz") -> 3
577 // strlen(x) != 0 --> *x != 0
578 // strlen(x) == 0 --> *x ==
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 35 /// EmitStrLen - Emit a call to the strlen function to the builder, for the
39 if (!TLI->has(LibFunc::strlen))
49 Constant *StrLen = M->getOrInsertFunction("strlen", AttrListPtr::get(AWI),
53 CallInst *CI = B.CreateCall(StrLen, CastToCStr(Ptr, B), "strlen");
54 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts()))
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 480 unsigned StrLen = Str.size();
485 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 &&
490 for (signed i = StrLen-1; i >= 0; i--) {
495 for (unsigned i = 0; i < StrLen; i++) {
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 292 std::string::size_type StartOfMacroName = strlen("#define ");
380 std::string::size_type StartOfMacroName = strlen("#define ");
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 1092 milliseconds