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

1 2 3

  /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 = Value; }
  /external/llvm/lib/TableGen/
TableGenBackend.cpp 23 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill,
26 assert((MAX_LINE_LEN - Prefix.str().size() - Suffix.size() > 0) &&
28 OS << Prefix;
40 StringRef Prefix("|*");
43 size_t PSLen = Suffix.size() + Prefix.size();
47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix);
50 printLine(OS, Prefix, ' ', Suffix);
51 printLine(OS, Prefix + " Automatically generated file, do not edit!", ' ',
53 printLine(OS, Prefix, ' ', Suffix);
  /external/chromium/chrome/browser/autocomplete/
history_provider_util.h 46 // "x", no scheme in our prefix list (or "www.") begins with x, so all
52 struct Prefix {
53 Prefix(const string16& prefix, int num_components)
54 : prefix(prefix),
57 string16 prefix; member in struct:history::Prefix
59 // The number of "components" in the prefix. The scheme is a component,
66 typedef std::vector<Prefix> Prefixes;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntitySearch.h 49 Prefix,
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 124 // file+line+column number prefix is.
127 if (!Prefix.empty())
128 OS << Prefix << ": ";
  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp 55 char Prefix = &RegClass == &AArch64::GPR32RegClass ? 'w' : 'x';
58 O << Prefix << "zr";
62 O << (Prefix == 'x' ? "sp" : "wsp");
89 // interesting TLS-model specific ways. Set the prefix modifier as
124 // Some instructions (notably ADRP) don't take the # prefix for
129 // Only need the joining "_" if both the prefix and the suffix are
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 57 const char *Prefix = "";
61 Prefix = PGP;
63 MCSymbol *Sym = Ctx.GetOrCreateSymbol(Twine(Prefix) + Twine(Name));
  /external/lzma/CPP/Common/
Wildcard.h 61 UString Prefix;
63 CPair(const UString &prefix): Prefix(prefix) { };
68 int FindPrefix(const UString &prefix) const;
72 { return (Pairs.Size() == 1 && Pairs.Front().Prefix.IsEmpty()); }
  /external/clang/lib/Format/
BreakableToken.h 90 StringRef Prefix, StringRef Postfix,
95 // The prefix a line needs after a break in the token.
96 StringRef Prefix;
99 // The token text excluding the prefix and postfix.
135 // The prefix without an additional space if one was added.
191 // regard as whitespace when all lines have a "*" prefix.
196 // a "*" prefix.
BreakableToken.cpp 133 return StartColumn + Prefix.size() + Postfix.size() +
138 const FormatToken &Tok, unsigned StartColumn, StringRef Prefix,
141 Prefix(Prefix), Postfix(Postfix) {
142 assert(Tok.TokenText.startswith(Prefix) && Tok.TokenText.endswith(Postfix));
144 Prefix.size(), Tok.TokenText.size() - Prefix.size() - Postfix.size());
165 Tok, Prefix.size() + TailOffset + Split.first, Split.second, Postfix,
166 Prefix, InPPDirective, 1, StartColumn);
184 OriginalPrefix = Prefix;
    [all...]
  /external/llvm/lib/Target/
Mangler.cpp 104 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
121 const char *Prefix = MAI->getPrivateGlobalPrefix();
122 OutName.append(Prefix, Prefix+strlen(Prefix));
124 const char *Prefix = MAI->getLinkerPrivateGlobalPrefix();
125 OutName.append(Prefix, Prefix+strlen(Prefix));
129 const char *Prefix = MAI->getGlobalPrefix()
    [all...]
  /external/llvm/lib/Transforms/Utils/
SpecialCaseList.cpp 78 // Get our prefix and unparsed regexp.
80 StringRef Prefix = SplitLine.first;
91 if (Prefix == "global-init") {
92 Prefix = "global";
94 } else if (Prefix == "global-init-type") {
95 Prefix = "type";
97 } else if (Prefix == "global-init-src") {
98 Prefix = "src";
104 Entries[Prefix][Category].Strings.insert(Regexp);
122 // Add this regexp into the proper group by its prefix
    [all...]
  /external/clang/include/clang/Lex/
HeaderSearchOptions.h 64 /// A prefix to be matched against paths in \#include directives.
65 std::string Prefix;
67 /// True if paths beginning with this prefix should be treated as system
71 SystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader)
72 : Prefix(Prefix), IsSystemHeader(IsSystemHeader) {}
154 /// path starting with \p Prefix should be considered as naming a system
156 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) {
157 SystemHeaderPrefixes.push_back(SystemHeaderPrefix(Prefix, IsSystemHeader));
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 166 const Twine Prefix, llvm::raw_ostream &OS) {
168 OS << Prefix;
  /external/clang/lib/Lex/
HeaderMap.cpp 40 uint32_t Prefix; // Offset (into strings) of value prefix.
148 Result.Prefix = 0;
155 Result.Prefix = getEndianAdjustedWord(BucketPtr->Prefix);
194 const char *Prefix = getString(B.Prefix);
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
224 DestPath += getString(B.Prefix);
  /external/giflib/
gif_lib_private.h 52 GifPrefixType Prefix[LZ_MAX_CODE + 1];
dgif_lib.c 39 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode);
126 /* Check for GIF prefix at start of file */
200 /* Check for GIF prefix at start of file */
748 GifPrefixType *Prefix;
766 Prefix = Private->Prefix;
768 Prefix[i] = NO_SUCH_CODE;
785 GifPrefixType *Prefix;
789 Prefix = Private->Prefix;
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 40 /// The prefix field from the record
41 uint8_t Prefix;
63 /// Inferred from the operands; indicates whether the L bit in the VEX prefix is set
145 /// mandatory OpSize prefix.
147 /// prefix. If it does, 32-bit register operands stay
150 /// prefix. If it does not, then 16-bit register
164 /// prefix. If it does not, then 16-bit immediate
  /libcore/luni/src/test/java/tests/org/w3c/dom/
