HomeSort by: relevance | last modified time | path
    Searched refs:Suffix (Results 1 - 25 of 144) sorted by relevancy

1 2 3 4 5 6

  /src/external/apache2/llvm/dist/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...]
  /src/usr.bin/make/unit-tests/
deptgt-path-suffix.exp 1 make: deptgt-path-suffix.mk:8: Suffix ".c" not defined (yet)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
GlobPattern.h 38 assert(!Suffix);
53 Optional<StringRef> Suffix;
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
HeaderMapTypes.h 25 uint32_t Suffix; // Offset (into strings) of value suffix.
  /src/usr.bin/make/
suff.c 72 * Maintain suffix lists and find implicit dependents using suffix
81 * Extend the search path of each suffix to include the
90 * Suff_AddSuffix Add the passed string as another known suffix.
92 * Suff_GetPath Return the search path for the given suffix.
95 * Mark the given suffix as denoting an include file.
97 * Suff_AddLib Mark the given suffix as denoting a library.
100 * Add another transformation to the suffix graph.
102 * Suff_SetNull Define the suffix to consider the suffix o
    [all...]
  /src/external/apache2/llvm/dist/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...]
Preprocessor.cpp 1063 // A string-literal with a prefix or suffix is not translated into a
1074 /// Collect the tokens of a C++20 pp-import-suffix.
1113 /// import header-name pp-import-suffix[opt] ;
1114 /// import header-name-tokens pp-import-suffix[opt] ;
1156 SmallVector<Token, 32> Suffix;
1161 Suffix.push_back(Result);
1163 // Consume the pp-import-suffix and expand any macros in it now. We'll add
1165 CollectPpImportSuffix(Suffix);
1166 if (Suffix.back().isNot(tok::semi)) {
1168 EnterTokens(Suffix);
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
adfile.c 186 * Suffix - New extension.
188 * RETURN: New filename containing the original base + the new suffix
198 char *Suffix)
207 * case where we append the suffix, an added dot and the null terminator.
210 strlen (InputFilename) + strlen (Suffix) + 2);
220 /* Tack on the new suffix */
224 strcat (Position, Suffix);
228 /* No dot, add one and then the suffix */
231 strcat (NewFilename, Suffix);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
affix_allocator.d 10 (of type `Suffix`) any allocation made with its parent allocator. This is
23 struct AffixAllocator(Allocator, Prefix, Suffix = void)
42 static assert(alignment % Suffix.alignof == 0,
124 - stateSize!Prefix - stateSize!Suffix,
131 static if (!stateSize!Suffix)
138 roundUpToMultipleOf(s + stateSize!Prefix, Suffix.alignof)
139 + stateSize!Suffix;
159 static if (stateSize!Suffix)
161 auto suffixP = result.ptr + result.length - Suffix.sizeof;
162 assert(suffixP.alignedAt(Suffix.alignof))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
MipsLinux.cpp 35 // Find out the library suffix based on the ABI.
125 const char *Suffix;
128 Suffix = ".o";
131 Suffix = ".a";
134 Suffix = ".so";
138 Path, Twine("libclang_rt." + Component + "-" + "mips" + Suffix));
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Twine.h 158 /// RHS - The suffix in the concatenation, which may be uninitialized for
425 Twine concat(const Twine &Suffix) const;
488 inline Twine Twine::concat(const Twine &Suffix) const {
490 if (isNull() || Suffix.isNull())
495 return Suffix;
496 if (Suffix.isEmpty())
503 NewRHS.twine = &Suffix;
509 if (Suffix.isUnary()) {
510 NewRHS = Suffix.LHS;
511 NewRHSKind = Suffix.getLHSKind()
    [all...]
StringRef.h 294 /// Check if this string ends with the given \p Suffix.
296 bool endswith(StringRef Suffix) const {
297 return Length >= Suffix.Length &&
298 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
301 /// Check if this string ends with the given \p Suffix, ignoring case.
303 bool endswith_lower(StringRef Suffix) const;
606 /// suffix (starting with \p Start) will be returned.
687 /// Returns true if this StringRef has the given suffix and removes tha
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
Hexagon.cpp 186 llvm::StringLiteral Suffix;
202 return Item->Suffix.data();
207 for (const CPUSuffix &Suffix : Suffixes)
208 Values.push_back(Suffix.Name);
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kMCInstLower.cpp 51 StringRef Suffix;
53 if (!Suffix.empty())
62 assert(Suffix.empty());
66 Name += Suffix;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
WindowsResource.h 107 uint16_t getDataVersion() const { return Suffix->DataVersion; }
108 uint16_t getLanguage() const { return Suffix->Language; }
109 uint16_t getMemoryFlags() const { return Suffix->MemoryFlags; }
110 uint16_t getMajorVersion() const { return Suffix->Version >> 16; }
111 uint16_t getMinorVersion() const { return Suffix->Version; }
112 uint32_t getCharacteristics() const { return Suffix->Characteristics; }
132 const WinResHeaderSuffix *Suffix = nullptr;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
CodeExtractor.h 103 // Suffix to use when creating extracted function (appended to the original
106 std::string Suffix;
124 std::string Suffix = "");
134 std::string Suffix = "");
  /src/external/apache2/llvm/dist/llvm/lib/Support/
GlobPattern.cpp 127 Pat.Suffix = S.drop_front();
148 if (Suffix)
149 return S.endswith(*Suffix);
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ListReducer.h 31 KeepSuffix, // The suffix alone satisfies the predicate
121 std::vector<ElTy> Suffix(TheList.begin() + Mid, TheList.end());
123 Expected<TestResult> Result = doTest(Prefix, Suffix);
130 TheList.swap(Suffix);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenABITypes.cpp 91 for (const auto &arg : addedArgs.Suffix) {
92 implicitArgs.Suffix.push_back(arg.Value);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 112 bool addErrorSuffix(const Twine &Suffix) {
113 return getParser().addErrorSuffix(Suffix);
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MCAsmParser.cpp 115 bool MCAsmParser::addErrorSuffix(const Twine &Suffix) {
120 Suffix.toVector(PErr.Msg);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/
SupportHelpers.h 213 TempFile(StringRef Name, StringRef Suffix = "", StringRef Contents = "",
218 EC = llvm::sys::fs::createTemporaryFile(Name, Suffix, fd, Path);
221 if (!Suffix.empty()) {
223 Path.append(Suffix);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCLowerMASSVEntries.cpp 31 // Length of the suffix "massv", which is specific to IBM MASSV library entries.
73 /// "P8" for Power8, "P9" for Power9. The string is used as a suffix while
94 StringRef Suffix = getCPUSuffix(Subtarget);
96 std::string MASSVEntryName = GenericName + Suffix.str();
  /src/external/bsd/libarchive/dist/libarchive/
archive_ppmd8_private.h 33 CPpmd8_Context_Ref Suffix;
114 p->NS2BSIndx[Ppmd8_GetContext(p, p->MinContext->Suffix)->NumStats] + \
  /src/sys/external/bsd/acpica/dist/include/
acapps.h 218 char *Suffix);

Completed in 30 milliseconds

1 2 3 4 5 6