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

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TableGenBackend.cpp 22 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill,
25 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) &&
27 OS << Prefix;
36 StringRef Prefix("|* ");
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);
48 printLine(OS, Prefix + "Automatically generated file, do not edit!", ' ',
50 printLine(OS, Prefix, ' ', Suffix)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
PassInstrumentation.cpp 34 StringRef Prefix = PassID;
36 Prefix = PassID.substr(0, Pos);
37 return any_of(Specials, [Prefix](StringRef S) { return Prefix.endswith(S); });
Mangler.cpp 28 Private, ///< Emit "private" prefix before each symbol.
29 LinkerPrivate ///< Emit "linker private" prefix before each symbol.
35 const DataLayout &DL, char Prefix) {
48 Prefix = '\0';
55 if (Prefix != '\0')
56 OS << Prefix;
65 char Prefix = DL.getGlobalPrefix();
66 return getNameWithPrefixImpl(OS, GVName, PrefixTy, DL, Prefix);
77 char Prefix = DL.getGlobalPrefix();
78 return getNameWithPrefixImpl(OS, GVName, Default, DL, Prefix);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
GlobPattern.h 37 if (Prefix && Prefix->empty()) {
52 Optional<StringRef> Prefix;
TypeName.h 46 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
47 if (Name.startswith(Prefix)) {
48 Name = Name.drop_front(Prefix.size());
WithColor.h 101 static raw_ostream &error(raw_ostream &OS, StringRef Prefix = "",
104 static raw_ostream &warning(raw_ostream &OS, StringRef Prefix = "",
107 static raw_ostream &note(raw_ostream &OS, StringRef Prefix = "",
110 static raw_ostream &remark(raw_ostream &OS, StringRef Prefix = "",
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
SymbolSerializer.h 39 RecordPrefix Prefix;
40 Prefix.RecordKind = Kind;
41 Prefix.RecordLen = 0;
42 if (auto EC = Writer.writeObject(Prefix))
53 RecordPrefix Prefix{uint16_t(Sym.Kind)};
54 CVSymbol Result(&Prefix, sizeof(Prefix));
  /src/external/apache2/llvm/dist/llvm/lib/Support/
WithColor.cpp 69 raw_ostream &WithColor::error(raw_ostream &OS, StringRef Prefix,
71 if (!Prefix.empty())
72 OS << Prefix << ": ";
79 raw_ostream &WithColor::warning(raw_ostream &OS, StringRef Prefix,
81 if (!Prefix.empty())
82 OS << Prefix << ": ";
89 raw_ostream &WithColor::note(raw_ostream &OS, StringRef Prefix,
91 if (!Prefix.empty())
92 OS << Prefix << ": ";
99 raw_ostream &WithColor::remark(raw_ostream &OS, StringRef Prefix,
    [all...]
TarWriter.cpp 51 char Prefix[155];
121 // - Path is in the form of "<prefix>/<name>" where <prefix> is less
123 // characters long. Both <prefix> and <name> can contain extra '/'.
125 // If Path fits in a Ustar header, updates Prefix and Name and returns true.
127 static bool splitUstar(StringRef Path, StringRef &Prefix, StringRef &Name) {
129 Prefix = "";
136 // header, corresponding to offset 137 in the prefix. That's the version of
137 // tar in gnuwin, so only use 137 of the 155 bytes in the prefix. This means
150 Prefix = Path.substr(0, Sep)
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acapps.h 83 #define ACPI_COMMON_HEADER(UtilityName, Prefix) \
85 Prefix, ACPICA_NAME, \
86 Prefix, UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, \
87 Prefix, ACPICA_COPYRIGHT, \
88 Prefix
232 char *Prefix,
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 26 bool isRefType(QualType RetTy, StringRef Prefix,
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
HeaderMapTypes.h 24 uint32_t Prefix; // Offset (into strings) of value prefix.
HeaderSearchOptions.h 86 /// A prefix to be matched against paths in \#include directives.
87 std::string Prefix;
89 /// True if paths beginning with this prefix should be treated as system
93 SystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader)
94 : Prefix(Prefix), IsSystemHeader(IsSystemHeader) {}
240 /// path starting with \p Prefix should be considered as naming a system
242 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) {
243 SystemHeaderPrefixes.emplace_back(Prefix, IsSystemHeader);
261 return llvm::hash_combine(SHP.Prefix, SHP.IsSystemHeader)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
TapiFile.h 48 StringRef Prefix;
52 constexpr Symbol(StringRef Prefix, StringRef Name, uint32_t Flags)
53 : Prefix(Prefix), Name(Name), Flags(Flags) {}
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
SimpleTypeSerializer.cpp 39 // Write the record prefix first with a dummy length but real kind.
43 RecordPrefix *Prefix = reinterpret_cast<RecordPrefix *>(ScratchBuffer.data());
44 CVType CVT(Prefix, sizeof(RecordPrefix));
53 Prefix->RecordKind = CVT.kind();
54 Prefix->RecordLen = Writer.getOffset() - sizeof(uint16_t);
ContinuationRecordBuilder.cpp 14 SegmentInjection(TypeLeafKind Kind) { Prefix.RecordKind = Kind; }
17 RecordPrefix Prefix;
69 // Seed the first record with an appropriate record prefix.
70 RecordPrefix Prefix(getTypeLeafKind(RecordKind));
71 CVType Type(&Prefix, sizeof(Prefix));
74 cantFail(SegmentWriter.writeObject(Prefix));
158 RecordPrefix *Prefix = reinterpret_cast<RecordPrefix *>(Data.data());
159 Prefix->RecordLen = Data.size() - sizeof(RecordPrefix::RecordLen);
174 RecordPrefix Prefix(getTypeLeafKind(*Kind))
    [all...]
  /src/external/bsd/pkg_install/dist/add/
add.h 32 extern char *Prefix;
  /src/external/apache2/llvm/dist/clang/lib/AST/
NestedNameSpecifier.cpp 60 NestedNameSpecifier *Prefix, IdentifierInfo *II) {
62 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent");
65 Mockup.Prefix.setPointer(Prefix);
66 Mockup.Prefix.setInt(StoredIdentifier);
73 NestedNameSpecifier *Prefix,
76 assert((!Prefix ||
77 (Prefix->getAsType() == nullptr &
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
TextDiagnosticPrinter.h 34 /// A string to prefix to error messages.
35 std::string Prefix;
44 /// setPrefix - Set the diagnostic printer prefix string, which will be
45 /// printed at the start of any diagnostics. If empty, no prefix string is
47 void setPrefix(std::string Value) { Prefix = std::move(Value); }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.h 30 StringRef Prefix;
40 DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm, StringRef Prefix);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
affix_allocator.d 9 Allocator that adds some extra data before (of type `Prefix`) and/or after
14 If `Prefix` is not `void`, `Allocator` must guarantee an alignment at
15 least as large as `Prefix.alignof`.
23 struct AffixAllocator(Allocator, Prefix, Suffix = void)
38 !stateSize!Prefix || Allocator.alignment >= Prefix.alignof,
40 ~ " alignment than the prefix alignment.");
46 If `Prefix` is `void`, the alignment is that of the parent. Otherwise, the alignment is the same as the `Prefix`'s alignment.
50 enum uint alignment = isPowerOf2(stateSize!Prefix)
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahaml.c 62 * PARAMETERS: Name - Name or prefix for an AML opcode.
68 * prefix.
82 /* Find/display all opcode names that match the input name prefix */
135 UINT8 Prefix;
153 Prefix = (Opcode & 0x0000FF00) >> 8;
154 if (Prefix && (Prefix != 0x5B))
156 printf ("Invalid opcode (invalid extension prefix 0x%X)\n",
157 Prefix);
240 * PARAMETERS: Name - Name or prefix for an AML grammar element
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
NestedNameSpecifier.h 65 llvm::PointerIntPair<NestedNameSpecifier *, 2, StoredSpecifierKind> Prefix;
73 /// specifier as encoded within the prefix.
106 NestedNameSpecifier() : Prefix(nullptr, StoredIdentifier) {}
120 /// Builds a specifier combining a prefix and an identifier.
122 /// The prefix must be dependent, since nested name specifiers
126 NestedNameSpecifier *Prefix,
131 NestedNameSpecifier *Prefix,
136 NestedNameSpecifier *Prefix,
141 NestedNameSpecifier *Prefix,
147 /// prefix because the prefix is implied by something outside of th
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslcompile.c 474 char *Prefix = "";
478 /* Set line prefix depending on the destination file type */
485 Prefix = "; ";
492 Prefix = "; ";
498 Prefix = " * ";
506 Prefix = " * ";
529 FlPrintFile (FileId, "%s\n", Prefix);
530 FlPrintFile (FileId, ACPI_COMMON_HEADER (UtilityName, Prefix));
552 char *Prefix = "";
555 /* Set line prefix depending on the destination file type *
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
HeaderMap.cpp 143 Result.Prefix = getEndianAdjustedWord(BucketPtr->Prefix);
190 StringRef Prefix = getStringOrInvalid(B.Prefix);
192 llvm::dbgs() << " " << i << ". " << Key << " -> '" << Prefix << "' '"
232 Optional<StringRef> Prefix = getString(B.Prefix);
236 if (LLVM_LIKELY(Prefix && Suffix)) {
237 DestPath.append(Prefix->begin(), Prefix->end())
    [all...]

Completed in 81 milliseconds

1 2 3 4 5 6 7 8 91011>>