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

1 2 3 4 5 6 7 8

  /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);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.h 30 StringRef Prefix;
34 DwarfStringPool(BumpPtrAllocator &A, AsmPrinter &Asm, StringRef Prefix)
35 : Pool(A), Prefix(Prefix), SectionSymbol(Asm.GetTempSymbol(Prefix)) {}
DwarfStringPool.cpp 20 StringRef Prefix, StringRef Str) {
25 Entry.first = Asm.GetTempSymbol(Prefix, Entry.second);
31 return getEntry(Asm, Pool, Prefix, Str).first;
35 return getEntry(Asm, Pool, Prefix, Str).second;
  /frameworks/base/core/tests/coretests/src/android/net/
RouteInfoTest.java 35 private IpPrefix Prefix(String prefix) {
36 return new IpPrefix(prefix);
51 assertEquals(Prefix("::/0"), r.getDestination());
56 assertEquals(Prefix("0.0.0.0/0"), r.getDestination());
61 r = new RouteInfo(Prefix("2001:db8:beef:cafe::/48"), null, "lo");
62 assertEquals(Prefix("2001:db8:beef::/48"), r.getDestination());
66 r = new RouteInfo(Prefix("192.0.2.5/24"), null);
67 assertEquals(Prefix("192.0.2.0/24"), r.getDestination());
87 r = new PatchedRouteInfo(Prefix("2001:db8:f00::ace:d00d/127"), null, "rmnet0")
    [all...]
  /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) {}
180 /// path starting with \p Prefix should be considered as naming a system
182 void AddSystemHeaderPrefix(StringRef Prefix, bool IsSystemHeader) {
183 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/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);
234 StringRef Prefix = getString(B.Prefix);
    [all...]
  /external/llvm/lib/Support/
SpecialCaseList.cpp 92 // Get our prefix and unparsed regexp.
94 StringRef Prefix = SplitLine.first;
107 if (Prefix == "global-init") {
108 Prefix = "global";
110 } else if (Prefix == "global-init-type") {
111 Prefix = "type";
113 } else if (Prefix == "global-init-src") {
114 Prefix = "src";
120 Entries[Prefix][Category].Strings.insert(Regexp);
139 // Add this regexp into the proper group by its prefix
    [all...]
  /external/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 27 bool isRefType(QualType RetTy, StringRef Prefix,
  /external/clang/include/clang/StaticAnalyzer/Core/
PathDiagnosticConsumers.h 33 const std::string &Prefix,\
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntitySearch.cpp 53 return Prefix;
64 if (result == Prefix)
74 ASSERT(result == After || result == Prefix);
89 if (result == Prefix)
99 ASSERT(result == Before || result == Prefix);
118 if (m_first == m_last && compare(m_first, nextCharacter) != Prefix)
HTMLEntitySearch.h 49 Prefix,
  /external/clang/lib/Format/
BreakableToken.cpp 138 return StartColumn + Prefix.size() + Postfix.size() +
140 StartColumn + Prefix.size(),
146 StringRef Prefix, StringRef Postfix, bool InPPDirective,
149 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix) {
152 Prefix.size(), Tok.TokenText.size() - Prefix.size() - Postfix.size());
157 StringRef Prefix, StringRef Postfix, bool InPPDirective,
159 : BreakableSingleLineToken(Tok, IndentLevel, StartColumn, Prefix, Postfix,
166 StartColumn + Prefix.size() + Postfix.size()
    [all...]
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 59 llvm::PointerIntPair<NestedNameSpecifier *, 2, StoredSpecifierKind> Prefix;
67 /// specifier as encoded within the prefix.
92 : Prefix(nullptr, StoredIdentifier), Specifier(nullptr) {}
97 : 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/
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() == nullptr &
    [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/lzma/CPP/Common/
Wildcard.h 61 UString Prefix;
63 CPair(const UString &prefix): Prefix(prefix) { };
68 int FindPrefix(const UString &prefix) const;
72 { return (Pairs.Size() == 1 && Pairs.Front().Prefix.IsEmpty()); }
  /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) << ": ";
70 if (BD.runPasses(BD.getProgram(), Prefix, PrefixOutput))
113 TestResult doTest(std::vector<GlobalVariable*> &Prefix,
118 if (!Prefix.empty() && TestGlobalVariables(Prefix))
183 TestResult doTest(std::vector<Function*> &Prefix,
188 if (!Prefix.empty() && TestFuncs(Prefix))
    [all...]
  /external/chromium_org/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/chromium_org/third_party/mesa/src/src/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/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/llvm/include/llvm/Option/
Option.h 89 /// \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.
194 /// \param ArgSize The number of bytes taken up by the matched Option prefix
  /external/llvm/lib/IR/
Mangler.cpp 38 char Prefix = DL.getGlobalPrefix();
39 if (Prefix != '\0')
40 OS << 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
253 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
254 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
258 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))

Completed in 695 milliseconds

1 2 3 4 5 6 7 8