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

12 3 4

  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 52 bool startswith(StringRef Prefix) const {
53 return Length >= Prefix.Length &&
54 memcmp(Data, Prefix.Data, Prefix.Length) == 0;
188 // RUN: c-index-test -test-annotate-tokens=%s:1:1:186:1 %s 2>&1 | FileCheck -check-prefix=CHECK-tokens %s
    [all...]
  /external/llvm/include/llvm/ADT/
StringRef.h 131 // Check the prefix for a mismatch.
196 /// startswith - Check if this string starts with the given \arg Prefix.
197 bool startswith(StringRef Prefix) const {
198 return Length >= Prefix.Length &&
199 compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 51 virtual TestResult doTest(std::vector<std::string> &Prefix,
61 ReduceMiscompilingPasses::doTest(std::vector<std::string> &Prefix,
65 // with JUST the kept passes, discard the prefix passes.
95 if (Prefix.empty()) return NoFailure;
97 // Next, see if the program is broken if we run the "prefix" passes first,
99 outs() << "Checking to see if '" << getPassesString(Prefix)
102 // If it is not broken with the kept passes, it's possible that the prefix
104 // WORKS after the prefix passes, but then fails if running the prefix AND
106 // prefix passes, then discard the prefix passes
    [all...]
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 146 // file+line+column number prefix is.
149 if (!Prefix.empty())
150 OS << Prefix << ": ";
InitPreprocessor.cpp 123 static void DefineFloatMacros(MacroBuilder &Builder, StringRef Prefix,
151 DefPrefix += Prefix;
512 if (const char *Prefix = TI.getUserLabelPrefix())
513 Builder.defineMacro("__USER_LABEL_PREFIX__", Prefix);
PrintPreprocessedOutput.cpp 467 const char *Prefix;
470 UnknownPragmaHandler(const char *prefix, PrintPPOutputPPCallbacks *callbacks)
471 : Prefix(prefix), Callbacks(callbacks) {}
478 Callbacks->OS.write(Prefix, strlen(Prefix));
  /external/llvm/lib/TableGen/
Main.cpp 45 cl::value_desc("directory"), cl::Prefix);
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 42 /// The prefix field from the record
43 uint8_t Prefix;
63 /// Inferred from the operands; indicates whether the L bit in the VEX prefix is set
138 /// mandatory OpSize prefix.
140 /// prefix. If it does, 32-bit register operands stay
143 /// prefix. If it does not, then 16-bit register
157 /// prefix. If it does not, then 16-bit immediate
  /external/llvm/lib/MC/
SubtargetFeature.cpp 62 std::string Prefix = IsEnabled ? "+" : "-";
63 Prefix += Feature;
64 return Prefix;
  /external/chromium/chrome/browser/autocomplete/
history_url_provider.h 231 // Returns the best prefix that begins |text|. "Best" means "greatest number
232 // of components". This may return NULL if no prefix begins |text|.
235 // prefix. This is useful when you need to figure out the innermost match
237 const history::Prefix* BestPrefix(const GURL& text,
  /external/chromium/sdch/open-vcdiff/packages/rpm/
rpm.spec 3 %define prefix /usr
17 Prefix: %prefix
41 make prefix=%prefix
45 make prefix=$RPM_BUILD_ROOT%{prefix} install
56 ## docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
58 %docdir %{prefix}/share/doc/%{NAME}-%{VERSION}
59 %{prefix}/share/doc/%{NAME}-%{VERSION}/
    [all...]
  /external/clang/include/clang/Driver/
Driver.h 76 /// A prefix directory used to emulated a limited subset of GCC's '-Bprefix'
377 /// as part of compilation; the file will have the given prefix and suffix.
380 std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
  /external/clang/tools/scan-build/
scan-build 145 # Strip the prefix '$Prog-' if we are dumping files to /tmp.
238 # UpdatePrefix - Compute the common prefix of files.
241 my $Prefix;
248 if (!defined $Prefix) {
249 $Prefix = $x;
253 chop $Prefix while (!($x =~ /^\Q$Prefix/));
257 return $Prefix;
505 # to update the common prefix directory.
674 my $prefix = GetPrefix()
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 194 /// @brief Prefix increment operator. Increments the APInt by one.
223 /// @brief Prefix decrement operator. Decrements the APInt by one.
    [all...]
  /external/valgrind/main/VEX/priv/
guest_amd64_toIR.c 82 Prefix"):
652 The top 16 bits of the prefix are 0x3141, just as a hacky way
653 to ensure it really is a valid prefix.
655 Things you can safely assume about a well-formed prefix:
662 typedef UInt Prefix;
671 #define PFX_LOCK (1<<7) /* bus LOCK prefix present (0xF0) */
672 #define PFX_F2 (1<<8) /* REP/REPE/REPZ prefix present (0xF2) */
673 #define PFX_F3 (1<<9) /* REPNE/REPNZ prefix present (0xF3) */
674 #define PFX_CS (1<<10) /* CS segment prefix present (0x2E) */
675 #define PFX_DS (1<<11) /* DS segment prefix present (0x3E) *
    [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp 333 /// hexadecimal-prefix hexadecimal-digit
335 /// hexadecimal-prefix: one of
530 /// a floating point number (01239.123e4). Eat the prefix, determining the
858 /// encoding-prefix " [s-char-sequence] "
859 /// encoding-prefix R raw-string
860 /// encoding-prefix:
    [all...]
  /external/llvm/tools/llvm-ld/
llvm-ld.cpp 65 static cl::list<std::string> LibPaths("L", cl::Prefix,
69 static cl::list<std::string> FrameworkPaths("F", cl::Prefix,
73 static cl::list<std::string> Libraries("l", cl::Prefix,
75 cl::value_desc("library prefix"));
  /external/chromium/net/url_request/
view_cache_helper_unittest.cc 107 std::string prefix, data; local
108 int rv = helper.GetContentsHTML(context, prefix, &data, &cb);
119 std::string prefix, data; local
121 int rv = helper.GetContentsHTML(context, prefix, &data, &cb);
160 TEST(ViewCacheHelper, Prefix) {
167 std::string prefix("prefix:");
169 int rv = helper.GetContentsHTML(context, prefix, &data, &cb);
174 EXPECT_NE(std::string::npos, data.find("<a href=\"prefix:first\">"));
175 EXPECT_NE(std::string::npos, data.find("<a href=\"prefix:second\">"))
    [all...]
  /external/llvm/lib/CodeGen/
Spiller.cpp 38 cl::Prefix,
MachineFunction.cpp 413 const char *Prefix = isLinkerPrivate ? MAI.getLinkerPrivateGlobalPrefix() :
417 << Prefix << "JTI" << getFunctionNumber() << '_' << JTI;
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 72 const char *Prefix = "__imp_";
73 Name.insert(Name.begin(), Prefix, Prefix+strlen(Prefix));
540 MCInst prefix; local
541 prefix.setOpcode(X86::DATA16_PREFIX);
542 OutStreamer.EmitInstruction(prefix);
569 MCInst prefix; local
570 prefix.setOpcode(X86::DATA16_PREFIX);
571 OutStreamer.EmitInstruction(prefix);
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 239 /// Returns true if Prefix is a prefix of longer. That means, Longer has a size
240 /// that is greater than or equal to the size of prefix, and each of the
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,
246 if (Prefix.size() > Longer.size())
248 for (unsigned i = 0, e = Prefix.size(); i != e; ++i)
249 if (Prefix[i] != Longer[i])
255 /// Checks if Indices, or a prefix of Indices, is in Set
    [all...]
  /external/llvm/tools/lli/
lli.cpp 68 cl::Prefix,
  /frameworks/compile/slang/
llvm-rs-link.cpp 63 AdditionalLibs("l", llvm::cl::Prefix,
  /libcore/luni/src/test/java/tests/org/w3c/dom/
Prefix.java 34 * The "getPrefix()" method for a Node returns the namespace prefix of the node,
47 public final class Prefix extends DOMTestCase {
79 String prefix; local
82 prefix = createdNode.getPrefix();
83 assertNull("throw_Null", prefix);
90 String prefix; local
96 prefix = textNode.getPrefix();
97 assertNull("textNodePrefix", prefix);
103 String prefix; local
108 prefix = testEmployee.getPrefix()
115 String prefix; local
    [all...]

Completed in 461 milliseconds

12 3 4