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

1 2 3 4 5 6 7 8 9

  /external/selinux/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/swiftshader/third_party/llvm-7.0/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/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
StringSwitchTest.cpp 117 enum class Suffix { Possible, PastTense, Process, InProgressAction, Unknown };
120 return llvm::StringSwitch<Suffix>(S)
121 .EndsWith("able", Suffix::Possible)
122 .EndsWith("ed", Suffix::PastTense)
123 .EndsWith("ation", Suffix::Process)
124 .EndsWith("ing", Suffix::InProgressAction)
125 .Default(Suffix::Unknown);
128 EXPECT_EQ(Suffix::Possible, Translate("optimizable"));
129 EXPECT_EQ(Suffix::PastTense, Translate("optimized"));
130 EXPECT_EQ(Suffix::Process, Translate("optimization"))
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/examples/win_text/
unwinder.h 41 #define UNWIND_MAKE_IDENTIFIER_EXPLICIT_PASTER(Prefix, Suffix) Prefix ## Suffix
42 #define UNWIND_MAKE_IDENTIFIER_EXPLICIT(Prefix, Suffix) UNWIND_MAKE_IDENTIFIER_EXPLICIT_PASTER(Prefix, Suffix)
  /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/clang/include/clang/Lex/
HeaderMapTypes.h 26 uint32_t Suffix; // Offset (into strings) of value suffix.
  /external/clang/test/CodeGenCXX/
stack-reuse-miscompile.cpp 20 T concat(const T &Suffix) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
GlobPattern.h 44 Optional<StringRef> Suffix;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Section.py 120 Suffix = FileExtension
122 Suffix = Section.SectionType.get(FileType)
124 Suffix = Section.BinFileType.get(FileType)
144 if Suffix != None and os.path.exists(FfsInf.EfiOutputPath):
153 # Update to search files with suffix in all sub-dirs.
157 if os.path.splitext(F)[1] == Suffix:
163 if Suffix in SuffixMap:
164 FileList.extend(SuffixMap[Suffix])
  /external/clang/lib/Lex/
HeaderMap.cpp 144 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
191 StringRef Suffix = getStringOrInvalid(B.Suffix);
193 << Suffix << "'\n";
233 Optional<StringRef> Suffix = getString(B.Suffix);
236 if (LLVM_LIKELY(Prefix && Suffix)) {
238 DestPath.append(Suffix->begin(), Suffix->end())
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
Twine.h 152 /// RHS - The suffix in the concatenation, which may be uninitialized for
410 Twine concat(const Twine &Suffix) const;
468 inline Twine Twine::concat(const Twine &Suffix) const {
470 if (isNull() || Suffix.isNull())
475 return Suffix;
476 if (Suffix.isEmpty())
483 NewRHS.twine = &Suffix;
489 if (Suffix.isUnary()) {
490 NewRHS = Suffix.LHS;
491 NewRHSKind = Suffix.getLHSKind()
    [all...]
StringRef.h 202 /// endswith - Check if this string ends with the given \arg Suffix.
203 bool endswith(StringRef Suffix) const {
204 return Length >= Suffix.Length &&
205 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
341 /// suffix (starting with \arg Start) will be returned.
355 /// number of characters remaining in the string, the string suffix
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
Twine.h 159 /// RHS - The suffix in the concatenation, which may be uninitialized for
423 Twine concat(const Twine &Suffix) const;
486 inline Twine Twine::concat(const Twine &Suffix) const {
488 if (isNull() || Suffix.isNull())
493 return Suffix;
494 if (Suffix.isEmpty())
501 NewRHS.twine = &Suffix;
507 if (Suffix.isUnary()) {
508 NewRHS = Suffix.LHS;
509 NewRHSKind = Suffix.getLHSKind()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
WindowsResource.h 103 uint16_t getDataVersion() const { return Suffix->DataVersion; }
104 uint16_t getLanguage() const { return Suffix->Language; }
105 uint16_t getMemoryFlags() const { return Suffix->MemoryFlags; }
106 uint16_t getMajorVersion() const { return Suffix->Version >> 16; }
107 uint16_t getMinorVersion() const { return Suffix->Version; }
108 uint32_t getCharacteristics() const { return Suffix->Characteristics; }
127 const WinResHeaderSuffix *Suffix = nullptr;
  /external/llvm/include/llvm/ADT/
Twine.h 153 /// RHS - The suffix in the concatenation, which may be uninitialized for
422 Twine concat(const Twine &Suffix) const;
485 inline Twine Twine::concat(const Twine &Suffix) const {
487 if (isNull() || Suffix.isNull())
492 return Suffix;
493 if (Suffix.isEmpty())
500 NewRHS.twine = &Suffix;
506 if (Suffix.isUnary()) {
507 NewRHS = Suffix.LHS;
508 NewRHSKind = Suffix.getLHSKind()
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Twine.h 158 /// RHS - The suffix in the concatenation, which may be uninitialized for
433 Twine concat(const Twine &Suffix) const;
496 inline Twine Twine::concat(const Twine &Suffix) const {
498 if (isNull() || Suffix.isNull())
503 return Suffix;
504 if (Suffix.isEmpty())
511 NewRHS.twine = &Suffix;
517 if (Suffix.isUnary()) {
518 NewRHS = Suffix.LHS;
519 NewRHSKind = Suffix.getLHSKind()
    [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);
  /external/swiftshader/third_party/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);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
ListReducer.h 32 KeepSuffix, // The suffix alone satisfies the predicate
122 std::vector<ElTy> Suffix(TheList.begin() + Mid, TheList.end());
124 Expected<TestResult> Result = doTest(Prefix, Suffix);
131 TheList.swap(Suffix);
  /external/giflib/
gif_lib_private.h 51 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */
  /external/clang/lib/CodeGen/
CGOpenCLRuntime.cpp 43 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
46 llvm::StructType::create(Ctx, "opencl." #ImgType "_" #Suffix "_t"), \
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 110 bool addErrorSuffix(const Twine &Suffix) {
111 return getParser().addErrorSuffix(Suffix);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/
IfrVariable.c 398 IN CHAR16 *Suffix,
408 But it only does it if the Name ends with specified Suffix.
409 For example, if Suffix="MyOverride" and the Name="XyzSetupMyOverride",
410 the Suffix matches the end of Name, so the variable will be loaded from NV
414 Suffix - Suffix the Name should end with.
420 EFI_INVALID_PARAMETER - The name of the variable does not end with <Suffix>.
430 StrLenSuffix = EfiStrLen (Suffix);
431 if ((StrLen <= StrLenSuffix) || (0 != EfiStrCmp (Suffix, &Name[StrLen - StrLenSuffix]))) {
433 // Not ending with <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...]

Completed in 1874 milliseconds

1 2 3 4 5 6 7 8 9