/external/llvm/include/llvm/CodeGen/ |
CommandFlags.h | 25 cl::opt<std::string> 26 MArch("march", cl::desc("Architecture to generate code for (see --version)")); 28 cl::opt<std::string> 30 cl::desc("Target a specific cpu type (-mcpu=help for details)"), 31 cl::value_desc("cpu-name"), 32 cl::init("")); 34 cl::list<std::string> 36 cl::CommaSeparated, 37 cl::desc("Target specific attributes (-mattr=help for details)"), 38 cl::value_desc("a1,+a2,-a3,...")) [all...] |
/external/llvm/utils/fpcmp/ |
fpcmp.cpp | 21 cl::opt<std::string> 22 File1(cl::Positional, cl::desc("<input file #1>"), cl::Required); 23 cl::opt<std::string> 24 File2(cl::Positional, cl::desc("<input file #2>"), cl::Required); 26 cl::opt<double> 27 RelTolerance("r", cl::desc("Relative error tolerated"), cl::init(0)) [all...] |
/external/llvm/include/llvm/Support/ |
PluginLoader.h | 31 static cl::opt<PluginLoader, false, cl::parser<std::string> > 32 LoadOpt("load", cl::ZeroOrMore, cl::value_desc("pluginfilename"), 33 cl::desc("Load the specified plugin"));
|
/external/llvm/lib/Target/Hexagon/ |
HexagonSubtarget.cpp | 25 static cl::opt<bool> 26 EnableV3("enable-hexagon-v3", cl::Hidden, 27 cl::desc("Enable Hexagon V3 instructions.")); 29 static cl::opt<bool> 32 cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(true), 33 cl::desc( 36 static cl::opt<bool [all...] |
/external/javassist/src/main/javassist/ |
LoaderClassPath.java | 47 public LoaderClassPath(ClassLoader cl) { 48 clref = new WeakReference(cl); 52 Object cl = null; local 54 cl = clref.get(); 56 return cl == null ? "<null>" : cl.toString(); 66 ClassLoader cl = (ClassLoader)clref.get(); local 67 if (cl == null) 70 return cl.getResourceAsStream(cname); 82 ClassLoader cl = (ClassLoader)clref.get() local [all...] |
/bionic/libc/arch-x86/string/ |
strcmp.S | 23 L2: movb (%eax),%cl 24 testb %cl,%cl /* null terminator??? */ 26 cmpb %cl,(%edx) /* chars match??? */ 30 movb (%eax),%cl 31 testb %cl,%cl 33 cmpb %cl,(%edx) 37 movb (%eax),%cl 38 testb %cl,%c [all...] |
/external/llvm/tools/llvm-readobj/ |
llvm-readobj.h | 30 extern llvm::cl::list<std::string> InputFilenames; 31 extern llvm::cl::opt<bool> FileHeaders; 32 extern llvm::cl::opt<bool> Sections; 33 extern llvm::cl::opt<bool> SectionRelocations; 34 extern llvm::cl::opt<bool> SectionSymbols; 35 extern llvm::cl::opt<bool> SectionData; 36 extern llvm::cl::opt<bool> Relocations; 37 extern llvm::cl::opt<bool> Symbols; 38 extern llvm::cl::opt<bool> DynamicSymbols; 39 extern llvm::cl::opt<bool> UnwindInfo [all...] |
llvm-readobj.cpp | 49 cl::list<std::string> InputFilenames(cl::Positional, 50 cl::desc("<input object files>"), 51 cl::ZeroOrMore); 54 cl::opt<bool> FileHeaders("file-headers", 55 cl::desc("Display file headers ")); 56 cl::alias FileHeadersShort("h", 57 cl::desc("Alias for --file-headers"), 58 cl::aliasopt(FileHeaders)); 61 cl::opt<bool> Sections("sections" [all...] |
/external/chromium_org/base/android/javatests/src/org/chromium/base/ |
CommandLineTest.java | 36 CommandLine cl = CommandLine.getInstance(); local 37 assertFalse(cl.hasSwitch("init_command")); 38 assertFalse(cl.hasSwitch("switch")); 39 assertTrue(cl.hasSwitch("SWITCH")); 40 assertFalse(cl.hasSwitch("--SWITCH")); 41 assertFalse(cl.hasSwitch("Arg")); 42 assertFalse(cl.hasSwitch("actually_an_arg")); 43 assertEquals("brea\\d", cl.getSwitchValue("switch2")); 44 assertEquals("and \"butter\"", cl.getSwitchValue("switch3")); 45 assertEquals("a \"quoted\" 'food'!", cl.getSwitchValue("switch4")) 51 CommandLine cl = CommandLine.getInstance(); local [all...] |
/frameworks/compile/mclinker/tools/llvm-mcld/ |
llvm-mcld.cpp | 69 static cl::opt<bool> 70 UnitTest("unittest", cl::desc("do unit test") ); 85 static cl::opt<char> 87 cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] " 89 cl::Prefix, 90 cl::ZeroOrMore, 91 cl::init(' ')); 93 static cl::opt<std::string> 94 TargetTriple("mtriple", cl::desc("Override target triple for module")); 96 static cl::opt<std::string [all...] |
/external/llvm/lib/Support/ |
Debug.cpp | 39 static cl::opt<bool, true> 40 Debug("debug", cl::desc("Enable debug output"), cl::Hidden, 41 cl::location(DebugFlag)); 45 static cl::opt<unsigned> 47 cl::desc("Buffer the last N characters of debug output " 50 cl::Hidden, 51 cl::init(0)); 68 static cl::opt<DebugOnlyOpt, true, cl::parser<std::string> [all...] |
/external/llvm/tools/llvm-symbolizer/ |
llvm-symbolizer.cpp | 33 static cl::opt<bool> 34 ClUseSymbolTable("use-symbol-table", cl::init(true), 35 cl::desc("Prefer names in symbol table to names " 38 static cl::opt<bool> 39 ClPrintFunctions("functions", cl::init(true), 40 cl::desc("Print function names as well as line " 43 static cl::opt<bool> 44 ClPrintInlining("inlining", cl::init(true), 45 cl::desc("Print all inlined frames for a given address")); 47 static cl::opt<bool [all...] |
/external/llvm/tools/llvm-as/ |
llvm-as.cpp | 33 static cl::opt<std::string> 34 InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-")); 36 static cl::opt<std::string> 37 OutputFilename("o", cl::desc("Override output filename"), 38 cl::value_desc("filename")); 40 static cl::opt<bool> 41 Force("f", cl::desc("Enable binary output on terminals")); 43 static cl::opt<bool [all...] |
/frameworks/compile/mclinker/tools/mcld/ |
main.cpp | 36 static llvm::cl::opt<std::string> 38 llvm::cl::desc("Specify the target triple (default: " 40 llvm::cl::init(DEFAULT_TARGET_TRIPLE_STRING), 41 llvm::cl::value_desc("triple")); 43 static llvm::cl::alias OptTargetTripleC("C", llvm::cl::NotHidden, 44 llvm::cl::desc("Alias for -mtriple"), 45 llvm::cl::aliasopt(OptTargetTriple)); 58 static llvm::cl::opt<std::string> 60 llvm::cl::desc("Output filename") [all...] |
/external/chromium/base/ |
command_line_unittest.cc | 25 CommandLine cl = CommandLine::FromString( local 33 EXPECT_FALSE(cl.command_line_string().empty()); 42 CommandLine cl(arraysize(argv), argv); 44 EXPECT_FALSE(cl.HasSwitch("cruller")); 45 EXPECT_FALSE(cl.HasSwitch("flim")); 46 EXPECT_FALSE(cl.HasSwitch("program")); 47 EXPECT_FALSE(cl.HasSwitch("dog")); 48 EXPECT_FALSE(cl.HasSwitch("cat")); 49 EXPECT_FALSE(cl.HasSwitch("output-rotation")); 50 EXPECT_FALSE(cl.HasSwitch("not-a-switch")) 107 CommandLine cl = CommandLine::FromString(L""); local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_context.c | 59 struct gl_client_array *cl = &arrays[i]; local 63 cl->Size = check_size(ctx->Current.Attrib[i]); 64 cl->Stride = 0; 65 cl->StrideB = 0; 66 cl->Enabled = 1; 67 cl->Type = GL_FLOAT; 68 cl->Format = GL_RGBA; 69 cl->Ptr = (const void *)ctx->Current.Attrib[i]; 70 cl->_ElementSize = cl->Size * sizeof(GLfloat) 86 struct gl_client_array *cl = &arrays[i]; local 119 struct gl_client_array *cl = &arrays[i]; local [all...] |
/external/mesa3d/src/mesa/vbo/ |
vbo_context.c | 59 struct gl_client_array *cl = &arrays[i]; local 63 cl->Size = check_size(ctx->Current.Attrib[i]); 64 cl->Stride = 0; 65 cl->StrideB = 0; 66 cl->Enabled = 1; 67 cl->Type = GL_FLOAT; 68 cl->Format = GL_RGBA; 69 cl->Ptr = (const void *)ctx->Current.Attrib[i]; 70 cl->_ElementSize = cl->Size * sizeof(GLfloat) 86 struct gl_client_array *cl = &arrays[i]; local 119 struct gl_client_array *cl = &arrays[i]; local [all...] |
/frameworks/compile/slang/ |
llvm-rs-as.cpp | 38 static cl::opt<std::string> 39 InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-")); 41 static cl::opt<std::string> 42 OutputFilename("o", cl::desc("Override output filename"), 43 cl::value_desc("filename")); 45 static cl::opt<bool> 46 Force("f", cl::desc("Enable binary output on terminals")); 48 static cl::opt<bool [all...] |
/external/llvm/tools/bugpoint/ |
bugpoint.cpp | 37 static cl::opt<bool> 38 FindBugs("find-bugs", cl::desc("Run many different optimization sequences " 39 "on program to find bugs"), cl::init(false)); 41 static cl::list<std::string> 42 InputFilenames(cl::Positional, cl::OneOrMore, 43 cl::desc("<input llvm ll/bc files>")); 45 static cl::opt<unsigned> 46 TimeoutValue("timeout", cl::init(300), cl::value_desc("seconds") [all...] |
/external/llvm/lib/CodeGen/ |
Passes.cpp | 33 static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden, 34 cl::desc("Disable Post Regalloc")); 35 static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden, 36 cl::desc("Disable branch folding")); 37 static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden, 38 cl::desc("Disable tail duplication")); 39 static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden [all...] |
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ContentCommandLineTest.java | 57 CommandLine cl = CommandLine.getInstance(); local 58 assertFalse(cl.hasSwitch("init_command")); 59 assertFalse(cl.hasSwitch("switch")); 60 assertTrue(cl.hasSwitch("SWITCH")); 61 assertFalse(cl.hasSwitch("--SWITCH")); 62 assertFalse(cl.hasSwitch("Arg")); 63 assertFalse(cl.hasSwitch("actually_an_arg")); 64 assertEquals("brea\\d", cl.getSwitchValue("switch2")); 65 assertEquals("and \"butter\"", cl.getSwitchValue("switch3")); 66 assertEquals("a \"quoted\" 'food'!", cl.getSwitchValue("switch4")) 72 CommandLine cl = CommandLine.getInstance(); local 98 CommandLine cl = CommandLine.getInstance(); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
loader.cpp | 15 static cl::opt<std::string> 16 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-")); 18 static cl::opt<std::string> 19 TargetGPUName("gpu", cl::desc("target gpu name"), cl::value_desc("gpu_name")); 29 cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");
|
/external/clang/lib/Tooling/ |
CommonOptionsParser.cpp | 58 static cl::opt<std::string> BuildPath( 59 "p", cl::desc("Build path"), cl::Optional); 61 static cl::list<std::string> SourcePaths( 62 cl::Positional, cl::desc("<source0> [... <sourceN>]"), cl::OneOrMore); 66 cl::ParseCommandLineOptions(argc, argv, Overview);
|
/external/llvm/tools/obj2yaml/ |
obj2yaml.cpp | 27 cl::opt<ObjectFileType> InputFormat( 28 cl::desc("Choose input format"), 29 cl::values(clEnumVal(coff, "process COFF object files"), clEnumValEnd)); 31 cl::opt<std::string> InputFilename(cl::Positional, cl::desc("<input file>"), 32 cl::init("-")); 35 cl::ParseCommandLineOptions(argc, argv);
|
/external/llvm/tools/yaml2obj/ |
yaml2obj.cpp | 29 static cl::opt<std::string> 30 Input(cl::Positional, cl::desc("<input>"), cl::init("-")); 45 cl::opt<YAMLObjectFormat> Format( 47 cl::desc("Interpret input as this type of object file"), 48 cl::values( 55 cl::ParseCommandLineOptions(argc, argv);
|