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

1 2 3

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.h 30 StringRef Prefix;
34 DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm, StringRef Prefix)
35 : Pool(A), Prefix(Prefix), SectionSymbol(Asm.GetTempSymbol(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 = 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_org/third_party/WebKit/Source/core/html/parser/
HTMLEntitySearch.h 49 Prefix,
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 128 // file+line+column number prefix is.
131 if (!Prefix.empty())
132 OS << Prefix << ": ";
InitPreprocessor.cpp 131 static void DefineFloatMacros(MacroBuilder &Builder, StringRef Prefix,
159 DefPrefix += Prefix;
226 const char *Prefix = IsSigned ? "__INT" : "__UINT";
228 DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
232 Builder.defineMacro(Prefix + Twine(TypeWidth) + "_C_SUFFIX__", ConstSuffix);
247 const char *Prefix = IsSigned ? "__INT" : "__UINT";
248 DefineTypeSize(Prefix + Twine(TypeWidth) + "_MAX__", Ty, TI, Builder);
258 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST";
259 DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
260 DefineTypeSize(Prefix + Twine(TypeWidth) + "_MAX__", Ty, TI, Builder)
    [all...]
  /external/llvm/lib/IR/
Mangler.cpp 38 char Prefix = DL.getGlobalPrefix();
39 if (Prefix != '\0')
40 OS << Prefix;
  /frameworks/compile/mclinker/tools/mcld/lib/
TripleOptions.cpp 42 llvm::cl::Prefix);
63 llvm::StringRef Prefix;
73 llvm::StringRef Prefix = ProgNameRef.slice(0, LastComponent);
75 if (!mcld::TargetRegistry::lookupTarget(Prefix, IgnoredError))
77 return Prefix.str();
137 // 2. Use the triple from the program name prefix.
  /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/llvm/lib/Support/
SpecialCaseList.cpp 92 // Get our prefix and unparsed regexp.
94 StringRef Prefix = SplitLine.first;
107 if (Prefix == "global-init") {
108 Prefix = "global";
110 } else if (Prefix == "global-init-type") {
111 Prefix = "type";
113 } else if (Prefix == "global-init-src") {
114 Prefix = "src";
120 Entries[Prefix][Category].Strings.insert(Regexp);
139 // Add this regexp into the proper group by its prefix
    [all...]
  /libcore/luni/src/main/native/
java_util_jar_StrictJarFile.cpp 75 IterationHandle(const char* prefix) :
76 cookie_(NULL), prefix_(strdup(prefix)) {
83 const char* Prefix() const {
98 jstring prefix) {
99 ScopedUtfChars prefixChars(env, prefix);
111 handle->CookieAddress(), handle->Prefix());
  /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) {}
180 /// path starting with \p Prefix should be considered as naming a system
182 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) {
183 SystemHeaderPrefixes.push_back(SystemHeaderPrefix(Prefix, IsSystemHeader));
  /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.
BreakableToken.cpp 138 return StartColumn + Prefix.size() + Postfix.size() +
140 StartColumn + Prefix.size(),
146 StringRef Prefix, StringRef Postfix, bool InPPDirective,
149 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix) {
152 Prefix.size(), Tok.TokenText.size() - Prefix.size() - Postfix.size());
157 StringRef Prefix, StringRef Postfix, bool InPPDirective,
159 : BreakableSingleLineToken(Tok, IndentLevel, StartColumn, Prefix, Postfix,
166 StartColumn + Prefix.size() + Postfix.size()
    [all...]
  /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...]
  /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.
92 : Prefix(nullptr, StoredIdentifier), Specifier(nullptr) {}
97 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix),
109 /// \brief Builds a specifier combining a prefix and an identifier.
111 /// The prefix must be dependent, since nested name specifiers
115 NestedNameSpecifier *Prefix,
120 NestedNameSpecifier *Prefix,
125 NestedNameSpecifier *Prefix,
    [all...]
  /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);
234 StringRef Prefix = getString(B.Prefix);
    [all...]
  /external/clang/tools/driver/
driver.cpp 209 // the function tries to identify a target as prefix. E.g.
211 // target prefix "x86_64-linux". If such a target prefix is found,
237 StringRef Prefix;
259 Prefix = ProgNameRef.slice(0, LastComponent);
269 if (Prefix.empty())
273 if (llvm::TargetRegistry::lookupTarget(Prefix, IgnoredError)) {
279 SaveStringInSet(SavedStrings, Prefix) };
363 // use clang-cl.exe as the prefix to avoid confusion between clang and MSVC.
  /external/llvm/include/llvm/Option/
Option.h 89 /// \brief Get the name of this option without any prefix.
117 /// \brief Get the default prefix for this option.
119 const char *Prefix = *Info->Prefixes;
120 return Prefix ? Prefix : StringRef();
123 /// \brief Get the name of this option with the default prefix.
194 /// \param ArgSize The number of bytes taken up by the matched Option prefix
  /external/llvm/lib/Option/
OptTable.cpp 28 // beginning (thus options precede any other options which prefix them).
40 if (a == '\0') // A is a prefix of B.
42 if (b == '\0') // B is a prefix of A.
145 // Build prefix chars.
148 StringRef Prefix = I->getKey();
149 for (StringRef::const_iterator C = Prefix.begin(), CE = Prefix.end();
182 StringRef Prefix(*Pre);
183 if (Str.startswith(Prefix)) {
184 StringRef Rest = Str.substr(Prefix.size())
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Update.h 18 UString Prefix; // path(folder) prefix including slash
33 SplitPathToParts(path, Prefix, Name);
54 return Prefix + Name;

Completed in 1077 milliseconds

1 2 3