Home
last modified time | relevance | path

Searched refs:Suffix (Results 1 – 25 of 41) sorted by relevance

12

/external/llvm/lib/TableGen/
DTableGenBackend.cpp24 StringRef Suffix) { in printLine() argument
26 assert((MAX_LINE_LEN - Prefix.str().size() - Suffix.size() > 0) && in printLine()
29 const size_t e = MAX_LINE_LEN - Suffix.size(); in printLine()
32 OS << Suffix << '\n'; in printLine()
41 StringRef Suffix(" *|"); in emitSourceFileHeader() local
43 size_t PSLen = Suffix.size() + Prefix.size(); in emitSourceFileHeader()
47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix); in emitSourceFileHeader()
50 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader()
52 Suffix); in emitSourceFileHeader()
53 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader()
/external/clang/lib/Lex/
DHeaderMap.cpp41 uint32_t Suffix; // Offset (into strings) of value suffix. member
149 Result.Suffix = 0; in getBucket()
156 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix); in getBucket()
195 const char *Suffix = getString(B.Suffix); in dump() local
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix); in dump()
225 DestPath += getString(B.Suffix); in LookupFile()
/external/llvm/include/llvm/ADT/
DTwine.h411 Twine concat(const Twine &Suffix) const;
469 inline Twine Twine::concat(const Twine &Suffix) const { in concat() argument
471 if (isNull() || Suffix.isNull()) in concat()
476 return Suffix; in concat()
477 if (Suffix.isEmpty()) in concat()
484 NewRHS.twine = &Suffix; in concat()
490 if (Suffix.isUnary()) { in concat()
491 NewRHS = Suffix.LHS; in concat()
492 NewRHSKind = Suffix.getLHSKind(); in concat()
DStringRef.h214 bool endswith(StringRef Suffix) const { in endswith() argument
215 return Length >= Suffix.Length && in endswith()
216 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
DSmallString.h138 bool endswith(StringRef Suffix) const { in endswith() argument
139 return str().endswith(Suffix); in endswith()
/external/smack/src/org/xbill/DNS/windows/
DDNSServer.properties2 primary_dns_suffix=Primary Dns Suffix
3 dns_suffix=DNS Suffix
DDNSServer_de.properties2 primary_dns_suffix=Prim\u00E4res DNS-Suffix
/external/llvm/tools/bugpoint/
DMiscompilation.cpp52 std::vector<std::string> &Suffix,
62 std::vector<std::string> &Suffix, in doTest() argument
66 outs() << "Checking to see if '" << getPassesString(Suffix) in doTest()
70 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false/*delete*/, in doTest()
74 BD.setPassesToRun(Suffix); in doTest()
86 if (Suffix.empty()) { in doTest()
141 if (Suffix.empty()) in doTest()
144 outs() << "Checking to see if '" << getPassesString(Suffix) in doTest()
149 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false/*delete*/, in doTest()
153 BD.setPassesToRun(Suffix); in doTest()
[all …]
DListReducer.h117 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end()); in reduceList()
119 switch (doTest(Prefix, Suffix, Error)) { in reduceList()
123 TheList.swap(Suffix); in reduceList()
DCrashDebugger.cpp63 std::vector<std::string> &Suffix, in doTest() argument
87 << getPassesString(Suffix) << ": "; in doTest()
89 if (BD.runPasses(BD.getProgram(), Suffix)) { in doTest()
/external/llvm/lib/Target/AArch64/
DAArch64AsmPrinter.cpp89 StringRef Suffix, raw_ostream &O) { in printSymbolicAddress() argument
142 if (Modifier == "" && Suffix == "") in printSymbolicAddress()
144 else if (Modifier == "" && Suffix != "") in printSymbolicAddress()
145 O << ":" << Suffix << ':' << Name; in printSymbolicAddress()
146 else if (Modifier != "" && Suffix == "") in printSymbolicAddress()
149 O << ":" << Modifier << '_' << Suffix << ':' << Name; in printSymbolicAddress()
DAArch64AsmPrinter.h68 StringRef Suffix, raw_ostream &O);
/external/clang/test/Index/
Drecursive-cxx-member-calls.cpp56 bool endswith(StringRef Suffix) const { in endswith()
57 return Length >= Suffix.Length && in endswith()
58 memcmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
/external/clang/lib/Driver/
DToolChain.cpp201 StringRef Suffix = in ComputeLLVMTriple() local
203 bool ThumbDefault = Suffix.startswith("v6m") || in ComputeLLVMTriple()
204 (Suffix.startswith("v7") && getTriple().isOSDarwin()); in ComputeLLVMTriple()
211 Triple.setArchName(ArchName + Suffix.str()); in ComputeLLVMTriple()
DDriver.cpp1457 const char *Suffix = types::getTypeTempSuffix(JA.getType()); in GetNamedOutputPath() local
1458 assert(Suffix && "All types used for output should have a suffix."); in GetNamedOutputPath()
1465 Suffixed += Suffix; in GetNamedOutputPath()
1589 std::string Driver::GetTemporaryPath(StringRef Prefix, const char *Suffix) in GetTemporaryPath()
1611 if (Suffix) in GetTemporaryPath()
1612 P.appendSuffix(Suffix); in GetTemporaryPath()
/external/llvm/include/llvm/Transforms/Utils/
DBasicBlockUtils.h180 const char *Suffix, Pass *P = 0);
196 const char *Suffix, const char *Suffix2,
/external/giflib/
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] =
Dgif_lib_private.h52 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */ member
/external/clang/lib/Frontend/
DInitHeaderSearch.cpp649 const char *Suffix; in Realize() local
651 Suffix = ""; in Realize()
653 Suffix = " (framework directory)"; in Realize()
656 Suffix = " (headermap)"; in Realize()
658 llvm::errs() << " " << Name << Suffix << "\n"; in Realize()
/external/clang/tools/driver/
Ddriver.cpp281 const char *Suffix; in ParseProgName() member
305 if (ProgNameRef.endswith(suffixes[i].Suffix)) { in ParseProgName()
317 ProgNameRef.size() - strlen(suffixes[i].Suffix)); in ParseProgName()
/external/clang/utils/TableGen/
DClangAttrEmitter.cpp773 llvm::SmallString<8> Suffix; in writePrettyPrintFunction() local
782 Suffix = "))"; in writePrettyPrintFunction()
785 Suffix = "]]"; in writePrettyPrintFunction()
793 Suffix = ")"; in writePrettyPrintFunction()
796 Suffix = ""; in writePrettyPrintFunction()
819 OS << Suffix.str() + "\";\n"; in writePrettyPrintFunction()
/external/clang/include/clang/Driver/
DDriver.h359 std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
/external/llvm/lib/Target/X86/
DX86InstrInfo.td1844 class CondCodeAlias<string Prefix,string Suffix, string OldCond, string NewCond>
1845 : MnemonicAlias<!strconcat(Prefix, OldCond, Suffix),
1846 !strconcat(Prefix, NewCond, Suffix)>;
1851 multiclass IntegerCondCodeMnemonicAlias<string Prefix, string Suffix> {
1852 def C : CondCodeAlias<Prefix, Suffix, "c", "b">; // setc -> setb
1853 def Z : CondCodeAlias<Prefix, Suffix, "z" , "e">; // setz -> sete
1854 def NA : CondCodeAlias<Prefix, Suffix, "na", "be">; // setna -> setbe
1855 def NB : CondCodeAlias<Prefix, Suffix, "nb", "ae">; // setnb -> setae
1856 def NC : CondCodeAlias<Prefix, Suffix, "nc", "ae">; // setnc -> setae
1857 def NG : CondCodeAlias<Prefix, Suffix, "ng", "le">; // setng -> setle
[all …]
/external/llvm/include/llvm/CodeGen/
DAsmPrinter.h299 StringRef Suffix,
/external/antlr/antlr-3.4/runtime/C/doxygen/
Dgenerate.dox26 /// <th> Suffix </th>

12