Searched refs:cl (Results 1 - 25 of 785) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/polymer/components-chromium/paper-checkbox/
H A Dpaper-checkbox-extracted.js14 var cl = this.$.checkbox.classList;
15 cl.toggle('checked', this.checked);
16 cl.toggle('unchecked', !this.checked);
17 cl.toggle('checkmark', !this.checked);
18 cl.toggle('box', this.checked);
24 var cl = this.$.checkbox.classList;
25 cl.toggle('checkmark', this.checked && !cl.contains('checkmark'));
26 cl.toggle('box', !this.checked && !cl
[all...]
/external/llvm/include/llvm/CodeGen/
H A DCommandFlags.h27 cl::opt<std::string>
28 MArch("march", cl::desc("Architecture to generate code for (see --version)"));
30 cl::opt<std::string>
32 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
33 cl::value_desc("cpu-name"),
34 cl::init(""));
36 cl::list<std::string>
38 cl::CommaSeparated,
39 cl::desc("Target specific attributes (-mattr=help for details)"),
40 cl
[all...]
/external/llvm/utils/fpcmp/
H A Dfpcmp.cpp21 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
[all...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DCommandLineTest.java27 CommandLine cl = CommandLine.getInstance();
28 assertFalse(cl.isNativeImplementation());
31 assertFalse(cl.hasSwitch("magic-switch"));
32 cl.appendSwitchWithValue("magic-switch", "magic");
33 assertTrue(cl.hasSwitch("magic-switch"));
34 assertEquals("magic", cl.getSwitchValue("magic-switch"));
41 cl = CommandLine.getInstance();
42 assertTrue(cl.isNativeImplementation());
45 assertTrue(cl.hasSwitch("magic-switch"));
46 assertEquals("magic", cl
[all...]
/external/llvm/include/llvm/Support/
H A DPluginLoader.h31 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/
H A DHexagonSubtarget.cpp27 static cl::opt<bool>
28 EnableV3("enable-hexagon-v3", cl::Hidden,
29 cl::desc("Enable Hexagon V3 instructions."));
31 static cl::opt<bool>
34 cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(true),
35 cl::desc(
38 static cl
[all...]
/external/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp33 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<FunctionNameKind> ClPrintFunctions(
39 "functions", cl::init(FunctionNameKind::LinkageName),
40 cl::desc("Print function name for a given address:"),
41 cl::values(clEnumValN(FunctionNameKind::None, "none", "omit function name"),
48 static cl::opt<bool>
49 ClPrintInlining("inlining", cl::init(true),
50 cl
[all...]
/external/javassist/src/main/javassist/
H A DLoaderClassPath.java47 public LoaderClassPath(ClassLoader cl) { argument
48 clref = new WeakReference(cl);
52 Object cl = null;
54 cl = clref.get();
56 return cl == null ? "<null>" : cl.toString();
66 ClassLoader cl = (ClassLoader)clref.get();
67 if (cl == null)
70 return cl.getResourceAsStream(cname);
82 ClassLoader cl
[all...]
/external/llvm/tools/llvm-cov/
H A Dllvm-cov.cpp27 static cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore,
28 cl::desc("SOURCEFILE"));
30 static cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false),
31 cl::desc("Display all basic blocks"));
32 static cl::alias AllBlocksA("all-blocks", cl
[all...]
/external/clang/lib/Tooling/
H A DCommonOptionsParser.cpp57 cl::OptionCategory &Category,
59 static cl::opt<bool> Help("h", cl::desc("Alias for -help"), cl::Hidden);
61 static cl::opt<std::string> BuildPath("p", cl::desc("Build path"),
62 cl::Optional, cl::cat(Category));
64 static cl::list<std::string> SourcePaths(
65 cl
[all...]
/external/llvm/include/llvm/MC/
H A DMCTargetOptionsCommandFlags.h22 cl::opt<MCTargetOptions::AsmInstrumentation> AsmInstrumentation(
23 "asm-instrumentation", cl::desc("Instrumentation of inline assembly and "
25 cl::init(MCTargetOptions::AsmInstrumentationNone),
26 cl::values(clEnumValN(MCTargetOptions::AsmInstrumentationNone, "none",
32 cl::opt<bool> RelaxAll("mc-relax-all",
33 cl::desc("When used with filetype=obj, "
36 cl::opt<int> DwarfVersion("dwarf-version", cl::desc("Dwarf version"),
37 cl::init(0));
39 cl
[all...]
/external/chromium_org/base/android/javatests/src/org/chromium/base/
H A DCommandLineTest.java36 CommandLine cl = CommandLine.getInstance();
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
[all...]
/external/llvm/lib/Support/
H A DDebug.cpp39 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
[all...]
/external/llvm/tools/llvm-as/
H A Dllvm-as.cpp34 static cl::opt<std::string>
35 InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-"));
37 static cl::opt<std::string>
38 OutputFilename("o", cl::desc("Override output filename"),
39 cl::value_desc("filename"));
41 static cl::opt<bool>
42 Force("f", cl::desc("Enable binary output on terminals"));
44 static cl
[all...]
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h28 extern llvm::cl::list<std::string> InputFilenames;
29 extern llvm::cl::opt<bool> FileHeaders;
30 extern llvm::cl::opt<bool> Sections;
31 extern llvm::cl::opt<bool> SectionRelocations;
32 extern llvm::cl::opt<bool> SectionSymbols;
33 extern llvm::cl::opt<bool> SectionData;
34 extern llvm::cl::opt<bool> Relocations;
35 extern llvm::cl::opt<bool> Symbols;
36 extern llvm::cl::opt<bool> DynamicSymbols;
37 extern llvm::cl
[all...]
H A Dllvm-readobj.cpp46 cl::list<std::string> InputFilenames(cl::Positional,
47 cl::desc("<input object files>"),
48 cl::ZeroOrMore);
51 cl::opt<bool> FileHeaders("file-headers",
52 cl::desc("Display file headers "));
53 cl::alias FileHeadersShort("h",
54 cl::desc("Alias for --file-headers"),
55 cl::aliasopt(FileHeaders));
58 cl
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_context.c59 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
86 struct gl_client_array *cl = &arrays[i]; local
119 struct gl_client_array *cl = &arrays[i]; local
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_context.c59 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
86 struct gl_client_array *cl = &arrays[i]; local
119 struct gl_client_array *cl = &arrays[i]; local
[all...]
/external/llvm/lib/CodeGen/
H A DPasses.cpp33 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
[all...]
/external/llvm/tools/bugpoint/
H A Dbugpoint.cpp37 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
[all...]
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DContentCommandLineTest.java60 CommandLine cl = CommandLine.getInstance();
61 assertFalse(cl.hasSwitch("init_command"));
62 assertFalse(cl.hasSwitch("switch"));
63 assertTrue(cl.hasSwitch("SWITCH"));
64 assertFalse(cl.hasSwitch("--SWITCH"));
65 assertFalse(cl.hasSwitch("Arg"));
66 assertFalse(cl.hasSwitch("actually_an_arg"));
67 assertEquals("brea\\d", cl.getSwitchValue("switch2"));
68 assertEquals("and \"butter\"", cl.getSwitchValue("switch3"));
69 assertEquals("a \"quoted\" 'food'!", cl
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A Dloader.cpp15 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/mesa3d/src/gallium/drivers/radeon/
H A Dloader.cpp15 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/llvm/tools/llvm-link/
H A Dllvm-link.cpp33 static cl::list<std::string>
34 InputFilenames(cl::Positional, cl::OneOrMore,
35 cl::desc("<input bitcode files>"));
37 static cl::opt<std::string>
38 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
39 cl::value_desc("filename"));
41 static cl::opt<bool>
42 Force("f", cl
[all...]
/external/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXMCAsmInfo.cpp22 static cl::opt<bool> CompileForDebugging("debug-compile",
23 cl::desc("Compile for debugging"),
24 cl::Hidden, cl::init(false));

Completed in 2061 milliseconds

1234567891011>>