HomeSort by relevance Sort by last modified time
    Searched refs:methods (Results 51 - 75 of 407) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/vm/
InitRefs.cpp 359 } methods[] = { local
384 for (i = 0; methods[i].method != NULL; i++) {
385 if (!initDirectMethodReference(methods[i].method, methods[i].className,
386 methods[i].name, methods[i].descriptor)) {
421 } methods[] = { local
436 for (i = 0; methods[i].offset != NULL; i++) {
437 if (!initVirtualMethodOffset(methods[i].offset, methods[i].className
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
FramePrinter.java 48 * Prints all the methods declared in the given class.
55 * Prints all the methods declared in the given class.
58 CtMethod[] methods = clazz.getDeclaredMethods(); local
59 for (int i = 0; i < methods.length; i++) {
60 print(methods[i]);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
NativeCrypto.java 453 public static String[] checkEnabledCompressionMethods(String[] methods) {
454 if (methods == null) {
455 throw new IllegalArgumentException("methods == null");
457 if (methods.length < 1
458 && !methods[methods.length-1].equals(SUPPORTED_COMPRESSION_METHOD_NULL)) {
461 for (int i = 0; i < methods.length; i++) {
462 String method = methods[i];
464 throw new IllegalArgumentException("methods[" + i + "] == null");
472 return methods;
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpEntityEnclosingRequestBase.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpEntityEnclosingRequestBase.java $
32 package org.apache.http.client.methods;
  /external/emma/core/java12/com/vladium/jcd/cls/
AbstractClassDefVisitor.java 53 public Object visit (final IMethodCollection methods, final Object ctx)
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 44 // Sort the methods.
45 Arrays.sort(programClass.methods, 0, programClass.u2methodsCount, this);
  /external/webkit/Source/WebCore/bridge/
runtime_method.h 39 Bindings::MethodList* methods() const { return _methodList.get(); } function in class:JSC::RuntimeMethod
  /frameworks/base/core/jni/android/graphics/
PathMeasure.cpp 120 static JNINativeMethod methods[] = { member in namespace:android
133 int result = AndroidRuntime::registerNativeMethods(env, "android/graphics/PathMeasure", methods,
134 sizeof(methods) / sizeof(methods[0]));
  /hardware/libhardware/include/hardware/
hardware.h 65 /** Modules methods */
66 struct hw_module_methods_t* methods; member in struct:hw_module_t
85 * followed by module specific public methods and attributes.
  /hardware/qcom/gps/loc_api/libloc_api/
gps.c 65 .methods = &gps_module_methods,
  /packages/inputmethods/LatinIME/native/jni/
jni_common.h 27 int registerNativeMethods(JNIEnv *env, const char *className, JNINativeMethod *methods,
  /external/proguard/examples/annotations/
examples.pro 37 native <methods>;
40 # Preserve the special static methods that are required in all enumeration
  /external/proguard/examples/
applets.pro 29 native <methods>;
32 # Preserve the special static methods that are required in all enumeration
applications.pro 35 native <methods>;
38 # Preserve the special static methods that are required in all enumeration
servlets.pro 30 native <methods>;
33 # Preserve the special static methods that are required in all enumeration
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ReflectionTest.java 238 Method[] methods = ExtendsImplementsDefinesMember.class.getMethods(); local
239 assertTrue(names(methods).contains("method"));
243 Method[] methods = ImplementsExtendsDefinesMember.class.getMethods(); local
244 assertTrue(names(methods).contains("method"));
248 Method[] methods = ExtendsAndImplementsDefinesMember.class.getMethods(); local
249 assertEquals(1, count(names(methods), "method"));
305 private List<String> names(Member[] methods) {
307 for (Member method : methods) {
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunnerHelp.java 60 Set<Method> methods,
102 // Methods
111 methods.add(m);
187 Set<Method> methods = Sets.newTreeSet(MEMBER_SORTER); local
190 getAllExportedClasses(fields, methods, constructors, classes);
215 for (Method m : methods) {
246 Set<Method> methods = Sets.newTreeSet(MEMBER_SORTER); local
249 getAllExportedClasses(fields, methods, constructors, classes);
252 // good enough. So go through all the fields, methods, etc. and collect those classes as
259 for (Method m : methods) {
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertEnumTest.java 131 Set<IMethod> methods = c.getMethods(); local
132 assertEquals(2, methods.size());
134 for(IMethod m : methods){
174 Set<IMethod> methods = c.getMethods(); local
175 assertEquals(2, methods.size());
177 for(IMethod m : methods){
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Output.java 129 * Prints the list of methods in a simple human-readable format.
134 MethodRef[] methods = classes[i].getMethodArray(); local
136 for (int j = 0; j < methods.length; j++) {
137 MethodRef ref = methods[j];
155 * the matching fields and methods.
204 * Prints the externally-visible methods in XML format.
207 MethodRef[] methods = cref.getMethodArray(); local
208 for (int i = 0; i < methods.length; i++) {
209 MethodRef mref = methods[i];
  /frameworks/base/cmds/ime/src/com/android/commands/ime/
Ime.java 105 List<InputMethodInfo> methods; local
108 methods = mImm.getEnabledInputMethodList();
116 methods = mImm.getInputMethodList();
124 if (methods != null) {
126 for (int i=0; i<methods.size(); i++) {
127 InputMethodInfo imi = methods.get(i);
238 System.err.println("The list command prints all enabled input methods. Use");
239 System.err.println("the -a option to see all input methods. Use");
  /external/javassist/src/main/javassist/bytecode/
ClassFile.java 29 * consists of a constant pool, methods, fields, and attributes.
41 ArrayList methods; field in class:ClassFile
134 methods = new ArrayList();
168 ArrayList list = methods;
233 ArrayList list = methods;
370 ArrayList list = methods;
412 list = methods;
449 ArrayList list = methods;
476 ArrayList list = methods;
597 * Returns all the methods declared in the class
    [all...]
  /external/doclava/src/com/google/doclava/
DoclavaDiff.java 90 * packages.0.classes.0.methods.0.signature = wait()
91 * packages.0.classes.0.methods.0.sites.0.hasMethod = 1
92 * packages.0.classes.0.methods.0.sites.0.link = http://proja.domain.com/reference/java/lang/Object#wait
93 * packages.0.classes.0.methods.0.sites.1.hasMethod = 0
159 List<MethodInfo> methods = knownMethodsForClass(qualifiedClassName, sites); local
160 for (MethodInfo method : methods) {
165 String methodBase = classBase + ".methods." + (m++);
229 * Returns all known methods from all sites for a given class.
246 List<MethodInfo> methods = new ArrayList<MethodInfo>(); local
247 methods.addAll(allMethods.values())
277 List<MethodInfo> methods = knownMethodsForClass(qualifiedClassName, sites); local
    [all...]
  /external/jpeg/
jdsample.c 46 upsample1_ptr methods[MAX_COMPONENTS]; member in struct:__anon6699
55 * recompute them each time. They are unused for other upsampling methods.
107 (*upsample->methods[ci]) (cinfo, compptr,
423 /* Verify we can handle the sampling factors, select per-component methods,
441 upsample->methods[ci] = noop_upsample;
445 upsample->methods[ci] = fullsize_upsample;
451 upsample->methods[ci] = h2v1_fancy_upsample;
453 upsample->methods[ci] = h2v1_upsample;
458 upsample->methods[ci] = h2v2_fancy_upsample;
461 upsample->methods[ci] = h2v2_upsample
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_pixmapruntime.cpp 187 const MethodList& methods = *runtimeMethod->methods(); local
189 if (methods.size() == 1) {
190 QtPixmapRuntimeMethod* method = static_cast<QtPixmapRuntimeMethod*>(methods[0]);
198 MethodList methods; local
200 methods.append(&qt_pixmap_metaData.toDataUrlMethod);
202 methods.append(&qt_pixmap_metaData.assignToElementMethod);
204 methods.append(&qt_pixmap_metaData.toStringMethod);
205 return methods;
  /cts/tools/signature-tools/src/signature/model/impl/
SigClassDefinition.java 45 private Set<IMethod> methods = Uninitialized.unset(); field in class:SigClassDefinition
110 return methods;
113 public void setMethods(Set<IMethod> methods) {
114 this.methods = methods;

Completed in 4914 milliseconds

1 23 4 5 6 7 8 91011>>