Searched defs:Prefix (Results 1 - 25 of 45) sorted by relevance

12

/external/clang/include/clang/Frontend/
H A DTextDiagnosticPrinter.h35 std::string Prefix; member in class:clang::TextDiagnosticPrinter
47 void setPrefix(std::string Value) { Prefix = Value; }
H A DHeaderSearchOptions.h74 std::string Prefix; member in struct:clang::HeaderSearchOptions::SystemHeaderPrefix
80 SystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) argument
81 : Prefix(Prefix), IsSystemHeader(IsSystemHeader) {}
137 /// path starting with \arg Prefix should be considered as naming a system
139 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) { argument
140 SystemHeaderPrefixes.push_back(SystemHeaderPrefix(Prefix, IsSystemHeader));
/external/llvm/lib/TableGen/
H A DTableGenBackend.cpp19 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill, argument
22 OS << Prefix; local
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_provider_util.h52 struct Prefix { struct in namespace:history
53 Prefix(const string16& prefix, int num_components) function in struct:history::Prefix
66 typedef std::vector<Prefix> Prefixes;
/external/clang/lib/Frontend/
H A DWarnings.cpp37 StringRef Prefix, StringRef Opt,
43 << (Prefix.str() += Opt) << (Prefix.str() += Suggestion);
47 << (Prefix.str() += Opt);
36 EmitUnknownDiagWarning(DiagnosticsEngine &Diags, StringRef Prefix, StringRef Opt, bool isPositive) argument
H A DTextDiagnosticPrinter.cpp127 if (!Prefix.empty())
128 OS << Prefix << ": "; local
H A DInitHeaderSearch.cpp63 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) { argument
64 SystemHeaderPrefixes.push_back(std::make_pair(Prefix, IsSystemHeader));
675 Init.AddSystemHeaderPrefix(HSOpts.SystemHeaderPrefixes[i].Prefix,
H A DInitPreprocessor.cpp104 static void DefineFloatMacros(MacroBuilder &Builder, StringRef Prefix, argument
132 DefPrefix += Prefix;
545 if (const char *Prefix = TI.getUserLabelPrefix())
546 Builder.defineMacro("__USER_LABEL_PREFIX__", Prefix);
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp25 bool cocoa::isRefType(QualType RetTy, StringRef Prefix, argument
30 if (TDName.startswith(Prefix) && TDName.endswith("Ref"))
47 return Name.startswith(Prefix);
/external/llvm/lib/Transforms/Instrumentation/
H A DBlackList.cpp50 StringRef Prefix = SplitLine.first; local
68 if (Regexps[Prefix].size())
69 Regexps[Prefix] += "|";
70 Regexps[Prefix] += Regexp;
/external/webkit/Source/WebCore/html/parser/
H A DHTMLEntitySearch.h50 Prefix, enumerator in enum:WebCore::HTMLEntitySearch::CompareResult
/external/giflib/
H A Dgif_lib_private.h53 GifPrefixType Prefix[LZ_MAX_CODE + 1]; member in struct:GifFilePrivateType
H A Ddgif_lib.c55 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode);
701 GifPrefixType *Prefix; local
719 Prefix = Private->Prefix;
721 Prefix[i] = NO_SUCH_CODE;
740 GifPrefixType *Prefix; local
744 Prefix = Private->Prefix;
777 Prefix[j] = NO_SUCH_CODE;
794 if (Prefix[CrntCod
866 DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode) argument
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp79 void DwarfAccelTable::FinalizeTable(AsmPrinter *Asm, const char *Prefix) { argument
105 Data[i]->Sym = Asm->GetTempSymbol(Prefix, i);
/external/llvm/lib/Target/
H A DMangler.cpp119 const char *Prefix = MAI.getPrivateGlobalPrefix(); local
120 OutName.append(Prefix, Prefix+strlen(Prefix));
122 const char *Prefix = MAI.getLinkerPrivateGlobalPrefix(); local
123 OutName.append(Prefix, Prefix+strlen(Prefix));
126 const char *Prefix = MAI.getGlobalPrefix(); local
127 if (Prefix[
[all...]
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.h43 uint8_t Prefix; member in class:llvm::X86Disassembler::RecognizableInstr
/external/clang/include/clang/AST/
H A DNestedNameSpecifier.h59 llvm::PointerIntPair<NestedNameSpecifier *, 2, StoredSpecifierKind> Prefix; member in class:clang::NestedNameSpecifier
91 NestedNameSpecifier() : Prefix(0, StoredIdentifier), Specifier(0) { }
96 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix),
115 NestedNameSpecifier *Prefix,
120 NestedNameSpecifier *Prefix,
125 NestedNameSpecifier *Prefix,
130 NestedNameSpecifier *Prefix,
153 NestedNameSpecifier *getPrefix() const { return Prefix.getPointer(); }
161 if (Prefix
[all...]
/external/clang/tools/driver/
H A Ddriver.cpp298 StringRef Prefix; local
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/
H A DTargetLoweringObjectFileImpl.cpp72 StringRef Prefix = ".data."; local
73 NameData.insert(NameData.begin(), Prefix.begin(), Prefix.end());
222 const char *Prefix; local
223 Prefix = getSectionPrefixForGlobal(Kind);
225 SmallString<128> Name(Prefix, Prefix+strlen(Prefix));
729 const char *Prefix = getCOFFSectionPrefixForUniqueGlobal(Kind); local
730 SmallString<128> Name(Prefix, Prefi
[all...]
H A DMachineBasicBlock.cpp51 const char *Prefix = Ctx.getAsmInfo().getPrivateGlobalPrefix(); local
52 return Ctx.GetOrCreateSymbol(Twine(Prefix) + "BB" +
/external/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp72 const char *Prefix = "__imp_"; local
73 Name.insert(Name.begin(), Prefix, Prefix+strlen(Prefix));
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp62 ReducePassList::doTest(std::vector<std::string> &Prefix, argument
67 if (!Prefix.empty()) {
69 << getPassesString(Prefix) << ": ";
71 if (BD.runPasses(BD.getProgram(), Prefix, PfxOutput))
115 virtual TestResult doTest(std::vector<GlobalVariable*> &Prefix, argument
120 if (!Prefix.empty() && TestGlobalVariables(Prefix))
185 virtual TestResult doTest(std::vector<Function*> &Prefix, argument
190 if (!Prefix.empty() && TestFuncs(Prefix))
258 doTest(std::vector<const BasicBlock*> &Prefix, std::vector<const BasicBlock*> &Kept, std::string &Error) argument
367 doTest(std::vector<const Instruction*> &Prefix, std::vector<const Instruction*> &Kept, std::string &Error) argument
[all...]
/external/clang/lib/Lex/
H A DHeaderMap.cpp40 uint32_t Prefix; // Offset (into strings) of value prefix. member in struct:clang::HMapBucket
148 Result.Prefix = 0;
155 Result.Prefix = getEndianAdjustedWord(BucketPtr->Prefix);
194 const char *Prefix = getString(B.Prefix); local
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
224 DestPath += getString(B.Prefix);
/external/clang/lib/AST/
H A DNestedNameSpecifier.cpp47 NestedNameSpecifier *Prefix, IdentifierInfo *II) {
49 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent");
52 Mockup.Prefix.setPointer(Prefix);
53 Mockup.Prefix.setInt(StoredIdentifier);
60 NestedNameSpecifier *Prefix, NamespaceDecl *NS) {
62 assert((!Prefix ||
63 (Prefix
46 Create(const ASTContext &Context, NestedNameSpecifier *Prefix, IdentifierInfo *II) argument
59 Create(const ASTContext &Context, NestedNameSpecifier *Prefix, NamespaceDecl *NS) argument
73 Create(const ASTContext &Context, NestedNameSpecifier *Prefix, NamespaceAliasDecl *Alias) argument
88 Create(const ASTContext &Context, NestedNameSpecifier *Prefix, bool Template, const Type *T) argument
[all...]
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp239 /// Returns true if Prefix is a prefix of longer. That means, Longer has a size
241 /// elements in Prefix is the same as the corresponding elements in Longer.
243 /// This means it also returns true when Prefix and Longer are equal!
244 static bool IsPrefix(const ArgPromotion::IndicesVector &Prefix, argument
246 if (Prefix.size() > Longer.size())
248 return std::equal(Prefix.begin(), Prefix.end(), Longer.begin());

Completed in 516 milliseconds

12