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

123

/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/llvm/utils/llvm-lit/
H A DMakefile16 Suffix := .py macro
19 all:: $(ToolDir)/llvm-lit$(Suffix)
21 $(ToolDir)/llvm-lit$(Suffix): llvm-lit.in Makefile $(ToolDir)/.dir
/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);
235 StringRef Suffix = getString(B.Suffix); local
238 DestPath.append(Suffix
[all...]
/external/llvm/include/llvm/ADT/
H A DTwine.h415 Twine concat(const Twine &Suffix) const;
473 inline Twine Twine::concat(const Twine &Suffix) const {
475 if (isNull() || Suffix.isNull())
480 return Suffix;
481 if (Suffix.isEmpty())
488 NewRHS.twine = &Suffix;
494 if (Suffix.isUnary()) {
495 NewRHS = Suffix.LHS;
496 NewRHSKind = Suffix.getLHSKind();
H A DStringRef.h222 /// Check if this string ends with the given \p Suffix.
223 bool endswith(StringRef Suffix) const {
224 return Length >= Suffix.Length &&
225 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
228 /// Check if this string ends with the given \p Suffix, ignoring case.
229 bool endswith_lower(StringRef Suffix) const;
H A DSmallString.h134 /// endswith - Check if this string ends with the given \p Suffix.
135 bool endswith(StringRef Suffix) const {
136 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)
150 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResul
61 doTest(std::vector<std::string> &Prefix, std::vector<std::string> &Suffix, std::string &Error) argument
[all...]
/external/chromium_org/net/http/
H A Dhttp_byte_range.h26 static HttpByteRange Suffix(int64 suffix_length);
H A Dhttp_byte_range.cc44 HttpByteRange HttpByteRange::Suffix(int64 suffix_length) { function in class:net::HttpByteRange
H A Dhttp_byte_range_unittest.cc88 {net::HttpByteRange::Suffix(100), "bytes=-100"}, };
/external/chromium_org/v8/src/compiler/
H A Dmachine-operator.h170 #define PSEUDO_OP(Prefix, Suffix) \
171 const Operator* Prefix##Suffix() { \
172 return Is32() ? Prefix##32##Suffix() : Prefix##64##Suffix(); \
/external/giflib/
H A Dgif_lib_private.h51 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */ member in struct:GifFilePrivateType
/external/clang/lib/Driver/
H A DToolChain.cpp153 StringRef Suffix = A->getValue(); local
157 if (Suffix.empty() || Suffix == "ld")
161 LinkerName.append(Suffix);
246 StringRef Suffix = Triple.isOSBinFormatMachO() local
249 bool ThumbDefault = Suffix.startswith("v6m") || Suffix.startswith("v7m") ||
250 Suffix.startswith("v7em") ||
251 (Suffix.startswith("v7") && getTriple().isOSBinFormatMachO());
270 Triple.setArchName(ArchName + Suffix
[all...]
/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/lib/Target/PowerPC/
H A DPPCMCInstLower.cpp44 StringRef Suffix; local
46 Suffix = "$stub";
48 Suffix = "$non_lazy_ptr";
50 if (!Suffix.empty())
65 Name += Suffix;
/external/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h150 /// suffix of 'Suffix'. This function returns the new block.
159 const char *Suffix, Pass *P = nullptr);
175 const char *Suffix, const char *Suffix2,
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMTargetStreamer.cpp69 void ARMTargetStreamer::emitInst(uint32_t Inst, char Suffix) {} argument
/external/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp104 const GlobalValue *GV, StringRef Suffix, Mangler &Mang,
106 assert(!Suffix.empty());
111 NameStr.append(Suffix.begin(), Suffix.end());
103 getSymbolWithGlobalValueBase( const GlobalValue *GV, StringRef Suffix, Mangler &Mang, const TargetMachine &TM) const argument
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsnamed.c507 cmsNAMEDCOLORLIST* CMSEXPORT cmsAllocNamedColorList(cmsContext ContextID, cmsUInt32Number n, cmsUInt32Number ColorantCount, const char* Prefix, const char* Suffix) argument
521 strncpy(v ->Suffix, Suffix, sizeof(v ->Suffix)-1);
522 v->Prefix[32] = v->Suffix[32] = 0;
543 NewNC= cmsAllocNamedColorList(v ->ContextID, v -> nColors, v ->ColorantCount, v ->Prefix, v ->Suffix);
551 memmove(NewNC ->Suffix, v ->Suffix, sizeof(v ->Suffix));
603 char* Suffix,
600 cmsNamedColorInfo(const cmsNAMEDCOLORLIST* NamedColorList, cmsUInt32Number nColor, char* Name, char* Prefix, char* Suffix, cmsUInt16Number* PCS, cmsUInt16Number* Colorant) argument
[all...]
/external/lzma/C/
H A DPpmd7.h37 CPpmd7_Context_Ref Suffix; member in struct:CPpmd7_Context_
90 p->NS2BSIndx[Ppmd7_GetContext(p, p->MinContext->Suffix)->NumStats - 1] + \
H A DPpmd7Dec.c146 if (!p->MinContext->Suffix)
148 p->MinContext = Ppmd7_GetContext(p, p->MinContext->Suffix);
H A DPpmd7Enc.c147 if (!p->MinContext->Suffix)
149 p->MinContext = Ppmd7_GetContext(p, p->MinContext->Suffix);
/external/clang/unittests/Driver/
H A DMultilibTest.cpp334 std::string Suffix; local
336 Suffix += "/el";
338 Suffix += "/sf";
340 ASSERT_EQ(Selection.gccSuffix(), Suffix) << "Selection picked " << Selection
/external/llvm/lib/Support/
H A DStringRef.cpp66 /// Check if this string ends with the given \p Suffix, ignoring case.
67 bool StringRef::endswith_lower(StringRef Suffix) const {
68 return Length >= Suffix.Length &&
69 ascii_strncasecmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;

Completed in 493 milliseconds

123