/external/llvm/lib/TableGen/ |
TableGenBackend.cpp | 24 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'; 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); [all...] |
/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 | 153 /// RHS - The suffix in the concatenation, which may be uninitialized for 411 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() [all...] |
StringRef.h | 213 /// 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; 385 /// suffix (starting with \p Start) will be returned. 413 /// number of characters remaining in the string, the string suffix
|
SmallString.h | 137 /// endswith - Check if this string ends with the given \p Suffix. 138 bool endswith(StringRef Suffix) const { 139 return str().endswith(Suffix); 248 /// suffix (starting with \p Start) will be returned. 261 /// 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...] |
/external/chromium_org/net/http/ |
http_byte_range.h | 26 static HttpByteRange Suffix(int64 suffix_length); 39 // Returns true if this is a suffix byte range.
|
http_byte_range.cc | 44 HttpByteRange HttpByteRange::Suffix(int64 suffix_length) {
|
http_byte_range_unittest.cc | 88 {net::HttpByteRange::Suffix(100), "bytes=-100"}, };
|
/external/giflib/ |
gif_lib_private.h | 51 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */
|
dgif_lib.c | 784 GifByteType *Stack, *Suffix; 790 Suffix = Private->Suffix; 833 * until the prefix is a pixel, while pushing the suffix 839 * prefix code is last code and the suffix char is 843 Suffix[Private->RunningCode - 2] = 860 Stack[StackPtr++] = Suffix[CrntPrefix]; 880 * prefix code is last code and the suffix char is 882 Suffix[Private->RunningCode - 2] = 885 Suffix[Private->RunningCode - 2] [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64AsmPrinter.h | 62 /// suffix, provided in Suffix. E.g. ":got_lo12:" if a Suffix of "lo12" is 66 StringRef Suffix, raw_ostream &O);
|
AArch64AsmPrinter.cpp | 79 StringRef Suffix, raw_ostream &O) { 129 // Only need the joining "_" if both the prefix and the suffix are 132 if (Modifier == "" && Suffix == "") 134 else if (Modifier == "" && Suffix != "") 135 O << ":" << Suffix << ':' << Name; 136 else if (Modifier != "" && Suffix == "") 139 O << ":" << Modifier << '_' << Suffix << ':' << Name;
|
/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 | 149 /// suffix of 'Suffix'. This function returns the new block. 158 const char *Suffix, Pass *P = 0); 174 const char *Suffix, const char *Suffix2,
|
/external/lzma/C/ |
Ppmd7.h | 37 CPpmd7_Context_Ref Suffix;
90 p->NS2BSIndx[Ppmd7_GetContext(p, p->MinContext->Suffix)->NumStats - 1] + \
|
Ppmd7Dec.c | 146 if (!p->MinContext->Suffix)
148 p->MinContext = Ppmd7_GetContext(p, p->MinContext->Suffix);
|
Ppmd7Enc.c | 147 if (!p->MinContext->Suffix)
149 p->MinContext = Ppmd7_GetContext(p, p->MinContext->Suffix);
|
/external/clang/lib/Driver/ |
ToolChain.cpp | 254 StringRef Suffix = 256 bool ThumbDefault = Suffix.startswith("v6m") || 257 (Suffix.startswith("v7") && getTriple().isOSDarwin()); 264 Triple.setArchName(ArchName + Suffix.str());
|
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/ |
constants.js | 39 * Suffix to append to baseURL if requesting high resoultion wallpaper.
|
/external/clang/lib/Frontend/ |
InitHeaderSearch.cpp | 655 const char *Suffix; 657 Suffix = ""; 659 Suffix = " (framework directory)"; 662 Suffix = " (headermap)"; 664 llvm::errs() << " " << Name << Suffix << "\n";
|
/external/llvm/lib/Support/ |
Path.cpp | 674 createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD, 677 const char *Middle = Suffix.empty() ? "-%%%%%%" : "-%%%%%%."; 678 return createTemporaryFile(Prefix + Middle + Suffix, ResultFD, ResultPath, 683 error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 686 return createTemporaryFile(Prefix, Suffix, ResultFD, ResultPath, FS_File); 689 error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, 692 return createTemporaryFile(Prefix, Suffix, Dummy, ResultPath, FS_Name);
|
/external/clang/tools/driver/ |
driver.cpp | 208 // "x86_64-linux-clang" as interpreted as suffix "clang" with 212 const char *Suffix; 237 if (ProgNameRef.endswith(suffixes[i].Suffix)) { 250 ProgNameRef.size() - strlen(suffixes[i].Suffix));
|
/external/clang/include/clang/Lex/ |
LiteralSupport.h | 61 bool isMicrosoftInteger; // Microsoft suffix extension i8, i16, i32, or i64. 82 static bool isValidUDSuffix(const LangOptions &LangOpts, StringRef Suffix); 160 assert(!UDSuffixBuf.empty() && "no ud-suffix"); 224 /// Get the index of a token containing a ud-suffix. 226 assert(!UDSuffixBuf.empty() && "no ud-suffix"); 229 /// Get the spelling offset of the first byte of the ud-suffix. 231 assert(!UDSuffixBuf.empty() && "no ud-suffix");
|