/external/llvm/lib/TableGen/ |
D | TableGenBackend.cpp | 23 StringRef Suffix) { in printLine() argument 25 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) && in printLine() 28 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size(); in printLine() 31 OS << Suffix << '\n'; in printLine() 37 StringRef Suffix(" *|"); in emitSourceFileHeader() local 38 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader() 39 size_t PSLen = Prefix.size() + Suffix.size(); in emitSourceFileHeader() 44 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix); in emitSourceFileHeader() 47 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader() 49 Suffix); in emitSourceFileHeader() [all …]
|
/external/clang/lib/Lex/ |
D | HeaderMap.cpp | 41 uint32_t Suffix; // Offset (into strings) of value suffix. member 145 Result.Suffix = 0; in getBucket() 152 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix); in getBucket() 191 const char *Suffix = getString(B.Suffix); in dump() local 192 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix); in dump() 231 StringRef Suffix = getString(B.Suffix); in lookupFilename() local 234 DestPath.append(Suffix.begin(), Suffix.end()); in lookupFilename()
|
/external/google-breakpad/src/third_party/curl/ |
D | curlrules.h | 221 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val ## Suffix argument 223 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val/**/Suffix argument 225 #define __CURL_OFF_T_C_HELPER1(Val,Suffix) __CURL_OFF_T_C_HELPER2(Val,Suffix) argument
|
/external/curl/include/curl/ |
D | curlrules.h | 214 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix argument 216 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix argument 218 # define __CURL_OFF_T_C_HLPR1(Val,Suffix) __CURL_OFF_T_C_HLPR2(Val,Suffix) argument
|
/external/llvm/include/llvm/ADT/ |
D | Twine.h | 424 Twine concat(const Twine &Suffix) const; 487 inline Twine Twine::concat(const Twine &Suffix) const { in concat() argument 489 if (isNull() || Suffix.isNull()) in concat() 494 return Suffix; in concat() 495 if (Suffix.isEmpty()) in concat() 502 NewRHS.twine = &Suffix; in concat() 508 if (Suffix.isUnary()) { in concat() 509 NewRHS = Suffix.LHS; in concat() 510 NewRHSKind = Suffix.getLHSKind(); in concat()
|
D | StringRef.h | 235 bool endswith(StringRef Suffix) const { in endswith() argument 236 return Length >= Suffix.Length && in endswith() 237 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith() 241 bool endswith_lower(StringRef Suffix) const;
|
/external/clang/tools/scan-build/ |
D | Makefile | 16 Suffix := .bat macro 22 InstallTargets := $(ToolDir)/scan-build$(Suffix) \ 23 $(LibexecDir)/c++-analyzer$(Suffix) \ 24 $(LibexecDir)/ccc-analyzer$(Suffix) \
|
/external/llvm/utils/llvm-lit/ |
D | Makefile | 16 Suffix := .py macro 19 all:: $(ToolDir)/llvm-lit$(Suffix) 21 $(ToolDir)/llvm-lit$(Suffix): llvm-lit.in Makefile $(ToolDir)/.dir
|
/external/clang/lib/Driver/ |
D | ToolChain.cpp | 96 const char *Suffix; member 120 if (ProgName.endswith(DriverSuffixes[i].Suffix)) in FindDriverSuffix() 172 ProgName.rfind('-', ProgName.size() - strlen(DS->Suffix)); in getTargetAndModeFromProgramName() 295 const char *Suffix = Shared ? (Triple.isOSWindows() ? ".dll" : ".so") in getCompilerRT() local 302 Arch + Env + Suffix); in getCompilerRT() 344 StringRef Suffix = A->getValue(); in GetLinkerPath() local 348 if (Suffix.empty() || Suffix == "ld") in GetLinkerPath() 352 LinkerName.append(Suffix); in GetLinkerPath() 468 StringRef Suffix = in ComputeLLVMTriple() local 470 bool IsMProfile = ARM::parseArchProfile(Suffix) == ARM::PK_M; in ComputeLLVMTriple() [all …]
|
/external/selinux/policycoreutils/mcstrans/share/examples/pipes/setrans.d/ |
D | pipes.conf | 3 Suffix=Pipes Only 4 Suffix=Pipes
|
/external/clang/test/Index/ |
D | recursive-cxx-member-calls.cpp | 56 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/llvm/lib/Target/PowerPC/ |
D | PPCMCInstLower.cpp | 46 StringRef Suffix; in GetSymbolFromOperand() local 49 Suffix = "$stub"; in GetSymbolFromOperand() 51 Suffix = "$non_lazy_ptr"; in GetSymbolFromOperand() 53 if (!Suffix.empty()) in GetSymbolFromOperand() 68 Name += Suffix; in GetSymbolFromOperand()
|
/external/llvm/tools/bugpoint/ |
D | Miscompilation.cpp | 52 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() 150 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false/*delete*/, in doTest() 154 BD.setPassesToRun(Suffix); in doTest() [all …]
|
D | ListReducer.h | 122 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end()); in reduceList() 124 switch (doTest(Prefix, Suffix, Error)) { in reduceList() 128 TheList.swap(Suffix); in reduceList()
|
/external/llvm/lib/Target/X86/ |
D | X86MCInstLower.cpp | 135 StringRef Suffix; in GetSymbolFromOperand() local 143 Suffix = "$stub"; in GetSymbolFromOperand() 148 Suffix = "$non_lazy_ptr"; in GetSymbolFromOperand() 152 if (!Suffix.empty()) in GetSymbolFromOperand() 163 assert(Suffix.empty()); in GetSymbolFromOperand() 168 Name += Suffix; in GetSymbolFromOperand() 1315 #define MOV_CASE(Prefix, Suffix) \ in EmitInstruction() argument 1316 case X86::Prefix##MOVAPD##Suffix##rm: \ in EmitInstruction() 1317 case X86::Prefix##MOVAPS##Suffix##rm: \ in EmitInstruction() 1318 case X86::Prefix##MOVUPD##Suffix##rm: \ in EmitInstruction() [all …]
|
/external/pdfium/third_party/lcms2-2.6/src/ |
D | cmsnamed.c | 507 …ontextID, cmsUInt32Number n, cmsUInt32Number ColorantCount, const char* Prefix, const char* Suffix) in cmsAllocNamedColorList() argument 521 strncpy(v ->Suffix, Suffix, sizeof(v ->Suffix)-1); in cmsAllocNamedColorList() 522 v->Prefix[32] = v->Suffix[32] = 0; in cmsAllocNamedColorList() 543 …NC= cmsAllocNamedColorList(v ->ContextID, v -> nColors, v ->ColorantCount, v ->Prefix, v ->Suffix); in cmsDupNamedColorList() 551 memmove(NewNC ->Suffix, v ->Suffix, sizeof(v ->Suffix)); in cmsDupNamedColorList() 603 char* Suffix, in cmsNamedColorInfo() argument 613 if (Suffix) strcpy(Suffix, NamedColorList->Suffix); in cmsNamedColorInfo()
|
/external/llvm/lib/Target/ |
D | TargetLoweringObjectFile.cpp | 104 const GlobalValue *GV, StringRef Suffix, Mangler &Mang, in getSymbolWithGlobalValueBase() argument 106 assert(!Suffix.empty()); in getSymbolWithGlobalValueBase() 111 NameStr.append(Suffix.begin(), Suffix.end()); in getSymbolWithGlobalValueBase()
|
/external/llvm/lib/Support/ |
D | StringRef.cpp | 67 bool StringRef::endswith_lower(StringRef Suffix) const { in endswith_lower() 68 return Length >= Suffix.Length && in endswith_lower() 69 ascii_strncasecmp(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith_lower()
|
/external/clang/unittests/Driver/ |
D | MultilibTest.cpp | 330 std::string Suffix; in TEST() local 332 Suffix += "/el"; in TEST() 334 Suffix += "/sf"; in TEST() 336 ASSERT_EQ(Selection.gccSuffix(), Suffix) << "Selection picked " << Selection in TEST()
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMELFStreamer.cpp | 87 void emitInst(uint32_t Inst, char Suffix = '\0') override; 226 void ARMTargetAsmStreamer::emitInst(uint32_t Inst, char Suffix) { in emitInst() argument 228 if (Suffix) in emitInst() 229 OS << "." << Suffix; in emitInst() 382 void emitInst(uint32_t Inst, char Suffix = '\0') override; 461 void emitInst(uint32_t Inst, char Suffix) { in emitInst() argument 466 switch (Suffix) { in emitInst() 480 Size = (Suffix == 'n' ? 2 : 4); in emitInst() 1039 void ARMTargetELFStreamer::emitInst(uint32_t Inst, char Suffix) { in emitInst() argument 1040 getStreamer().emitInst(Inst, Suffix); in emitInst()
|
/external/lzma/C/ |
D | Ppmd7.h | 37 CPpmd7_Context_Ref Suffix; member 90 p->NS2BSIndx[Ppmd7_GetContext(p, p->MinContext->Suffix)->NumStats - 1] + \
|
/external/giflib/ |
D | dgif_lib.c | 806 GifByteType *Stack, *Suffix; in DGifDecompressLine() local 812 Suffix = Private->Suffix; in DGifDecompressLine() 866 Suffix[Private->RunningCode - 2] = in DGifDecompressLine() 871 Suffix[Private->RunningCode - 2] = in DGifDecompressLine() 885 Stack[StackPtr++] = Suffix[CrntPrefix]; in DGifDecompressLine() 907 Suffix[Private->RunningCode - 2] = in DGifDecompressLine() 910 Suffix[Private->RunningCode - 2] = in DGifDecompressLine()
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | BasicBlockUtils.h | 209 const char *Suffix, 228 const char *Suffix, const char *Suffix2,
|
/external/clang/lib/Frontend/ |
D | InitHeaderSearch.cpp | 631 const char *Suffix; in Realize() local 633 Suffix = ""; in Realize() 635 Suffix = " (framework directory)"; in Realize() 638 Suffix = " (headermap)"; in Realize() 640 llvm::errs() << " " << Name << Suffix << "\n"; in Realize()
|
/external/clang/test/CodeGenCXX/ |
D | stack-reuse-miscompile.cpp | 20 T concat(const T &Suffix) const;
|