Searched refs:Prefix (Results 26 - 50 of 74) sorted by relevance

123

/external/llvm/tools/bugpoint/
H A DMiscompilation.cpp51 virtual TestResult doTest(std::vector<std::string> &Prefix,
61 ReduceMiscompilingPasses::doTest(std::vector<std::string> &Prefix, argument
95 if (Prefix.empty()) return NoFailure;
99 outs() << "Checking to see if '" << getPassesString(Prefix)
108 if (BD.runPasses(BD.getProgram(), Prefix, BitcodeResult, false/*delete*/,
112 BD.setPassesToRun(Prefix);
146 << getPassesString(Prefix) << "' passes: ";
185 virtual TestResult doTest(std::vector<Function*> &Prefix, argument
195 if (!Prefix.empty()) {
196 bool Ret = TestFuncs(Prefix, Erro
435 doTest(std::vector<BasicBlock*> &Prefix, std::vector<BasicBlock*> &Suffix, std::string &Error) argument
[all...]
/external/clang/lib/Frontend/
H A DTextDiagnosticPrinter.cpp149 if (!Prefix.empty())
150 OS << Prefix << ": "; local
H A DInitPreprocessor.cpp123 static void DefineFloatMacros(MacroBuilder &Builder, StringRef Prefix, argument
151 DefPrefix += Prefix;
512 if (const char *Prefix = TI.getUserLabelPrefix())
513 Builder.defineMacro("__USER_LABEL_PREFIX__", Prefix);
H A DPrintPreprocessedOutput.cpp467 const char *Prefix; member in struct:__anon2891::UnknownPragmaHandler
471 : Prefix(prefix), Callbacks(callbacks) {}
478 Callbacks->OS.write(Prefix, strlen(Prefix));
/external/libvpx/examples/includes/geshi/geshi/
H A Dcil.php79 4 => array(//Prefix
/external/llvm/include/llvm/ADT/
H A DStringRef.h196 /// 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/lib/TableGen/
H A DMain.cpp45 cl::value_desc("directory"), cl::Prefix);
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.h43 uint8_t Prefix; member in class:llvm::X86Disassembler::RecognizableInstr
/external/llvm/lib/MC/
H A DSubtargetFeature.cpp62 std::string Prefix = IsEnabled ? "+" : "-";
63 Prefix += Feature;
64 return Prefix;
H A DMCStreamer.cpp285 StringRef Prefix = getContext().getAsmInfo().getPrivateGlobalPrefix(); local
286 if (LastSymbol && LastSymbol->getName().startswith(Prefix)) {
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_url_provider.h237 const history::Prefix* BestPrefix(const GURL& text,
/external/chromium/sdch/open-vcdiff/packages/rpm/
H A Drpm.spec17 Prefix: %prefix
/external/clang/tools/scan-build/
H A Dscan-build241 my $Prefix;
248 if (!defined $Prefix) {
249 $Prefix = $x;
253 chop $Prefix while (!($x =~ /^\Q$Prefix/));
257 return $Prefix;
/external/llvm/lib/Support/
H A DAPInt.cpp194 /// @brief Prefix increment operator. Increments the APInt by one.
223 /// @brief Prefix decrement operator. Decrements the APInt by one.
2189 const char *Prefix = "";
2195 Prefix = "0b";
2198 Prefix = "0";
2201 Prefix = "0x";
2208 while (*Prefix) {
2209 Str.push_back(*Prefix);
2210 ++Prefix;
2235 while (*Prefix) {
[all...]
/external/clang/lib/Lex/
H A DLiteralSupport.cpp1026 const char *Prefix = ThisTokBuf;
1032 if (ThisTokEnd >= ThisTokBuf + (ThisTokBuf - Prefix))
1033 ThisTokEnd -= (ThisTokBuf - Prefix);
/external/llvm/tools/llvm-ld/
H A Dllvm-ld.cpp65 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,
/external/chromium/net/url_request/
H A Dview_cache_helper_unittest.cc160 TEST(ViewCacheHelper, Prefix) {
/external/clang/include/clang/Driver/
H A DDriver.h380 std::string GetTemporaryPath(StringRef Prefix, const char *Suffix) const;
/external/llvm/lib/CodeGen/
H A DSpiller.cpp38 cl::Prefix,
H A DMachineFunction.cpp413 const char *Prefix = isLinkerPrivate ? MAI.getLinkerPrivateGlobalPrefix() : local
417 << Prefix << "JTI" << getFunctionNumber() << '_' << JTI;
/external/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp72 const char *Prefix = "__imp_"; local
73 Name.insert(Name.begin(), Prefix, Prefix+strlen(Prefix));
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp239 /// Returns true if Prefix is a prefix of longer. That means, Longer has a size
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, argument
246 if (Prefix.size() > Longer.size())
248 for (unsigned i = 0, e = Prefix.size(); i != e; ++i)
249 if (Prefix[i] != Longer[i])
/external/llvm/tools/lli/
H A Dlli.cpp68 cl::Prefix,
/external/valgrind/main/VEX/priv/
H A Dguest_amd64_toIR.c82 Prefix"):
662 typedef UInt Prefix; typedef
683 static Bool IS_VALID_PFX ( Prefix pfx ) {
687 static Bool haveREX ( Prefix pfx ) {
691 static Int getRexW ( Prefix pfx ) {
695 static Int getRexR ( Prefix pfx ) {
699 static Int getRexX ( Prefix pfx ) {
702 static Int getRexB ( Prefix pfx ) {
708 static Bool haveF2orF3 ( Prefix pfx ) {
711 static Bool haveF2 ( Prefix pf
[all...]
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary115 ATTRIBUTE Prefix 1003 string

Completed in 460 milliseconds

123