Home
last modified time | relevance | path

Searched refs:Prefix (Results 1 – 25 of 117) sorted by relevance

12345

/external/clang/lib/AST/
DNestedNameSpecifier.cpp45 NestedNameSpecifier *Prefix, IdentifierInfo *II) { in Create() argument
47 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent"); in Create()
50 Mockup.Prefix.setPointer(Prefix); in Create()
51 Mockup.Prefix.setInt(StoredIdentifier); in Create()
58 NestedNameSpecifier *Prefix, NamespaceDecl *NS) { in Create() argument
60 assert((!Prefix || in Create()
61 (Prefix->getAsType() == 0 && Prefix->getAsIdentifier() == 0)) && in Create()
64 Mockup.Prefix.setPointer(Prefix); in Create()
65 Mockup.Prefix.setInt(StoredNamespaceOrAlias); in Create()
72 NestedNameSpecifier *Prefix, in Create() argument
[all …]
/external/llvm/lib/Target/
DMangler.cpp119 const char *Prefix = MAI.getPrivateGlobalPrefix(); in getNameWithPrefix() local
120 OutName.append(Prefix, Prefix+strlen(Prefix)); in getNameWithPrefix()
122 const char *Prefix = MAI.getLinkerPrivateGlobalPrefix(); in getNameWithPrefix() local
123 OutName.append(Prefix, Prefix+strlen(Prefix)); in getNameWithPrefix()
126 const char *Prefix = MAI.getGlobalPrefix(); in getNameWithPrefix() local
127 if (Prefix[0] == 0) in getNameWithPrefix()
129 else if (Prefix[1] == 0) in getNameWithPrefix()
130 OutName.push_back(Prefix[0]); // Common, one character prefix. in getNameWithPrefix()
132 OutName.append(Prefix, Prefix+strlen(Prefix)); // Arbitrary length prefix. in getNameWithPrefix()
/external/llvm/test/TableGen/
Ddefmclass.td4 class XD { bits<4> Prefix = 11; }
5 // CHECK: Prefix = { 1, 1, 0, 0 };
6 class XS { bits<4> Prefix = 12; }
12 bits<4> Prefix = 0;
18 int val = !if(!eq(Prefix, xd.Prefix), 7, 21);
32 // CHECK: Prefix = { 1, 1, 0, 0 };
33 // CHECK: Prefix = { 1, 1, 0, 0 };
/external/clang/include/clang/AST/
DNestedNameSpecifier.h59 llvm::PointerIntPair<NestedNameSpecifier *, 2, StoredSpecifierKind> Prefix; variable
91 NestedNameSpecifier() : Prefix(0, StoredIdentifier), Specifier(0) { } in NestedNameSpecifier()
96 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix), in NestedNameSpecifier()
115 NestedNameSpecifier *Prefix,
120 NestedNameSpecifier *Prefix,
125 NestedNameSpecifier *Prefix,
130 NestedNameSpecifier *Prefix,
153 NestedNameSpecifier *getPrefix() const { return Prefix.getPointer(); } in getPrefix()
161 if (Prefix.getInt() == StoredIdentifier) in getAsIdentifier()
177 if (Prefix.getInt() == StoredTypeSpec || in getAsType()
[all …]
/external/llvm/utils/TableGen/
DX86RecognizableInstr.cpp222 Prefix = byteFromRec(Rec, "Prefix"); in RecognizableInstr()
311 (Prefix == X86Local::XS || Prefix == X86Local::T8XS)) in insnContext()
313 else if (HasVEX_LPrefix && (Prefix == X86Local::XD || in insnContext()
314 Prefix == X86Local::T8XD || in insnContext()
315 Prefix == X86Local::TAXD)) in insnContext()
318 (Prefix == X86Local::XS || Prefix == X86Local::T8XS)) in insnContext()
320 else if (HasVEX_WPrefix && (Prefix == X86Local::XD || in insnContext()
321 Prefix == X86Local::T8XD || in insnContext()
322 Prefix == X86Local::TAXD)) in insnContext()
328 else if (Prefix == X86Local::XD || Prefix == X86Local::T8XD || in insnContext()
[all …]
/external/clang/lib/Lex/
DHeaderMap.cpp40 uint32_t Prefix; // Offset (into strings) of value prefix. member
148 Result.Prefix = 0; in getBucket()
155 Result.Prefix = getEndianAdjustedWord(BucketPtr->Prefix); in getBucket()
194 const char *Prefix = getString(B.Prefix); in dump() local
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix); in dump()
224 DestPath += getString(B.Prefix); in LookupFile()
/external/webkit/Source/WebCore/html/parser/
DHTMLEntitySearch.cpp57 return Prefix; in compare()
68 if (result == Prefix) in findFirst()
78 ASSERT(result == After || result == Prefix); in findFirst()
93 if (result == Prefix) in findLast()
103 ASSERT(result == Before || result == Prefix); in findLast()
122 if (m_first == m_last && compare(m_first, nextCharacter) != Prefix) in advance()
/external/llvm/tools/bugpoint/
DCrashDebugger.cpp62 ReducePassList::doTest(std::vector<std::string> &Prefix, in doTest() argument
67 if (!Prefix.empty()) { in doTest()
69 << getPassesString(Prefix) << ": "; in doTest()
71 if (BD.runPasses(BD.getProgram(), Prefix, PfxOutput)) in doTest()
115 virtual TestResult doTest(std::vector<GlobalVariable*> &Prefix, in doTest() argument
120 if (!Prefix.empty() && TestGlobalVariables(Prefix)) in doTest()
185 virtual TestResult doTest(std::vector<Function*> &Prefix, in doTest() argument
190 if (!Prefix.empty() && TestFuncs(Prefix)) in doTest()
195 bool TestFuncs(std::vector<Function*> &Prefix);
258 virtual TestResult doTest(std::vector<const BasicBlock*> &Prefix, in doTest() argument
[all …]
DListReducer.h44 virtual TestResult doTest(std::vector<ElTy> &Prefix,
116 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid); in reduceList()
119 switch (doTest(Prefix, Suffix, Error)) { in reduceList()
131 TheList.swap(Prefix); in reduceList()
DMiscompilation.cpp51 virtual TestResult doTest(std::vector<std::string> &Prefix,
61 ReduceMiscompilingPasses::doTest(std::vector<std::string> &Prefix, in doTest() argument
95 if (Prefix.empty()) return NoFailure; in doTest()
99 outs() << "Checking to see if '" << getPassesString(Prefix) in doTest()
108 if (BD.runPasses(BD.getProgram(), Prefix, BitcodeResult, false/*delete*/, in doTest()
112 BD.setPassesToRun(Prefix); in doTest()
146 << getPassesString(Prefix) << "' passes: "; in doTest()
185 virtual TestResult doTest(std::vector<Function*> &Prefix, in doTest() argument
195 if (!Prefix.empty()) { in doTest()
196 bool Ret = TestFuncs(Prefix, Error); in doTest()
[all …]
/external/chromium/chrome/browser/autocomplete/
Dhistory_provider_util.h52 struct Prefix { struct
53 Prefix(const string16& prefix, int num_components) in Prefix() function
66 typedef std::vector<Prefix> Prefixes; argument
Dhistory_url_provider.cc32 using history::Prefix;
217 const Prefix* best_prefix = BestPrefix(j->url(), string16()); in DoAutocomplete()
332 const Prefix* best_prefix = BestPrefix(match.destination_url, input.text()); in SuggestExactInput()
445 prefixes.push_back(Prefix(ASCIIToUTF16("https://www."), 2)); in GetPrefixes()
446 prefixes.push_back(Prefix(ASCIIToUTF16("http://www."), 2)); in GetPrefixes()
447 prefixes.push_back(Prefix(ASCIIToUTF16("ftp://ftp."), 2)); in GetPrefixes()
448 prefixes.push_back(Prefix(ASCIIToUTF16("ftp://www."), 2)); in GetPrefixes()
449 prefixes.push_back(Prefix(ASCIIToUTF16("https://"), 1)); in GetPrefixes()
450 prefixes.push_back(Prefix(ASCIIToUTF16("http://"), 1)); in GetPrefixes()
451 prefixes.push_back(Prefix(ASCIIToUTF16("ftp://"), 1)); in GetPrefixes()
[all …]
/external/giflib/
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[CrntCode] == NO_SUCH_CODE) {
802 Stack[StackPtr++] = DGifGetPrefixChar(Prefix,
821 CrntPrefix = Prefix[CrntPrefix];
[all …]
/external/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp72 StringRef Prefix = ".data."; in emitPersonalityValue() local
73 NameData.insert(NameData.begin(), Prefix.begin(), Prefix.end()); in emitPersonalityValue()
221 const char *Prefix; in SelectSectionForGlobal() local
222 Prefix = getSectionPrefixForGlobal(Kind); in SelectSectionForGlobal()
224 SmallString<128> Name(Prefix, Prefix+strlen(Prefix)); in SelectSectionForGlobal()
695 const char *Prefix = getCOFFSectionPrefixForUniqueGlobal(Kind); in SelectSectionForGlobal() local
696 SmallString<128> Name(Prefix, Prefix+strlen(Prefix)); in SelectSectionForGlobal()
/external/clang/lib/Frontend/
DWarnings.cpp37 StringRef Prefix, StringRef Opt, in EmitUnknownDiagWarning() argument
43 << (Prefix.str() += Opt) << (Prefix.str() += Suggestion); in EmitUnknownDiagWarning()
47 << (Prefix.str() += Opt); in EmitUnknownDiagWarning()
/external/clang/lib/Analysis/
DCocoaConventions.cpp23 bool cocoa::isRefType(QualType RetTy, StringRef Prefix, in isRefType() argument
28 if (TDName.startswith(Prefix) && TDName.endswith("Ref")) in isRefType()
45 return Name.startswith(Prefix); in isRefType()
/external/llvm/lib/Target/X86/
DX86InstrFormats.td95 // Prefix byte classes which are used to indicate to the ad-hoc machine code
103 class TB { bits<5> Prefix = 1; }
104 class REP { bits<5> Prefix = 2; }
105 class D8 { bits<5> Prefix = 3; }
106 class D9 { bits<5> Prefix = 4; }
107 class DA { bits<5> Prefix = 5; }
108 class DB { bits<5> Prefix = 6; }
109 class DC { bits<5> Prefix = 7; }
110 class DD { bits<5> Prefix = 8; }
111 class DE { bits<5> Prefix = 9; }
[all …]
/external/clang/include/clang/Frontend/
DTextDiagnosticPrinter.h37 std::string Prefix; variable
49 void setPrefix(std::string Value) { Prefix = Value; } in setPrefix()
/external/protobuf/gtest/include/gtest/
Dgtest-typed-test.h244 #define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ argument
245 bool gtest_##Prefix##_##CaseName = \
249 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
/external/llvm/utils/unittest/googletest/include/gtest/
Dgtest-typed-test.h250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ argument
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
/external/gtest/include/gtest/
Dgtest-typed-test.h250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ argument
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
/external/chromium/testing/gtest/include/gtest/
Dgtest-typed-test.h250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ argument
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
/external/clang/test/Index/
Drecursive-cxx-member-calls.cpp52 bool startswith(StringRef Prefix) const { in startswith()
53 return Length >= Prefix.Length && in startswith()
54 memcmp(Data, Prefix.Data, Prefix.Length) == 0; in startswith()
/external/clang/tools/driver/
Ddriver.cpp298 StringRef Prefix; in ParseProgName() local
319 Prefix = ProgNameRef.slice(0, LastComponent); in ParseProgName()
329 if (Prefix.empty()) in ParseProgName()
333 if (llvm::TargetRegistry::lookupTarget(Prefix, IgnoredError)) { in ParseProgName()
337 ArgVector.insert(it, SaveStringInSet(SavedStrings, Prefix)); in ParseProgName()
/external/libpng/scripts/
Dmakefile.acorn32 <Prefix$Dir>.pngtest
33 @remove <Prefix$Dir>.pngtest

12345