Searched refs:Suffix (Results 1 - 23 of 23) sorted by last modified time

/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary116 ATTRIBUTE Suffix 1004 string
/external/llvm/include/llvm/ADT/
H A DSmallString.h137 /// endswith - Check if this string ends with the given \arg Suffix.
138 bool endswith(StringRef Suffix) const {
139 return str().endswith(Suffix);
H A DStringRef.h214 /// endswith - Check if this string ends with the given \arg Suffix.
215 bool endswith(StringRef Suffix) const {
216 return Length >= Suffix.Length &&
217 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
H A DTwine.h411 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();
/external/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h299 StringRef Suffix,
/external/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h170 /// suffix of 'Suffix'. This function returns the new block.
179 const char *Suffix, Pass *P = 0);
195 const char *Suffix, const char *Suffix2,
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1997 StringRef Suffix,
2001 NameStr.append(Suffix.begin(), Suffix.end());
1996 GetSymbolWithGlobalValueBase(const GlobalValue *GV, StringRef Suffix, bool ForcePrivate) const argument
/external/llvm/lib/TableGen/
H A DTableGenBackend.cpp20 StringRef Suffix) {
23 for (unsigned i = OS.tell() - Pos, e = 80 - Suffix.size(); i != e; ++i)
25 OS << Suffix << '\n'; local
19 printLine(raw_ostream &OS, const Twine &Prefix, char Fill, StringRef Suffix) argument
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp447 /// suffix of 'Suffix'.
456 const char *Suffix, Pass *P) {
458 BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), BB->getName()+Suffix,
454 SplitBlockPredecessors(BasicBlock *BB, ArrayRef<BasicBlock*> Preds, const char *Suffix, Pass *P) argument
/external/llvm/lib/VMCore/
H A DVerifier.cpp296 int VT, unsigned ArgNo, std::string &Suffix);
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp63 std::vector<std::string> &Suffix,
87 << getPassesString(Suffix) << ": ";
89 if (BD.runPasses(BD.getProgram(), Suffix)) {
62 doTest(std::vector<std::string> &Prefix, std::vector<std::string> &Suffix, std::string &Error) argument
H A DListReducer.h117 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end());
119 switch (doTest(Prefix, Suffix, Error)) {
123 TheList.swap(Suffix);
H A DMiscompilation.cpp52 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()) {
141 if (Suffix.empty())
144 outs() << "Checking to see if '" << getPassesString(Suffix)
149 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResul
61 doTest(std::vector<std::string> &Prefix, std::vector<std::string> &Suffix, std::string &Error) argument
185 doTest(std::vector<Function*> &Prefix, std::vector<Function*> &Suffix, std::string &Error) argument
435 doTest(std::vector<BasicBlock*> &Prefix, std::vector<BasicBlock*> &Suffix, std::string &Error) argument
[all...]
H A DToolRunner.cpp449 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s"); local
450 sys::Path uniqueFile(Bitcode + Suffix);
/external/libvpx/examples/includes/geshi/geshi/
H A Dcil.php82 5 => array(//Suffix
/external/giflib/
H A Ddgif_lib.c739 GifByteType *Stack, *Suffix; local
745 Suffix = Private->Suffix;
801 Suffix[Private->RunningCode - 2] =
820 Stack[StackPtr++] = Suffix[CrntPrefix];
842 Suffix[Private->RunningCode - 2] =
845 Suffix[Private->RunningCode - 2] =
H A Dgif_lib_private.h52 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */ member in struct:GifFilePrivateType
/external/clang/include/clang/Driver/
H A DDriver.h389 std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
/external/clang/test/Index/
H A Drecursive-cxx-member-calls.cpp56 bool endswith(StringRef Suffix) const {
57 return Length >= Suffix.Length &&
58 memcmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
594 // CHECK-tokens: Identifier: "Suffix" [56:27 - 56:33] ParmDecl=Suffix:56:27 (Definition)
601 // CHECK-tokens: Identifier: "Suffix" [57:22 - 57:28] DeclRefExpr=Suffix:56:27
611 // CHECK-tokens: Identifier: "Suffix" [5
[all...]
/external/clang/lib/Driver/
H A DDriver.cpp1536 const char *Suffix = types::getTypeTempSuffix(JA.getType()); local
1537 assert(Suffix && "All types used for output should have a suffix.");
1544 Suffixed += Suffix;
1668 std::string Driver::GetTemporaryPath(StringRef Prefix, const char *Suffix)
1690 if (Suffix)
1691 P.appendSuffix(Suffix);
H A DToolChain.cpp143 StringRef Suffix = local
145 bool ThumbDefault = (Suffix == "v7" && getTriple().isOSDarwin());
152 Triple.setArchName(ArchName + Suffix.str());
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp644 const char *Suffix; local
646 Suffix = "";
648 Suffix = " (framework directory)";
651 Suffix = " (headermap)";
653 llvm::errs() << " " << Name << Suffix << "\n"; local
/external/clang/lib/Lex/
H A DHeaderMap.cpp41 uint32_t Suffix; // Offset (into strings) of value suffix. member in struct:clang::HMapBucket
149 Result.Suffix = 0;
156 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
195 const char *Suffix = getString(B.Suffix); local
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
225 DestPath += getString(B.Suffix);

Completed in 382 milliseconds