HomeSort by relevance Sort by last modified time
    Searched defs:cl (Results 101 - 125 of 348) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libffi/testsuite/libffi.call/
nested_struct4.c 54 static ffi_closure cl; local
66 pcl = &cl;
nested_struct5.c 54 static ffi_closure cl; local
66 pcl = &cl;
nested_struct7.c 54 static ffi_closure cl; local
66 pcl = &cl;
  /external/openssl/ssl/
s23_srvr.c 256 unsigned int csl,sil,cl; local
465 n2s(p,cl);
467 if ((csl+sil+cl+11) != s->packet_length) /* We can't have TLS extensions in SSL 2.0 format
487 i=(cl > SSL3_RANDOM_SIZE)?SSL3_RANDOM_SIZE:cl;
514 p = p+csl+sil+cl;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SystemUIService.java 54 Class<?> cl = SERVICES[i]; local
55 Log.d(TAG, "loading: " + cl);
57 mServices[i] = (SystemUI)cl.newInstance();
  /libcore/luni/src/main/java/libcore/reflect/
TypeVariableImpl.java 86 Class cl = (Class)decl; local
87 decl = (GenericDeclaration) AnnotationAccess.getEnclosingMethodOrConstructor(cl);
91 return cl.getEnclosingClass();
  /libcore/luni/src/test/etc/loading-test-jar/
TestMethods.java 127 ClassLoader cl = TestMethods.class.getClassLoader(); local
128 InputStream in = cl.getResourceAsStream("test/Resource1.txt");
183 ClassLoader cl = TestMethods.class.getClassLoader(); local
184 InputStream in = cl.getResourceAsStream("test2/Resource2.txt");
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MissingClassesTest.java 28 ClassLoader cl = new ClassLoaderBuilder() local
32 loadableClass = cl.loadClass(prefix + "$Loadable");
ProxyTest.java 70 ClassLoader cl = getClass().getClassLoader(); local
72 Object proxy = Proxy.newProxyInstance(cl, interfaces, new InvocationHandler() {
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericSignatureFormatErrorTest.java 76 ClassLoader cl = Support_ClassLoader.getInstance(tf.toURL(), local
79 Class clazz = cl.loadClass("demo/HelloWorld");
  /system/vold/
main.cpp 49 CommandListener *cl; local
71 cl = new CommandListener();
72 vm->setBroadcaster((SocketListener *) cl);
73 nm->setBroadcaster((SocketListener *) cl);
95 if (cl->startListener()) {
  /external/doclava/src/com/google/doclava/
NavTree.java 66 for (ClassInfo cl : classes) {
67 if (cl.isHidden()) {
70 sorted.put(cl.qualifiedName(), cl); local
72 PackageInfo pkg = cl.containingPackage();
102 ClassInfo cl = (ClassInfo) o; local
105 if (cl.containingClass() == null){
108 data = makeYamlHDF(cl, "docs.pages."+i, data);
117 public static Data makeYamlHDF(ClassInfo cl, String base, Data data) {
118 data.setValue(base + ".label", cl.name())
    [all...]
Proofread.java 127 public static void writeClass(String filename, ClassInfo cl) {
133 writeTagList(cl.inlineTags());
136 for (FieldInfo f : cl.enumConstants()) {
142 for (FieldInfo f : cl.selfFields()) {
148 for (MethodInfo m : cl.constructors()) {
154 for (MethodInfo m : cl.selfMethods()) {
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellLocationTest.java 55 CellLocation cl = CellLocation.getEmpty(); local
56 if (cl instanceof GsmCellLocation) {
57 GsmCellLocation gcl = (GsmCellLocation) cl;
  /external/aac/libFDK/include/
FDK_trigFcts.h 177 LONG sl, cl; local
185 cl = (LONG)tmp.v.im;
190 cl = (LONG)tmp.v.re;
195 *cosine = (FIXP_DBL)((cl * csign) << (DFRACT_BITS-FRACT_BITS));
198 *cosine = (FIXP_DBL)(cl * csign);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateListTest.java 163 CertificateList cl = local
166 byte[] encoding = CertificateList.ASN1.encode(cl);
172 cl = new CertificateList(tbscl, signature, new byte[] {0});
174 encoding = CertificateList.ASN1.encode(cl);
  /external/chromium_org/base/
command_line_unittest.cc 47 CommandLine cl(arraysize(argv), argv);
49 EXPECT_FALSE(cl.GetCommandLineString().empty());
50 EXPECT_FALSE(cl.HasSwitch("cruller"));
51 EXPECT_FALSE(cl.HasSwitch("flim"));
52 EXPECT_FALSE(cl.HasSwitch("program"));
53 EXPECT_FALSE(cl.HasSwitch("dog"));
54 EXPECT_FALSE(cl.HasSwitch("cat"));
55 EXPECT_FALSE(cl.HasSwitch("output-rotation"));
56 EXPECT_FALSE(cl.HasSwitch("not-a-switch"));
57 EXPECT_FALSE(cl.HasSwitch("--"))
105 CommandLine cl = CommandLine::FromString( local
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
migration_errors_test.cc 402 virtual void SetUpCommandLine(CommandLine* cl) OVERRIDE {
403 AddTestSwitches(cl); variable
  /external/chromium_org/third_party/icu/source/common/
servls.cpp 211 ServiceEnumeration *cl = new ServiceEnumeration(*this, status); local
213 delete cl;
214 cl = NULL;
216 return cl;
  /external/clang/test/Analysis/
casts.c 45 unsigned char ch, cl, *p; local
49 cl = *p++;
50 if(!cl)
51 cl = 'a';
  /external/fsck_msdos/
fat.c 138 checkclnum(struct bootblock *boot, int fat, cl_t cl, cl_t *next)
153 cl, fat,
211 cl_t cl; local
286 for (cl = CLUST_FIRST; cl < boot->NumClusters;) {
289 fat[cl].next = p[0] + (p[1] << 8)
291 fat[cl].next &= boot->ClustMask;
292 ret |= checkclnum(boot, no, cl, &fat[cl].next);
293 cl++
410 cl_t cl; local
556 cl_t cl; local
    [all...]
  /external/icu4c/common/
servls.cpp 206 ServiceEnumeration *cl = new ServiceEnumeration(*this, status); local
208 delete cl;
209 cl = NULL;
211 return cl;
  /external/javassist/sample/rmi/
CountApplet.java 33 Viewer cl = (Viewer)getClass().getClassLoader(); local
34 importer = new ObjectImporter(cl.getServer(), cl.getPort());
  /external/javassist/src/main/javassist/
Loader.java 49 * Loader cl = new Loader(cp);
50 * cl.addTranslator(cp, myTrans);
51 * cl.run("MyApp", args);
85 * Loader cl = new Loader(cp);
88 * cl.run("MyApp", args);</pre></ul>
108 * loader <code>CL</code>, all classes that the class <code>C</code>
109 * refers to are also loaded by <code>CL</code>. However, if <code>CL</code>
110 * delegates the loading of the class <code>C</code> to <code>CL'</code>,
112 * are loaded by a parent class loader <code>CL'</code
256 Loader cl = new Loader(); local
426 ClassLoader cl = getParent(); local
    [all...]
  /external/javassist/src/main/javassist/scopedpool/
ScopedClassPoolRepositoryImpl.java 69 ClassLoader cl = Thread.currentThread().getContextClassLoader(); local
70 classpool.insertClassPath(new LoaderClassPath(cl));
94 * @param cl the classloader.
98 public ScopedClassPool createScopedClassPool(ClassLoader cl, ClassPool src) {
99 return factory.create(cl, src, this);
102 public ClassPool findClassPool(ClassLoader cl) {
103 if (cl == null)
106 return registerClassLoader(cl);
151 ClassLoader cl = pool.getClassLoader(); local
152 if (cl != null)
    [all...]

Completed in 468 milliseconds

1 2 3 45 6 7 8 91011>>