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

1 2

  /external/clang/include/clang/Frontend/
TextDiagnosticPrinter.h 36 /// A string to prefix to error messages.
37 std::string Prefix;
46 /// setPrefix - Set the diagnostic printer prefix string, which will be
47 /// printed at the start of any diagnostics. If empty, no prefix string is
49 void setPrefix(std::string Value) { Prefix = Value; }
  /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/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 134 // file+line+column number prefix is.
137 if (!Prefix.empty())
138 OS << Prefix << ": ";
PrintPreprocessedOutput.cpp 465 const char *Prefix;
468 UnknownPragmaHandler(const char *prefix, PrintPPOutputPPCallbacks *callbacks)
469 : Prefix(prefix), Callbacks(callbacks) {}
476 Callbacks->OS.write(Prefix, strlen(Prefix));
CompilerInvocation.cpp     [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLEntitySearch.h 50 Prefix,
  /external/llvm/lib/Target/
Mangler.cpp 103 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
119 const char *Prefix = MAI.getPrivateGlobalPrefix();
120 OutName.append(Prefix, Prefix+strlen(Prefix));
122 const char *Prefix = MAI.getLinkerPrivateGlobalPrefix();
123 OutName.append(Prefix, Prefix+strlen(Prefix));
126 const char *Prefix = MAI.getGlobalPrefix()
    [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);
224 DestPath += getString(B.Prefix);
  /external/giflib/
gif_lib_private.h 53 GifPrefixType Prefix[LZ_MAX_CODE + 1];
dgif_lib.c 55 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode);
701 GifPrefixType *Prefix;
719 Prefix = Private->Prefix;
721 Prefix[i] = NO_SUCH_CODE;
740 GifPrefixType *Prefix;
744 Prefix = Private->Prefix;
777 Prefix[j] = NO_SUCH_CODE;
784 * stream, otherwise trace to codes linked list until the prefix
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 42 /// The prefix field from the record
43 uint8_t Prefix;
65 /// Inferred from the operands; indicates whether the L bit in the VEX prefix is set
142 /// mandatory OpSize prefix.
144 /// prefix. If it does, 32-bit register operands stay
147 /// prefix. If it does not, then 16-bit register
161 /// 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/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),
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/AST/
MicrosoftMangle.cpp 40 void mangle(const NamedDecl *D, StringRef Prefix = "?");
157 StringRef Prefix) {
173 Out << Prefix;
    [all...]
ItaniumMangle.cpp 255 void mangle(const NamedDecl *D, StringRef Prefix = "_Z");
420 void CXXNameMangler::mangle(const NamedDecl *D, StringRef Prefix) {
426 // Adding the prefix can cause problems when one file has a "foo" and
444 Out << Prefix;
767 /// i.e. if there is more prefix "to the right".
822 // In all of these cases, we should have no prefix.
    [all...]
  /external/clang/tools/driver/
driver.cpp 276 // the function tries to identify a target as prefix. E.g.
278 // target prefix "x86_64-linux". If such a target prefix is found,
298 StringRef Prefix;
319 Prefix = ProgNameRef.slice(0, LastComponent);
329 if (Prefix.empty())
333 if (llvm::TargetRegistry::lookupTarget(Prefix, IgnoredError)) {
337 ArgVector.insert(it, SaveStringInSet(SavedStrings, Prefix));
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 72 StringRef Prefix = ".data.";
73 NameData.insert(NameData.begin(), Prefix.begin(), Prefix.end());
186 /// getSectionPrefixForGlobal - Return the section prefix name used by options
221 const char *Prefix;
222 Prefix = getSectionPrefixForGlobal(Kind);
224 SmallString<128> Name(Prefix, Prefix+strlen(Prefix));
559 // Check whether the mangled name has the "Private" or "LinkerPrivate" prefix
    [all...]
MachineFunction.cpp 418 const char *Prefix = isLinkerPrivate ? MAI.getLinkerPrivateGlobalPrefix() :
422 << Prefix << "JTI" << getFunctionNumber() << '_' << JTI;
MachineBasicBlock.cpp 51 const char *Prefix = Ctx.getAsmInfo().getPrivateGlobalPrefix();
52 return Ctx.GetOrCreateSymbol(Twine(Prefix) + "BB" +
    [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 72 const char *Prefix = "__imp_";
73 Name.insert(Name.begin(), Prefix, Prefix+strlen(Prefix));
557 MCInst prefix; local
558 prefix.setOpcode(X86::DATA16_PREFIX);
559 OutStreamer.EmitInstruction(prefix);
586 MCInst prefix; local
587 prefix.setOpcode(X86::DATA16_PREFIX);
588 OutStreamer.EmitInstruction(prefix);
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp     [all...]
  /external/llvm/lib/MC/
MCStreamer.cpp 296 StringRef Prefix = getContext().getAsmInfo().getPrivateGlobalPrefix();
297 if (LastSymbol && LastSymbol->getName().startswith(Prefix)) {
  /external/llvm/include/llvm/Support/
CommandLine.h 117 // Prefix - This option allows arguments that are otherwise unrecognized to be
118 // matched by options that are a prefix of the actual value. This is useful for
120 // '-L../../include' where -l or -L are the actual flags. When prefix is
132 Prefix = 0x02, // Can this option directly prefix its value?
    [all...]
  /external/llvm/lib/VMCore/
AsmWriter.cpp 89 static void PrintLLVMName(raw_ostream &OS, StringRef Name, PrefixType Prefix) {
91 switch (Prefix) {
    [all...]
  /external/clang/lib/Driver/
ToolChains.cpp     [all...]

Completed in 395 milliseconds

1 2