HomeSort by relevance Sort by last modified time
    Searched refs:Suffix (Results 1 - 23 of 23) 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 152 /// RHS - The suffix in the concatenation, which may be uninitialized for
410 Twine concat(const Twine &Suffix) const;
468 inline Twine Twine::concat(const Twine &Suffix) const {
470 if (isNull() || Suffix.isNull())
475 return Suffix;
476 if (Suffix.isEmpty())
483 NewRHS.twine = &Suffix;
489 if (Suffix.isUnary()) {
490 NewRHS = Suffix.LHS;
491 NewRHSKind = Suffix.getLHSKind()
    [all...]
StringRef.h 202 /// endswith - Check if this string ends with the given \arg Suffix.
203 bool endswith(StringRef Suffix) const {
204 return Length >= Suffix.Length &&
205 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
341 /// suffix (starting with \arg Start) will be returned.
355 /// 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 447 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s");
448 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 unsigned NumPreds, const char *Suffix,
194 const char *Suffix, const char *Suffix2,
  /external/clang/lib/Driver/
ToolChain.cpp 186 StringRef Suffix =
188 bool ThumbDefault = (Suffix == "v7" && getTriple().isOSDarwin());
195 Triple.setArchName(ArchName + Suffix.str());
Driver.cpp     [all...]
ToolChains.cpp     [all...]
  /external/clang/include/clang/Driver/
Driver.h 377 /// as part of compilation; the file will have the given prefix and suffix.
380 std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 287 /// global value name as its base, with the specified suffix, and where the
290 StringRef Suffix,
  /external/llvm/lib/VMCore/
Verifier.cpp 302 int VT, unsigned ArgNo, std::string &Suffix);
    [all...]
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp     [all...]
  /external/llvm/utils/
NewNightlyTest.pl 302 my $Suffix = shift;
304 my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 448 /// suffix of 'Suffix'.
457 unsigned NumPreds, const char *Suffix,
460 BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), BB->getName()+Suffix,
  /external/ppp/pppd/plugins/radius/etc/
dictionary 116 ATTRIBUTE Suffix 1004 string
  /external/llvm/utils/TableGen/
ARMDecoderEmitter.cpp 149 /// suffix. ("VST4d8", "VST4d8_UPD", "_UPD") as input returns true.
152 const StringRef Suffix) {
154 if (RHS.startswith(LHS) && RHS.endswith(Suffix))
155 return RHS.size() == LHS.size() + Suffix.size();
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]

Completed in 725 milliseconds