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

1 2 3 4 5

  /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/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...]
  /prebuilts/go/darwin-x86/doc/codewalk/
markov.go 13 potential textual suffixes for a given prefix. Consider this text:
18 and suffixes, or "chain": (This table assumes a prefix length of two words.)
20 Prefix Suffix
33 To generate text using this table we select an initial prefix ("I am", for
34 example), choose one of the suffixes associated with that prefix at random
36 and then create a new prefix by removing the first word from the prefix
37 and appending the suffix (making the new prefix is "am a"). Repeat this process
38 until we can't find any suffixes for the current prefix or we exceed the word
43 The prefix and output lengths can be specified using the -prefix and -word
    [all...]
  /prebuilts/go/linux-x86/doc/codewalk/
markov.go 13 potential textual suffixes for a given prefix. Consider this text:
18 and suffixes, or "chain": (This table assumes a prefix length of two words.)
20 Prefix Suffix
33 To generate text using this table we select an initial prefix ("I am", for
34 example), choose one of the suffixes associated with that prefix at random
36 and then create a new prefix by removing the first word from the prefix
37 and appending the suffix (making the new prefix is "am a"). Repeat this process
38 until we can't find any suffixes for the current prefix or we exceed the word
43 The prefix and output lengths can be specified using the -prefix and -word
    [all...]
  /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/lib/Frontend/
TextDiagnosticPrinter.cpp 128 // file+line+column number prefix is.
131 if (!Prefix.empty())
132 OS << Prefix << ": ";
  /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/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/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
Intercept.cpp 140 std::string Prefix = std::string(Name.begin(), Name.end()-9);
141 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
143 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
Intercept.cpp 143 std::string Prefix = std::string(Name.begin(), Name.end()-9);
144 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
146 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
  /external/clang/include/clang/Lex/
HeaderMapTypes.h 25 uint32_t Prefix; // Offset (into strings) of value prefix.
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);
  /external/llvm/lib/DebugInfo/Symbolize/
DIPrinter.cpp 75 StringRef Prefix = (PrintPretty && Inlined) ? " (inlined by) " : "";
76 OS << Prefix << FunctionName << Delimiter;
  /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/llvm/lib/Support/
SpecialCaseList.cpp 96 // Get our prefix and unparsed regexp.
98 StringRef Prefix = SplitLine.first;
112 Entries[Prefix][Category].Strings.insert(Regexp);
131 // Add this regexp into the proper group by its prefix.
132 if (!Regexps[Prefix][Category].empty())
133 Regexps[Prefix][Category] += "|";
134 Regexps[Prefix][Category] += "^" + Regexp + "$";
  /external/swiftshader/third_party/LLVM/lib/Target/
Mangler.cpp 100 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
116 const char *Prefix = MAI.getPrivateGlobalPrefix();
117 OutName.append(Prefix, Prefix+strlen(Prefix));
119 const char *Prefix = MAI.getLinkerPrivateGlobalPrefix();
120 OutName.append(Prefix, Prefix+strlen(Prefix));
123 const char *Prefix = MAI.getGlobalPrefix()
    [all...]
  /prebuilts/go/darwin-x86/src/log/
log.go 26 // These flags define which text to prefix to each log entry generated by the Logger.
31 // The prefix is followed by a colon only when Llongfile or Lshortfile
52 prefix string // prefix to write at beginning of each line
60 // The prefix appears at the beginning of each generated log line.
62 func New(out io.Writer, prefix string, flag int) *Logger {
63 return &Logger{out: out, prefix: prefix, flag: flag}
93 *buf = append(*buf, l.prefix...)
140 // the text to print after the prefix specified by the flags of th
    [all...]
  /prebuilts/go/linux-x86/src/log/
log.go 26 // These flags define which text to prefix to each log entry generated by the Logger.
31 // The prefix is followed by a colon only when Llongfile or Lshortfile
52 prefix string // prefix to write at beginning of each line
60 // The prefix appears at the beginning of each generated log line.
62 func New(out io.Writer, prefix string, flag int) *Logger {
63 return &Logger{out: out, prefix: prefix, flag: flag}
93 *buf = append(*buf, l.prefix...)
140 // the text to print after the prefix specified by the flags of th
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Print/
Print.c 30 '+' - Prefix a sign
31 ' ' - Prefix a blank
33 '0' - Prefix for width with zeros
43 'X' - argument is a UINTN hex number, prefix '0'
440 CHAR8 Prefix;
460 Prefix = '0';
462 Prefix = ' ';
464 Prefix = 0x00;
467 *(TempStr++) = Prefix;
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Icmp.c 455 Retrieve the Prefix address according to the PrefixLength by clear the useless
458 @param[in] PrefixLength The prefix length of the prefix.
459 @param[in, out] Prefix On input, points to the original prefix address
467 IN OUT EFI_IPv6_ADDRESS *Prefix
475 ASSERT ((Prefix != NULL) && (PrefixLength < IP6_PREFIX_NUM));
478 ZeroMem (Prefix, sizeof (EFI_IPv6_ADDRESS));
488 Value = Prefix->Addr[Byte];
491 ZeroMem (Prefix->Addr + Byte, 16 - Byte);
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 168 const Twine Prefix, llvm::raw_ostream &OS) {
170 OS << Prefix;
  /external/clang/lib/Format/
BreakableToken.h 99 unsigned StartColumn, StringRef Prefix,
106 // The prefix a line needs after a break in the token.
107 StringRef Prefix;
110 // The token text excluding the prefix and postfix.
121 unsigned StartColumn, StringRef Prefix,
153 // The prefix without an additional space if one was added.
209 // regard as whitespace when all lines have a "*" prefix.
214 // a "*" prefix.
  /external/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...]
  /external/clang/lib/Tooling/Core/
QualTypeNames.cpp 249 // but use the name of it's prefix.
430 NestedNameSpecifier *Prefix = nullptr;
443 Prefix = createNestedNameSpecifierForScopeOf(Ctx, QT.getTypePtr(),
459 if (Prefix || Keyword != ETK_None) {
460 QT = Ctx.getElaboratedType(Keyword, Prefix, QT);

Completed in 2442 milliseconds

1 2 3 4 5