/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/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);
|
/external/libffi/testsuite/libffi.call/ |
closure_fn0.c | 53 static ffi_closure cl; local 62 pcl = &cl;
|
closure_fn1.c | 45 static ffi_closure cl; local 54 pcl = &cl;
|
closure_fn2.c | 45 static ffi_closure cl; local 54 pcl = &cl;
|
closure_fn3.c | 46 static ffi_closure cl; local 55 pcl = &cl;
|
closure_fn4.c | 64 static ffi_closure cl; local 73 pcl = &cl;
|
closure_fn5.c | 63 static ffi_closure cl; local 71 pcl = &cl;
|
closure_fn6.c | 54 static ffi_closure cl; local 63 pcl = &cl;
|
cls_double.c | 24 static ffi_closure cl; local 33 pcl = &cl;
|
cls_float.c | 25 static ffi_closure cl; local 34 pcl = &cl;
|
cls_schar.c | 25 static ffi_closure cl; local 34 pcl = &cl;
|
cls_sint.c | 23 static ffi_closure cl; local 32 pcl = &cl;
|
cls_sshort.c | 23 static ffi_closure cl; local 32 pcl = &cl;
|
cls_uchar.c | 23 static ffi_closure cl; local 32 pcl = &cl;
|
cls_uint.c | 24 static ffi_closure cl; local 33 pcl = &cl;
|
cls_ulonglong.c | 24 static ffi_closure cl; local 33 pcl = &cl;
|
cls_ushort.c | 24 static ffi_closure cl; local 33 pcl = &cl;
|
/external/libffi/testsuite/libffi.special/ |
unwindtest.cc | 54 static ffi_closure cl; local 61 pcl = &cl;
|
/frameworks/compile/mclinker/include/mcld/Support/ |
CommandLine.h | 24 namespace cl { namespace in namespace:llvm 29 class SearchDirParser : public llvm::cl::basic_parser<std::string> 51 class FalseParser : public cl::parser<bool> 55 bool parse(cl::Option &O, StringRef ArgName, StringRef Arg, bool &Val) { 56 if (cl::parser<bool>::parse(O, ArgName, Arg, Val)) 87 class parser<mcld::ZOption> : public llvm::cl::basic_parser<mcld::ZOption> 100 } // namespace of cl
|