/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/utils/TableGen/ |
X86RecognizableInstr.cpp | 210 Prefix = byteFromRec(Rec, "Prefix"); 285 else if (HasVEX_LPrefix && Prefix == X86Local::XS) 287 else if (HasVEX_LPrefix && Prefix == X86Local::XD) 289 else if (HasVEX_WPrefix && Prefix == X86Local::XS) 291 else if (HasVEX_WPrefix && Prefix == X86Local::XD) 297 else if (Prefix == X86Local::XD) 299 else if (Prefix == X86Local::XS) 308 else if (HasREX_WPrefix && Prefix == X86Local::XS) 310 else if (HasREX_WPrefix && Prefix == X86Local::XD [all...] |
X86RecognizableInstr.h | 42 /// The prefix field from the record 43 uint8_t Prefix; 61 /// Inferred from the operands; indicates whether the L bit in the VEX prefix is set 132 /// mandatory OpSize prefix. 134 /// prefix. If it does, 32-bit register operands stay 137 /// prefix. If it does not, then 16-bit register 151 /// prefix. If it does not, then 16-bit immediate
|
/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/llvm/lib/MC/ |
SubtargetFeature.cpp | 61 std::string Prefix = IsEnabled ? "+" : "-"; 62 Prefix += Feature; 63 return Prefix;
|
MCStreamer.cpp | 175 StringRef Prefix = getContext().getAsmInfo().getPrivateGlobalPrefix(); 176 if (!Symbol->getName().startswith(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/lib/Frontend/ |
PrintPreprocessedOutput.cpp | 465 const char *Prefix; 468 UnknownPragmaHandler(const char *prefix, PrintPPOutputPPCallbacks *callbacks) 469 : Prefix(prefix), Callbacks(callbacks) {} 476 Callbacks->OS.write(Prefix, strlen(Prefix));
|
InitPreprocessor.cpp | 123 static void DefineFloatMacros(MacroBuilder &Builder, llvm::StringRef Prefix, 151 DefPrefix += Prefix; 579 if (const char *Prefix = TI.getUserLabelPrefix()) 580 Builder.defineMacro("__USER_LABEL_PREFIX__", Prefix);
|
/external/llvm/tools/lli/ |
lli.cpp | 68 cl::Prefix,
|
/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 | 192 /// @brief Prefix increment operator. Increments the APInt by one. 221 /// @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/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,
|
MachineBasicBlock.cpp | 51 const char *Prefix = Ctx.getAsmInfo().getPrivateGlobalPrefix(); 52 return Ctx.GetOrCreateSymbol(Twine(Prefix) + "BB" +
|
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)); 533 MCInst prefix; local 534 prefix.setOpcode(X86::DATA16_PREFIX); 535 OutStreamer.EmitInstruction(prefix); 562 MCInst prefix; local 563 prefix.setOpcode(X86::DATA16_PREFIX); 564 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/llc/ |
llc.cpp | 57 cl::Prefix,
|
/frameworks/compile/slang/ |
llvm-rs-link.cpp | 60 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...] |