Searched refs:Suffix (Results 1 - 25 of 29) sorted by relevance

12

/external/llvm/lib/TableGen/
H A DTableGenBackend.cpp24 StringRef Suffix) {
26 assert((MAX_LINE_LEN - Prefix.str().size() - Suffix.size() > 0) &&
29 const size_t e = MAX_LINE_LEN - Suffix.size();
32 OS << Suffix << '\n'; local
41 StringRef Suffix(" *|");
43 size_t PSLen = Suffix.size() + Prefix.size();
47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix);
50 printLine(OS, Prefix, ' ', Suffix);
52 Suffix);
53 printLine(OS, Prefix, ' ', Suffix);
23 printLine(raw_ostream &OS, const Twine &Prefix, char Fill, StringRef Suffix) argument
[all...]
/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);
/external/llvm/include/llvm/ADT/
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();
H A DStringRef.h213 /// Check if this string ends with the given \p Suffix.
214 bool endswith(StringRef Suffix) const {
215 return Length >= Suffix.Length &&
216 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
H A DSmallString.h137 /// endswith - Check if this string ends with the given \p Suffix.
138 bool endswith(StringRef Suffix) const {
139 return str().endswith(Suffix);
/external/llvm/tools/bugpoint/
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 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 DToolRunner.cpp449 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s"); local
450 sys::Path uniqueFile(Bitcode + Suffix);
/external/giflib/
H A Dgif_lib_private.h52 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */ member in struct:GifFilePrivateType
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] =
/external/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp89 StringRef Suffix, raw_ostream &O) {
142 if (Modifier == "" && Suffix == "")
144 else if (Modifier == "" && Suffix != "")
145 O << ":" << Suffix << ':' << Name;
146 else if (Modifier != "" && Suffix == "")
149 O << ":" << Modifier << '_' << Suffix << ':' << Name;
87 printSymbolicAddress(const MachineOperand &MO, bool PrintImmediatePrefix, StringRef Suffix, raw_ostream &O) argument
H A DAArch64AsmPrinter.h64 /// suffix, provided in Suffix. E.g. ":got_lo12:" if a Suffix of "lo12" is
68 StringRef Suffix, raw_ostream &O);
/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/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h171 /// suffix of 'Suffix'. This function returns the new block.
180 const char *Suffix, Pass *P = 0);
196 const char *Suffix, const char *Suffix2,
/external/clang/lib/Driver/
H A DToolChain.cpp201 StringRef Suffix = local
203 bool ThumbDefault = Suffix.startswith("v6m") ||
204 (Suffix.startswith("v7") && getTriple().isOSDarwin());
211 Triple.setArchName(ArchName + Suffix.str());
H A DDriver.cpp1457 const char *Suffix = types::getTypeTempSuffix(JA.getType()); local
1458 assert(Suffix && "All types used for output should have a suffix.");
1465 Suffixed += Suffix;
1589 std::string Driver::GetTemporaryPath(StringRef Prefix, const char *Suffix)
1611 if (Suffix)
1612 P.appendSuffix(Suffix);
H A DToolChains.h489 static bool addLibStdCXXIncludePaths(Twine Base, Twine Suffix,
/external/libvpx/libvpx/examples/includes/geshi/geshi/
H A Dcil.php82 5 => array(//Suffix
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp649 const char *Suffix; local
651 Suffix = "";
653 Suffix = " (framework directory)";
656 Suffix = " (headermap)";
658 llvm::errs() << " " << Name << Suffix << "\n"; local
/external/clang/include/clang/Driver/
H A DDriver.h359 std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp773 llvm::SmallString<8> Suffix; local
782 Suffix = "))";
785 Suffix = "]]";
793 Suffix = ")";
796 Suffix = "";
819 OS << Suffix.str() + "\";\n";
/external/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h299 StringRef Suffix,
/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/ppp/pppd/plugins/radius/etc/
H A Ddictionary116 ATTRIBUTE Suffix 1004 string

Completed in 1276 milliseconds

12