HomeSort by relevance Sort by last modified time
    Searched defs:methods (Results 176 - 200 of 404) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ReflectionTest.java 284 Method[] methods = ExtendsImplementsDefinesMember.class.getMethods(); local
285 assertTrue(names(methods).contains("method"));
289 Method[] methods = ImplementsExtendsDefinesMember.class.getMethods(); local
290 assertTrue(names(methods).contains("method"));
294 Method[] methods = ExtendsAndImplementsDefinesMember.class.getMethods(); local
295 assertEquals(1, count(names(methods), "method"));
405 private List<String> names(Member[] methods) {
407 for (Member method : methods) {
  /prebuilts/tools/common/api-generator/
api-generator-22.9.1.jar 
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 
  /dalvik/tools/dmtracedump/
TraceDump.c 147 struct MethodEntry **methods; /* list of methods in this class */ member in struct:ClassEntry
154 struct MethodEntry **methods; /* list of methods with same name */ member in struct:UniqueMethodEntry
175 int index; /* used after sorting to number methods */
189 MethodEntry* methods; /* 2 extra methods: "toplevel" and "unknown" */ member in struct:DataKeys
327 * methods into decreasing order of exclusive elapsed time.
342 /* If the elapsed times of two methods are equal, then sort them
365 * methods into decreasing order of inclusive elapsed time
2899 MethodEntry** methods = parseMethodEntries(dataKeys); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 81 # FIXME: move this methods under Capitalizer class below and remove duplications.
698 # Collection of JSONObject class methods that are likely to be overloaded in generated class.
699 # We must explicitly import all overloaded methods or they won't be available to user.
2334 methods="\\n".join(Generator.backend_method_implementation_list), variable
2344 methods="\\n".join(Generator.frontend_method_list))) variable
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prio.h 82 const PRIOMethods *methods; /* the I/O methods table */ member in struct:PRFileDesc
316 ** The I/O methods table provides procedural access to the functions of
496 * PR_GetDefaultIOMethods: Accessing the default methods table.
497 * You may get a pointer to the default methods table by calling this function.
499 * layer's methods table. You may NOT modify the table directly.
509 * file descriptor returned will contain the pointer to the methods table
514 PRDescIdentity ident, const PRIOMethods *methods);
    [all...]
  /external/doclava/src/com/google/doclava/
ClassInfo.java 112 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods,
124 // mAllSelfMethods will not contain *all* self methods. Only the methods that pass
126 mAllSelfMethods = methods;
141 // after providing new methods and new superclass info,clear any cached
142 // lists of self + superclass methods, ctors, etc.
418 public ArrayList<MethodInfo> methods() { method in class:ClassInfo
425 for (MethodInfo method : iface.methods()) {
433 for (MethodInfo method : superclass.methods()) {
529 private void gatherMethods(ClassInfo owner, ClassInfo cl, HashMap<String, MethodInfo> methods) {
539 HashMap<String, MethodInfo> methods = new HashMap<String, MethodInfo>(); local
898 ArrayList<MethodInfo> methods = selfMethods(); local
1048 ArrayList<MethodInfo> methods = selfMethods(); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 243 const struct tdb_methods *methods; member in struct:tdb_context
458 tdb->methods->tdb_brlock(tdb,FREELIST_TOP+4*list, ltype, op,
550 ret = tdb->methods->tdb_brlock(tdb, FREELIST_TOP+4*list, F_UNLCK,
587 if (tdb->methods->tdb_brlock(tdb, TRANSACTION_LOCK, ltype,
606 ret = tdb->methods->tdb_brlock(tdb, TRANSACTION_LOCK, F_UNLCK, F_SETLKW, 0, 1);
643 tdb->methods->tdb_brlock(tdb, FREELIST_TOP, ltype, op,
681 tdb->methods->tdb_brlock(tdb, FREELIST_TOP, F_UNLCK, F_SETLKW,
788 return off ? tdb->methods->tdb_brlock(tdb, off, F_RDLCK, F_SETLKW, 0, 1) : 0;
802 return tdb->methods->tdb_brlock(tdb, off, F_WRLCK, F_SETLK, 1, 1);
811 return tdb->methods->tdb_brlock(tdb, off, F_UNLCK, F_SETLK, 0, 1)
1795 const struct tdb_methods *methods = tdb->transaction->io_methods; local
1876 const struct tdb_methods *methods = tdb->transaction->io_methods; local
1981 const struct tdb_methods *methods; local
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java 143 exToString(buffer, " methods=",
1622 String[] methods = new String[keys.size()]; local
    [all...]
  /frameworks/base/core/jni/
android_opengl_GLES20.cpp 6032 static JNINativeMethod methods[] = { variable
    [all...]
android_opengl_GLES30.cpp 5050 static JNINativeMethod methods[] = { variable
    [all...]
com_google_android_gles_jni_GLImpl.cpp 8489 static JNINativeMethod methods[] = { variable
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 834 assertEquals("Incorrect number of methods", 10,
836 assertEquals("Incorrect number of methods", 11,
840 Method[] methods = Cls2.class.getMethods(); local
841 for (Method method : methods) {
848 fail("getMethods() did not return all methods");
853 methods = Cls3.class.getMethods();
854 for (Method method : methods) {
861 fail("getMethods() did not return all methods");
866 methods = Cls3.class.getMethods();
867 for (Method method : methods) {
    [all...]
  /prebuilts/tools/common/cglib/
cglib-nodep-2.2.3.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.2.2/
cglib-nodep-2.2.2.jar 
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.1/
easymock-3.1.jar 
  /art/runtime/
class_linker.cc 371 // Create runtime resolution and imt conflict methods. Also setup the default imt.
4347 mirror::ObjectArray<mirror::ArtMethod>* methods = new_class->GetDirectMethods(); local
    [all...]
  /external/clang/include/clang/AST/
DeclCXX.h 743 /// all method members of the class, including non-instance methods,
744 /// special methods, etc.
749 method_range methods() const { function in class:clang::CXXRecordDecl
753 /// \brief Method begin iterator. Iterates in the order the methods
    [all...]
DeclObjC.h 94 /// ObjC methods can be declared within 4 contexts: class interfaces,
100 /// Setter/getter instance methods:
111 /// the above methods are setMenu:, menu, replaceSubview:with:, and defaultMenu.
433 /// \brief Return overridden methods for the given \p Method.
536 // Iterator access to instance/class methods.
541 method_range methods() const { function in class:clang::ObjCContainerDecl
646 /// // no instance variables or methods.
726 /// the properties/methods. For example, this will be the '>', '}', or
    [all...]
  /external/wpa_supplicant_8/src/ap/
ap_config.h 121 } methods[EAP_MAX_METHODS]; member in struct:hostapd_eap_user
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-interpolation-1.19.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-interpolation/1.13/
plexus-interpolation-1.13.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-interpolation/1.14/
plexus-interpolation-1.14.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.14/
plexus-interpolation-1.14.jar 

Completed in 1003 milliseconds

1 2 3 4 5 6 78 91011>>