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

1 2 3 4 5 6 7 8 91011>>

  /external/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...]
  /external/swiftshader/third_party/llvm-7.0/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...]
  /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)
44 #define UNWIND_MAKE_IDENTIFIER(Prefix) UNWIND_MAKE_IDENTIFIER_EXPLICIT(Prefix, __LINE__)
  /external/compiler-rt/test/ubsan/TestCases/TypeCheck/
vptr-corrupted-vtable-itanium.cpp 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-CORRUPTED-VTABLE --strict-whitespace
30 VtablePrefix Prefix[2];
31 Prefix[0].Offset = 1<<21; // Greater than VptrMaxOffset
32 Prefix[0].TypeInfo = RealPrefix->TypeInfo;
35 *reinterpret_cast<void**>(Ptr) = static_cast<void*>(&Prefix[1]);
  /external/swiftshader/third_party/subzero/src/
IceTranslator.cpp 31 std::string Translator::createUnnamedName(const std::string &Prefix,
34 return Prefix;
37 StrBuf << Prefix << Index;
43 const std::string &Prefix) {
44 if (Name.find(Prefix) == 0) {
45 for (size_t i = Prefix.size(); i < Name.size(); ++i) {
52 Stream << "Warning : Default " << Kind << " prefix '" << Prefix
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
WithColor.cpp 69 raw_ostream &WithColor::error(raw_ostream &OS, StringRef Prefix) {
70 if (!Prefix.empty())
71 OS << Prefix << ": ";
75 raw_ostream &WithColor::warning(raw_ostream &OS, StringRef Prefix) {
76 if (!Prefix.empty())
77 OS << Prefix << ": ";
81 raw_ostream &WithColor::note(raw_ostream &OS, StringRef Prefix) {
82 if (!Prefix.empty())
83 OS << Prefix << ": ";
TarWriter.cpp 52 char Prefix[155];
122 // - Path is in the form of "<prefix>/<name>" where <prefix> is less
124 // characters long. Both <prefix> and <name> can contain extra '/'.
126 // If Path fits in a Ustar header, updates Prefix and Name and returns true.
128 static bool splitUstar(StringRef Path, StringRef &Prefix, StringRef &Name) {
130 Prefix = "";
135 size_t Sep = Path.rfind('/', sizeof(UstarHeader::Prefix) + 1);
141 Prefix = Path.substr(0, Sep);
148 static void writeUstarHeader(raw_fd_ostream &OS, StringRef Prefix,
    [all...]
  /external/selinux/mcstrans/share/examples/pipes/setrans.d/
pipes.conf 2 Prefix=Handle Via
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
SimpleTypeSerializer.cpp 7 RecordPrefix Prefix;
8 Prefix.RecordKind = Kind;
9 Prefix.RecordLen = 0;
10 cantFail(Writer.writeObject(Prefix));
46 RecordPrefix *Prefix = reinterpret_cast<RecordPrefix *>(ScratchBuffer.data());
48 Prefix->RecordKind = CVT.kind();
49 Prefix->RecordLen = Writer.getOffset() - sizeof(uint16_t);
  /external/llvm/include/llvm/DebugInfo/CodeView/
CVRecord.h 33 const RecordPrefix *Prefix = nullptr;
37 if (auto EC = Reader.readObject(Prefix))
39 Item.Length = Prefix->RecordLen;
42 Item.Type = static_cast<Kind>(uint16_t(Prefix->RecordKind));
49 Len = Prefix->RecordLen + 2;
  /external/llvm/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
TypeName.h 47 for (StringRef Prefix : {"class ", "struct ", "union ", "enum "})
48 if (Name.startswith(Prefix)) {
49 Name = Name.drop_front(Prefix.size());
WithColor.h 58 static raw_ostream &error(raw_ostream &OS, StringRef Prefix = "");
60 static raw_ostream &warning(raw_ostream &OS, StringRef Prefix = "");
62 static raw_ostream &note(raw_ostream &OS, StringRef Prefix = "");
  /external/clang/include/clang/Lex/
HeaderSearchOptions.h 65 /// A prefix to be matched against paths in \#include directives.
66 std::string Prefix;
68 /// True if paths beginning with this prefix should be treated as system
72 SystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader)
73 : Prefix(Prefix), IsSystemHeader(IsSystemHeader) {}
193 /// path starting with \p Prefix should be considered as naming a system
195 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) {
196 SystemHeaderPrefixes.emplace_back(Prefix, IsSystemHeader);
HeaderMapTypes.h 25 uint32_t Prefix; // Offset (into strings) of value prefix.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
ValueToString.c 59 CHAR16 Prefix;
85 Prefix = '0';
87 Prefix = ' ';
93 *(TempStr++) = Prefix;
149 CHAR16 Prefix;
188 Prefix = '0';
190 Prefix = ' ';
196 *(TempStr++) = Prefix;
  /external/clang/include/clang/Frontend/
TextDiagnosticPrinter.h 35 /// A string to prefix to error messages.
36 std::string Prefix;
45 /// setPrefix - Set the diagnostic printer prefix string, which will be
46 /// printed at the start of any diagnostics. If empty, no prefix string is
48 void setPrefix(std::string Value) { Prefix = std::move(Value); }
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.h 31 StringRef Prefix;
38 DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm, StringRef Prefix);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.h 31 StringRef Prefix;
38 DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm, StringRef Prefix);
  /external/swiftshader/third_party/LLVM/utils/
NewNightlyTest.pl 58 # -llvmgccdir Next argument specifies the llvm-gcc install prefix.
123 # Calculate the date prefix...
283 my $Prefix = "$WebDir/$DATE";
284 my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
285 my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
286 my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
408 WriteFile "$Prefix-sentdata.txt", $sentdata;
417 system "$SUBMITAUX \"$Prefix-sentdata.txt\"";
526 my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
549 "| sort > $Prefix-$SubDir-Tests.txt"
    [all...]
  /external/llvm/lib/IR/
Mangler.cpp 27 Private, ///< Emit "private" prefix before each symbol.
28 LinkerPrivate ///< Emit "linker private" prefix before each symbol.
34 const DataLayout &DL, char Prefix) {
51 if (Prefix != '\0')
52 OS << Prefix;
61 char Prefix = DL.getGlobalPrefix();
62 return getNameWithPrefixImpl(OS, GVName, PrefixTy, DL, Prefix);
73 char Prefix = DL.getGlobalPrefix();
74 return getNameWithPrefixImpl(OS, GVName, Default, DL, Prefix);
132 char Prefix = DL.getGlobalPrefix()
    [all...]
  /external/brotli/csharp/org/brotli/dec/
Prefix.cs 8 /// <summary>Lookup tables to map prefix codes to value ranges.</summary>
10 /// Lookup tables to map prefix codes to value ranges.
15 internal sealed class Prefix
  /external/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 27 bool isRefType(QualType RetTy, StringRef Prefix,
  /external/clang/include/clang/StaticAnalyzer/Core/
PathDiagnosticConsumers.h 33 const std::string &Prefix,\
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
SymbolSerializer.h 41 RecordPrefix Prefix;
42 Prefix.RecordKind = Kind;
43 Prefix.RecordLen = 0;
44 if (auto EC = Writer.writeObject(Prefix))

Completed in 1897 milliseconds

1 2 3 4 5 6 7 8 91011>>