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

  /external/clang/lib/Lex/
HeaderMap.cpp 41 uint32_t Suffix; // Offset (into strings) of value suffix.
149 Result.Suffix = 0;
156 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
195 const char *Suffix = getString(B.Suffix);
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
225 DestPath += getString(B.Suffix);
  /external/llvm/include/llvm/ADT/
Twine.h 153 /// RHS - The suffix in the concatenation, which may be uninitialized for
411 Twine concat(const Twine &Suffix) const;
469 inline Twine Twine::concat(const Twine &Suffix) const {
471 if (isNull() || Suffix.isNull())
476 return Suffix;
477 if (Suffix.isEmpty())
484 NewRHS.twine = &Suffix;
490 if (Suffix.isUnary()) {
491 NewRHS = Suffix.LHS;
492 NewRHSKind = Suffix.getLHSKind()
    [all...]
StringRef.h 213 /// endswith - Check if this string ends with the given \arg Suffix.
214 bool endswith(StringRef Suffix) const {
215 return Length >= Suffix.Length &&
216 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
377 /// suffix (starting with \arg Start) will be returned.
405 /// number of characters remaining in the string, the string suffix
SmallString.h 132 /// endswith - Check if this string ends with the given \arg Suffix.
133 bool endswith(StringRef Suffix) const {
134 return str().endswith(Suffix);
243 /// suffix (starting with \arg Start) will be returned.
256 /// number of characters remaining in the string, the string suffix
  /external/llvm/tools/bugpoint/
ListReducer.h 32 KeepSuffix, // The suffix alone satisfies the predicate
117 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end());
119 switch (doTest(Prefix, Suffix, Error)) {
123 TheList.swap(Suffix);
Miscompilation.cpp 52 std::vector<std::string> &Suffix,
62 std::vector<std::string> &Suffix,
64 // First, run the program with just the Suffix passes. If it is still broken
66 outs() << "Checking to see if '" << getPassesString(Suffix)
70 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false/*delete*/,
74 BD.setPassesToRun(Suffix);
86 if (Suffix.empty()) {
128 // Ok, so now we know that the prefix passes work, try running the suffix
140 // Don't check if there are no passes in the suffix.
141 if (Suffix.empty()
    [all...]
CrashDebugger.cpp 63 std::vector<std::string> &Suffix,
87 << getPassesString(Suffix) << ": ";
89 if (BD.runPasses(BD.getProgram(), Suffix)) {
90 delete OrigProgram; // The suffix crashes alone...
ToolRunner.cpp 449 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s");
450 sys::Path uniqueFile(Bitcode + Suffix);
    [all...]
  /external/giflib/
gif_lib_private.h 52 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */
dgif_lib.c 739 GifByteType *Stack, *Suffix;
745 Suffix = Private->Suffix;
791 * until the prefix is a pixel, while pushing the suffix
797 * prefix code is last code and the suffix char is
801 Suffix[Private->RunningCode - 2] =
820 Stack[StackPtr++] = Suffix[CrntPrefix];
840 * prefix code is last code and the suffix char is
842 Suffix[Private->RunningCode - 2] =
845 Suffix[Private->RunningCode - 2]
    [all...]
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 56 bool endswith(StringRef Suffix) const {
57 return Length >= Suffix.Length &&
58 memcmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 168 /// suffix of 'Suffix'. This function returns the new block.
177 const char *Suffix, Pass *P = 0);
193 const char *Suffix, const char *Suffix2,
  /external/clang/lib/Driver/
ToolChain.cpp 159 StringRef Suffix =
161 bool ThumbDefault = (Suffix == "v7" && getTriple().isOSDarwin());
168 Triple.setArchName(ArchName + Suffix.str());
Driver.cpp     [all...]
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 633 const char *Suffix;
635 Suffix = "";
637 Suffix = " (framework directory)";
640 Suffix = " (headermap)";
642 llvm::errs() << " " << Name << Suffix << "\n";
  /external/clang/include/clang/Driver/
Driver.h 380 /// as part of compilation; the file will have the given prefix and suffix.
383 std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 295 /// global value name as its base, with the specified suffix, and where the
298 StringRef Suffix,
  /external/llvm/lib/VMCore/
Verifier.cpp 295 int VT, unsigned ArgNo, std::string &Suffix);
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 481 // the other lists as a suffix.
483 const RegVec &Suffix = SubRegList.size() > SuperRegList.size() ?
485 CodeGenRegister::Set Omit(Suffix.begin(), Suffix.end());
491 // Any elements not in Suffix.
498 // Finally, Suffix itself.
499 OverlapList.insert(OverlapList.end(), Suffix.begin(), Suffix.end());
    [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 447 /// suffix of 'Suffix'.
456 const char *Suffix, Pass *P) {
458 BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), BB->getName()+Suffix,
  /external/ppp/pppd/plugins/radius/etc/
dictionary 116 ATTRIBUTE Suffix 1004 string
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]

Completed in 807 milliseconds