Prefix.java 34 * The "getPrefix()" method for a Node returns the namespace prefix of the node,
47 public final class Prefix extends DOMTestCase {
79 String prefix; local
82 prefix = createdNode.getPrefix();
83 assertNull("throw_Null", prefix);
90 String prefix; local
96 prefix = textNode.getPrefix();
97 assertNull("textNodePrefix", prefix);
103 String prefix; local
108 prefix = testEmployee.getPrefix()
115 String prefix; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 413 std::string Prefix = "struct.opencl_builtin_type_";
417 if (Name.substr(0, Prefix.length()) == Prefix) {
418 return Name.substr(Prefix.length(), Name.length());
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 59 llvm::PointerIntPair<NestedNameSpecifier *, 2, StoredSpecifierKind> Prefix;
67 /// specifier as encoded within the prefix.
91 NestedNameSpecifier() : Prefix(0, StoredIdentifier), Specifier(0) { }
96 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix),
108 /// \brief Builds a specifier combining a prefix and an identifier.
110 /// The prefix must be dependent, since nested name specifiers
114 NestedNameSpecifier *Prefix,
119 NestedNameSpecifier *Prefix,
124 NestedNameSpecifier *Prefix,
    [all...]
  /external/clang/tools/driver/
driver.cpp 207 // the function tries to identify a target as prefix. E.g.
209 // target prefix "x86_64-linux". If such a target prefix is found,
230 StringRef Prefix;
252 Prefix = ProgNameRef.slice(0, LastComponent);
262 if (Prefix.empty())
266 if (llvm::TargetRegistry::lookupTarget(Prefix, IgnoredError)) {
270 ArgVector.insert(it, SaveStringInSet(SavedStrings, Prefix));
  /external/llvm/include/llvm/Option/
Option.h 88 /// \brief Get the name of this option without any prefix.
116 /// \brief Get the default prefix for this option.
118 const char *Prefix = *Info->Prefixes;
119 return Prefix ? Prefix : StringRef();
122 /// \brief Get the name of this option with the default prefix.
192 /// \param ArgSize The number of bytes taken up by the matched Option prefix
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 71 StringRef Prefix = ".data.";
72 NameData.insert(NameData.begin(), Prefix.begin(), Prefix.end());
216 /// getSectionPrefixForGlobal - Return the section prefix name used by options
251 const char *Prefix;
252 Prefix = getSectionPrefixForGlobal(Kind);
254 SmallString<128> Name(Prefix, Prefix+strlen(Prefix));
611 // Check whether the mangled name has the "Private" or "LinkerPrivate" prefix
    [all...]
  /external/llvm/lib/Option/
OptTable.cpp 24 // the beginning (thus options precede any other options which prefix
39 if (a == '\0') // A is a prefix of B.
41 if (b == '\0') // B is a prefix of A.
140 // Build prefix chars.
143 StringRef Prefix = I->getKey();
144 for (StringRef::const_iterator C = Prefix.begin(), CE = Prefix.end();
176 StringRef Prefix(*Pre);
177 if (Str.startswith(Prefix) && Str.substr(Prefix.size()).startswith(I->Name)
    [all...]

Completed in 513 milliseconds

1 2 3