HomeSort by relevance Sort by last modified time
    Searched defs:cl (Results 1 - 25 of 346) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ash/audio/
sounds.cc 21 CommandLine* cl = CommandLine::ForCurrentProcess(); local
22 if (cl->HasSwitch(switches::kAshEnableSystemSounds))
  /external/javassist/sample/duplicate/
Main.java 38 javassist.tools.reflect.Loader cl = new javassist.tools.reflect.Loader(); local
39 cl.makeReflective("sample.duplicate.Ball",
42 cl.run("sample.duplicate.Viewer", args);
  /external/javassist/sample/reflect/
Main.java 25 Loader cl = (Loader)Main.class.getClassLoader(); local
26 cl.makeReflective("sample.reflect.Person",
30 cl.run("sample.reflect.Person", args);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cl.py 2 """Whimpy test script for the cl module
7 cl = import_module('cl') variable
67 # This is a very inobtrusive test for the existence of the cl
73 print 'Touching cl module attributes...'
77 getattr(cl, attr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cl.py 2 """Whimpy test script for the cl module
7 cl = import_module('cl') variable
67 # This is a very inobtrusive test for the existence of the cl
73 print 'Touching cl module attributes...'
77 getattr(cl, attr)
  /external/javassist/sample/evolve/
DemoLoader.java 32 Loader cl = new Loader(); local
33 cl.addTranslator(cp, translator);
36 cl.run("sample.evolve.DemoServer", args);
  /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...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentCommandLineTest.java 60 CommandLine cl = CommandLine.getInstance(); local
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.getSwitchValue("switch4"))
75 CommandLine cl = CommandLine.getInstance(); local
101 CommandLine cl = CommandLine.getInstance(); local
    [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...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyObjectOutputStream.java 47 Class cl = desc.forClass(); local
48 if (ProxyFactory.isProxyClass(cl)) {
50 Class superClass = cl.getSuperclass();
51 Class[] interfaces = cl.getInterfaces();
52 byte[] signature = ProxyFactory.getFilterSignature(cl);
  /frameworks/compile/mclinker/include/mcld/Support/
CommandLine.h 21 namespace cl { namespace in namespace:llvm
26 class SearchDirParser : public llvm::cl::basic_parser<std::string>
48 class FalseParser : public cl::parser<bool>
52 bool parse(cl::Option &O, StringRef ArgName, StringRef Arg, bool &Val) {
53 if (cl::parser<bool>::parse(O, ArgName, Arg, Val))
84 class parser<mcld::ZOption> : public llvm::cl::basic_parser<mcld::ZOption>
97 } // namespace of cl
  /system/netd/server/
main.cpp 43 CommandListener *cl; local
58 cl = new CommandListener();
59 nm->setBroadcaster((SocketListener *) cl);
90 if (cl->startListener()) {
  /external/doclava/src/com/google/doclava/
Doclava2.java 41 ClassInfo cl = InfoBuilder.Caches.getClass("android.preference.VolumePreference"); local
42 if (cl != null) {
43 InfoBuilder.printClassInfo(cl);
46 cl.printResolutions();
Stubs.java 76 for (ClassInfo cl : all) {
77 if (cl.checkLevel() && cl.isIncluded()) {
78 cantStripThis(cl, notStrippable, "0:0");
84 for (ClassInfo cl : notStrippable) {
85 if (!cl.isHiddenOrRemoved()) {
86 for (MethodInfo m : cl.selfMethods()) {
93 Errors.error(Errors.DEPRECATED, m.position(), "Method " + cl.qualifiedName() + "."
99 Errors.error(Errors.UNAVAILABLE_SYMBOL, m.position(), "Method " + cl.qualifiedName()
108 + t.fullName() + " in " + cl.qualifiedName() + "." + m.name() + "()")
    [all...]
  /art/runtime/native/
java_lang_VMClassLoader.cc 34 ClassLinker* cl = Runtime::Current()->GetClassLinker(); local
36 mirror::Class* c = cl->LookupClass(descriptor.c_str(), loader);
43 c = cl->FindClassInPathClassLoader(soa, soa.Self(), descriptor.c_str(), hs.NewHandle(loader));
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespaceSupport.java 76 Class cl = ExtensionHandler.getClassForName(m_handlerClass); local
78 //System.out.println("class " + cl + " " + m_args + " " + m_args.length + " " + m_sig);
80 con = cl.getConstructor(m_sig);
83 Constructor[] cons = cl.getConstructors();
  /external/chromium_org/android_webview/lib/main/
aw_main_delegate.cc 53 CommandLine* cl = CommandLine::ForCurrentProcess(); local
54 bool zero_copy_disabled_by_switch = cl->HasSwitch(switches::kDisableZeroCopy);
56 cl->HasSwitch(switches::kEnableZeroCopy) &&
60 cl->AppendSwitch(switches::kEnableZeroCopy);
62 cl->AppendSwitch(switches::kDisableZeroCopy);
70 cl->AppendSwitch(switches::kEnableBeginFrameScheduling);
71 cl->AppendSwitch(switches::kEnableImplSidePainting);
74 cl->AppendSwitch(switches::kDisableOverscrollEdgeEffect);
77 cl->AppendSwitch(switches::kDisableSharedWorkers);
80 cl->AppendSwitch(switches::kDisableFileSystem)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_persistence_unittest.cc 41 CommandLine *cl = CommandLine::ForCurrentProcess(); variable
42 cl->AppendSwitchASCII(switches::kLoginProfile, chrome::kTestUserProfileDir);
  /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/chromium_org/ui/gfx/
font_render_params_linux.cc 23 const CommandLine* cl = CommandLine::ForCurrentProcess(); local
28 return cl->HasSwitch(switches::kEnableWebkitTextSubpixelPositioning) ||
32 return cl->HasSwitch(switches::kEnableBrowserTextSubpixelPositioning);
  /external/clang/include/clang/Frontend/
CommandLineSourceLoc.h 57 namespace cl { namespace in namespace:llvm
  /external/conscrypt/src/compat/java/dalvik/system/
BlockGuard.java 26 ClassLoader cl = ClassLoader.getSystemClassLoader(); typedefs
27 Class<?> c_closeGuard = cl.loadClass("dalvik.system.BlockGuard");
32 Class<?> c_policy = cl.loadClass("dalvik.system.BlockGuard.Policy");
  /external/javassist/src/main/javassist/tools/reflect/
Loader.java 32 * javassist.tools.reflect.Loader cl
34 * cl.makeReflective("Person", "MyMetaobject",
36 * cl.run("MyApp", args);
57 * javassist.tools.reflect.Loader cl = new javassist.tools.reflect.Loader();
58 * cl.makeReflective("Person", "MyMetaobject",
60 * cl.run("MyApp", args);
84 * javassist.Loader cl
88 * cl.run("MyApp", args);
124 Loader cl = new Loader(); local
125 cl.run(args)
    [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...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContentLanguageParser.java 79 ContentLanguage cl = new ContentLanguage( token.getTokenValue() ); local
81 list.add(cl);
89 cl = new ContentLanguage( token.getTokenValue() );
91 list.add(cl);

Completed in 980 milliseconds

1 2 3 4 5 6 7 8 91011>>