HomeSort by relevance Sort by last modified time
    Searched refs:Suffix (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/selinux/policycoreutils/mcstrans/share/examples/pipes/setrans.d/
pipes.conf 3 Suffix=Pipes Only
4 Suffix=Pipes
  /external/llvm/lib/TableGen/
TableGenBackend.cpp 23 StringRef Suffix) {
25 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) &&
28 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size();
31 OS << Suffix << '\n';
37 StringRef Suffix(" *|");
38 printLine(OS, Prefix, ' ', Suffix);
39 size_t PSLen = Prefix.size() + Suffix.size();
44 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix);
47 printLine(OS, Prefix, ' ', Suffix);
49 Suffix);
    [all...]
  /external/llvm/utils/llvm-lit/
Makefile 14 # llvm-lit needs suffix.py for multiprocess to find a main module.
16 Suffix := .py
19 all:: $(ToolDir)/llvm-lit$(Suffix)
21 $(ToolDir)/llvm-lit$(Suffix): llvm-lit.in Makefile $(ToolDir)/.dir
  /external/google-breakpad/src/third_party/curl/
curlrules.h 221 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val ## Suffix
223 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val/**/Suffix
225 #define __CURL_OFF_T_C_HELPER1(Val,Suffix) __CURL_OFF_T_C_HELPER2(Val,Suffix)
  /external/curl/include/curl/
curlrules.h 214 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix
216 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix
218 # define __CURL_OFF_T_C_HLPR1(Val,Suffix) __CURL_OFF_T_C_HLPR2(Val,Suffix)
  /external/clang/lib/Lex/
HeaderMap.cpp 41 uint32_t Suffix; // Offset (into strings) of value suffix.
145 Result.Suffix = 0;
152 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
191 const char *Suffix = getString(B.Suffix);
192 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
231 StringRef Suffix = getString(B.Suffix);
    [all...]
  /external/clang/test/CodeGenCXX/
stack-reuse-miscompile.cpp 20 T concat(const T &Suffix) const;
  /external/clang/tools/scan-build/
Makefile 16 Suffix := .bat
22 InstallTargets := $(ToolDir)/scan-build$(Suffix) \
23 $(LibexecDir)/c++-analyzer$(Suffix) \
24 $(LibexecDir)/ccc-analyzer$(Suffix) \
  /prebuilts/clang/host/darwin-x86/clang-2629532/tools/scan-build/
Makefile 16 Suffix := .bat
22 InstallTargets := $(ToolDir)/scan-build$(Suffix) \
23 $(LibexecDir)/c++-analyzer$(Suffix) \
24 $(LibexecDir)/ccc-analyzer$(Suffix) \
  /prebuilts/clang/host/darwin-x86/clang-2658975/tools/scan-build/
Makefile 16 Suffix := .bat
22 InstallTargets := $(ToolDir)/scan-build$(Suffix) \
23 $(LibexecDir)/c++-analyzer$(Suffix) \
24 $(LibexecDir)/ccc-analyzer$(Suffix) \
  /prebuilts/clang/host/darwin-x86/clang-2690385/tools/scan-build/
Makefile 16 Suffix := .bat
22 InstallTargets := $(ToolDir)/scan-build$(Suffix) \
23 $(LibexecDir)/c++-analyzer$(Suffix) \
24 $(LibexecDir)/ccc-analyzer$(Suffix) \
  /prebuilts/clang/host/linux-x86/clang-2629532/tools/scan-build/
Makefile 16 Suffix := .bat
22 InstallTargets := $(ToolDir)/scan-build$(Suffix) \
23 $(LibexecDir)/c++-analyzer$(Suffix) \
24 $(LibexecDir)/ccc-analyzer$(Suffix) \
  /prebuilts/clang/host/linux-x86/clang-2658975/tools/scan-build/
Makefile 16 Suffix := .bat
22 InstallTargets := $(ToolDir)/scan-build$(Suffix) \
23 $(LibexecDir)/c++-analyzer$(Suffix) \
24 $(LibexecDir)/ccc-analyzer$(Suffix) \
  /prebuilts/clang/host/linux-x86/clang-2690385/tools/scan-build/
Makefile 16 Suffix := .bat
22 InstallTargets := $(ToolDir)/scan-build$(Suffix) \
23 $(LibexecDir)/c++-analyzer$(Suffix) \
24 $(LibexecDir)/ccc-analyzer$(Suffix) \
  /external/llvm/include/llvm/ADT/
Twine.h 155 /// RHS - The suffix in the concatenation, which may be uninitialized for
424 Twine concat(const Twine &Suffix) const;
487 inline Twine Twine::concat(const Twine &Suffix) const {
489 if (isNull() || Suffix.isNull())
494 return Suffix;
495 if (Suffix.isEmpty())
502 NewRHS.twine = &Suffix;
508 if (Suffix.isUnary()) {
509 NewRHS = Suffix.LHS;
510 NewRHSKind = Suffix.getLHSKind()
    [all...]
StringRef.h 233 /// Check if this string ends with the given \p Suffix.
235 bool endswith(StringRef Suffix) const {
236 return Length >= Suffix.Length &&
237 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
240 /// Check if this string ends with the given \p Suffix, ignoring case.
241 bool endswith_lower(StringRef Suffix) const;
416 /// suffix (starting with \p Start) will be returned.
447 /// number of characters remaining in the string, the string suffix
    [all...]
  /external/llvm/tools/bugpoint/
ListReducer.h 32 KeepSuffix, // The suffix alone satisfies the predicate
122 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end());
124 switch (doTest(Prefix, Suffix, Error)) {
128 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/giflib/
gif_lib_private.h 51 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */
  /external/clang/lib/Driver/
ToolChain.cpp 96 const char *Suffix;
120 if (ProgName.endswith(DriverSuffixes[i].Suffix))
141 // E.g. "x86_64-linux-clang" as interpreted as suffix "clang" with target
172 ProgName.rfind('-', ProgName.size() - strlen(DS->Suffix));
295 const char *Suffix = Shared ? (Triple.isOSWindows() ? ".dll" : ".so")
302 Arch + Env + Suffix);
344 StringRef Suffix = A->getValue();
348 if (Suffix.empty() || Suffix == "ld")
352 LinkerName.append(Suffix);
    [all...]
  /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/lib/Target/PowerPC/
PPCMCInstLower.cpp 46 StringRef Suffix;
49 Suffix = "$stub";
51 Suffix = "$non_lazy_ptr";
53 if (!Suffix.empty())
68 Name += Suffix;
94 // then add the suffix.
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMTargetStreamer.cpp 70 void ARMTargetStreamer::emitInst(uint32_t Inst, char Suffix) {}
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 104 const GlobalValue *GV, StringRef Suffix, Mangler &Mang,
106 assert(!Suffix.empty());
111 NameStr.append(Suffix.begin(), Suffix.end());
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 135 StringRef Suffix;
143 Suffix = "$stub";
148 Suffix = "$non_lazy_ptr";
152 if (!Suffix.empty())
163 assert(Suffix.empty());
168 Name += Suffix;
236 // These affect the name of the symbol, not any suffix.
    [all...]

Completed in 1316 milliseconds

1 2 3