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

1 2 3 4

  /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;
history_url_provider.cc 32 using history::Prefix;
99 return GURL(); // User typing is no longer a prefix.
210 // for more results than we need, of every prefix type, in hopes this will
213 db->AutocompleteForPrefix(i->prefix + params->input.text(),
217 const Prefix* best_prefix = BestPrefix(j->url(), string16());
219 history_matches.push_back(HistoryMatch(*j, i->prefix.length(),
329 // This relies on match.destination_url being the non-prefix-trimmed version
332 const Prefix* best_prefix = BestPrefix(match.destination_url, input.text());
337 string16::npos : best_prefix->prefix.length() - offset;
445 prefixes.push_back(Prefix(ASCIIToUTF16("https://www."), 2))
    [all...]
  /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/llvm/utils/
NewNightlyTest.pl 58 # -llvmgccdir Next argument specifies the llvm-gcc install prefix.
123 # Calculate the date prefix...
283 my $Prefix = "$WebDir/$DATE";
284 my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
285 my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
286 my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
408 WriteFile "$Prefix-sentdata.txt", $sentdata;
417 system "$SUBMITAUX \"$Prefix-sentdata.txt\"";
526 my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
549 "| sort > $Prefix-$SubDir-Tests.txt"
    [all...]
  /external/llvm/lib/Target/
Mangler.cpp 100 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
116 const char *Prefix = MAI.getPrivateGlobalPrefix();
117 OutName.append(Prefix, Prefix+strlen(Prefix));
119 const char *Prefix = MAI.getLinkerPrivateGlobalPrefix();
120 OutName.append(Prefix, Prefix+strlen(Prefix));
123 const char *Prefix = MAI.getGlobalPrefix()
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLEntitySearch.cpp 57 return Prefix;
68 if (result == Prefix)
78 ASSERT(result == After || result == Prefix);
93 if (result == Prefix)
103 ASSERT(result == Before || result == Prefix);
122 if (m_first == m_last && compare(m_first, nextCharacter) != Prefix)
HTMLEntitySearch.h 50 Prefix,
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 57 llvm::PointerIntPair<NestedNameSpecifier *, 2, StoredSpecifierKind> Prefix;
65 /// specifier as encoded within the prefix.
89 NestedNameSpecifier() : Prefix(0, StoredIdentifier), Specifier(0) { }
94 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix),
106 /// \brief Builds a specifier combining a prefix and an identifier.
108 /// The prefix must be dependent, since nested name specifiers
112 NestedNameSpecifier *Prefix,
117 NestedNameSpecifier *Prefix,
122 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);
224 DestPath += getString(B.Prefix);
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 45 NestedNameSpecifier *Prefix, IdentifierInfo *II) {
47 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent");
50 Mockup.Prefix.setPointer(Prefix);
51 Mockup.Prefix.setInt(StoredIdentifier);
58 NestedNameSpecifier *Prefix, NamespaceDecl *NS) {
60 assert((!Prefix ||
61 (Prefix->getAsType() == 0 && Prefix->getAsIdentifier() == 0)) &
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
Intercept.cpp 143 std::string Prefix = std::string(Name.begin(), Name.end()-9);
144 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
146 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
  /external/llvm/lib/ExecutionEngine/MCJIT/
Intercept.cpp 143 std::string Prefix = std::string(Name.begin(), Name.end()-9);
144 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
146 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
  /external/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 37 bool isRefType(QualType RetTy, StringRef Prefix,
  /external/llvm/tools/bugpoint/
ListReducer.h 33 KeepPrefix, // The prefix alone satisfies the predicate
42 // the prefix anyway, it can.
44 virtual TestResult doTest(std::vector<ElTy> &Prefix,
116 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid);
119 switch (doTest(Prefix, Suffix, Error)) {
121 // The property still holds. We can just drop the prefix elements, and
130 // The predicate still holds, shorten the list to the prefix elements.
131 TheList.swap(Prefix);
CrashDebugger.cpp 62 ReducePassList::doTest(std::vector<std::string> &Prefix,
67 if (!Prefix.empty()) {
69 << getPassesString(Prefix) << ": ";
71 if (BD.runPasses(BD.getProgram(), Prefix, PfxOutput))
115 virtual TestResult doTest(std::vector<GlobalVariable*> &Prefix,
120 if (!Prefix.empty() && TestGlobalVariables(Prefix))
185 virtual TestResult doTest(std::vector<Function*> &Prefix,
190 if (!Prefix.empty() && TestFuncs(Prefix))
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 213 Prefix = byteFromRec(Rec, "Prefix");
297 (Prefix == X86Local::XS || Prefix == X86Local::T8XS))
300 (Prefix == X86Local::XD || Prefix == X86Local::T8XD))
303 (Prefix == X86Local::XS || Prefix == X86Local::T8XS))
306 (Prefix == X86Local::XD || Prefix == X86Local::T8XD)
    [all...]
  /external/chromium/testing/gtest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /external/clang/lib/Analysis/
CocoaConventions.cpp 64 bool cocoa::isRefType(QualType RetTy, StringRef Prefix,
69 if (TDName.startswith(Prefix) && TDName.endswith("Ref"))
83 // Does the name start with the prefix?
84 return Name.startswith(Prefix);
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /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/include/llvm/
Intrinsics.h 75 ID getIntrinsicForGCCBuiltin(const char *Prefix, const char *BuiltinName);
  /external/gtest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
244 #define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
245 bool gtest_##Prefix##_##CaseName = \
249 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 73 StringRef Prefix = ".data.";
74 NameData.insert(NameData.begin(), Prefix.begin(), Prefix.end());
187 /// 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));
479 // Check whether the mangled name has the "Private" or "LinkerPrivate" prefix
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
244 #define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
245 bool gtest_##Prefix##_##CaseName = \
249 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))

Completed in 537 milliseconds

1 2 3 4