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

1 2 3 4 5

  /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);
  /frameworks/base/core/tests/coretests/src/android/net/
RouteInfoTest.java 35 private LinkAddress Prefix(String prefix) {
36 String[] parts = prefix.split("/");
52 assertEquals(Prefix("::/0"), r.getDestination());
57 assertEquals(Prefix("0.0.0.0/0"), r.getDestination());
62 r = new RouteInfo(Prefix("2001:db8:beef:cafe::/48"), null, "lo");
63 assertEquals(Prefix("2001:db8:beef::/48"), r.getDestination());
67 r = new RouteInfo(Prefix("192.0.2.5/24"), null);
68 assertEquals(Prefix("192.0.2.0/24"), r.getDestination());
86 r = new PatchedRouteInfo(Prefix("2001:db8:f00::ace:d00d/127"), null, "rmnet0")
    [all...]
  /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/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) {}
130 /// path starting with \p Prefix should be considered as naming a system
132 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) {
133 SystemHeaderPrefixes.push_back(SystemHeaderPrefix(Prefix, IsSystemHeader));
  /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/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 27 bool isRefType(QualType RetTy, StringRef 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/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 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),
108 /// \brief Builds a specifier combining a prefix and an identifier.
110 /// The prefix must be dependent, since nested name specifiers
114 NestedNameSpecifier *Prefix,
119 NestedNameSpecifier *Prefix,
124 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 47 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,
63 assert((!Prefix ||
64 (Prefix->getAsType() == 0 && Prefix->getAsIdentifier() == 0)) &
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 222 Prefix = byteFromRec(Rec, "Prefix");
311 (Prefix == X86Local::XS || Prefix == X86Local::T8XS))
313 else if (HasVEX_LPrefix && (Prefix == X86Local::XD ||
314 Prefix == X86Local::T8XD ||
315 Prefix == X86Local::TAXD))
318 (Prefix == X86Local::XS || Prefix == X86Local::T8XS))
320 else if (HasVEX_WPrefix && (Prefix == X86Local::XD |
    [all...]
  /external/clang/lib/Analysis/
CocoaConventions.cpp 25 bool cocoa::isRefType(QualType RetTy, StringRef Prefix,
30 if (TDName.startswith(Prefix) && TDName.endswith("Ref"))
46 // Does the name start with the prefix?
47 return Name.startswith(Prefix);
  /external/llvm/include/llvm/Option/
Option.h 88 /// \brief Get the name of this option without any prefix.
106 /// \brief Get the default prefix for this option.
108 const char *Prefix = *Info->Prefixes;
109 return Prefix ? Prefix : StringRef();
112 /// \brief Get the name of this option with the default prefix.
182 /// \parm ArgSize The number of bytes taken up by the matched Option prefix
  /external/llvm/lib/Transforms/Instrumentation/
BlackList.cpp 51 // Get our prefix and unparsed regexp.
53 StringRef Prefix = SplitLine.first;
74 // Add this regexp into the proper group by its prefix.
75 if (!Regexps[Prefix].empty())
76 Regexps[Prefix] += "|";
77 Regexps[Prefix] += Regexp;
  /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/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/include/clang/Driver/
Option.h 99 /// \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.
193 /// \parm ArgSize The number of bytes taken up by the matched Option prefix
  /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
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/libvpx/libvpx/third_party/googletest/src/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/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/clang/lib/Frontend/
Warnings.cpp 37 StringRef Prefix, StringRef Opt,
43 << (Prefix.str() += Opt) << (Prefix.str() += Suggestion);
47 << (Prefix.str() += Opt);
  /external/compiler-rt/lib/ubsan/
ubsan_type_hash.cc 199 VtablePrefix *Prefix = *VptrPtr - 1;
200 if (Prefix->Offset > 0 || !Prefix->TypeInfo)
203 return Prefix;

Completed in 522 milliseconds

1 2 3 4 5