HomeSort by relevance Sort by last modified time
    Searched defs:methods (Results 251 - 275 of 386) sorted by null

<<111213141516

  /external/turbine/java/com/google/turbine/bytecode/
ClassFile.java 39 private final List<MethodInfo> methods; field in class:ClassFile
52 List<MethodInfo> methods,
63 this.methods = methods;
96 /** Methods declared by this class or interfaces type. */
97 public List<MethodInfo> methods() { method in class:ClassFile
98 return methods;
  /external/wpa_supplicant_8/src/eap_server/
eap.h 29 } methods[EAP_MAX_METHODS]; member in struct:eap_user
  /art/dexdump/
dexdump.cc 29 * - no "deprecated" on fields and methods
32 * - class shows declared fields and methods; does not show inherited fields
611 // Fields and methods.
661 const dex::MethodAnnotationsItem* methods = pDexFile->GetMethodAnnotations(dir); local
681 // Annotations on methods.
682 if (methods != nullptr) {
684 const u4 method_idx = methods[i].method_idx_;
688 dumpAnnotationSetItem(pDexFile, pDexFile->GetMethodAnnotationSetItem(methods[i]));
    [all...]
  /art/openjdkjvmti/
ti_redefine.cc 203 // This visitor walks thread stacks and allocates and sets up the obsolete methods. It also does
222 // Returns true if we successfully installed obsolete methods on this thread, filling
239 art::ScopedAssertNoThreadSuspension snts("Fixing up the stack for obsolete methods.");
272 // The linear allocator we should use to make new methods.
274 // The set of all methods which could be obsoleted.
608 // This creates any ArtMethod* structures needed for obsolete methods and ensures that the stack is
617 // This holds pointers to the obsolete methods map fields which are updated as needed.
620 // Add all the declared methods to the map
625 << "methods that have already been compiled.";
627 // It is possible to simply filter out some methods where they cannot really become obsolete
1563 art::ObjPtr<art::mirror::PointerArray> methods = ext->GetObsoleteMethods(); local
    [all...]
  /art/profman/
profile_assistant_test.cc 292 extra_args.push_back("--dump-classes-and-methods");
498 // The new profile info will contain the methods with indices 0-100.
506 // The reference profile info will contain the methods with indices 50-150.
721 // Verify that the profile has matching methods.
887 std::vector<std::string> methods = { local
    [all...]
  /art/runtime/jni/
jni_internal_test.cc 325 JNINativeMethod methods[] = { }; local
326 EXPECT_EQ(env_->RegisterNatives(nullptr, methods, 0), JNI_ERR);
331 // Passing methods as null is a failure.
334 check_jni_abort_catcher->Check("methods == null");
651 JNINativeMethod methods[] = { { method_name, method_sig, native_fnptr } }; local
652 ASSERT_EQ(JNI_OK, env_->RegisterNatives(jklass_, methods, 1))
1046 JNINativeMethod methods[] = { { nullptr, "()V", native_function } }; local
1053 JNINativeMethod methods[] = { { "notify", nullptr, native_function } }; local
1060 JNINativeMethod methods[] = { { "notify", "()V", nullptr } }; local
1067 JNINativeMethod methods[] = { { "foo", "()V", native_function } }; local
1074 JNINativeMethod methods[] = { { "equals", "(Ljava\/lang\/Object;)Z", native_function } }; local
1082 JNINativeMethod methods[] = { { "notify", "()V", native_function } }; local
1090 JNINativeMethod methods[] = { }; local
1099 JNINativeMethod methods[] = { }; local
    [all...]
  /art/runtime/
stack.cc 622 // Runtime methods have null declaring class.
634 // We get the canonical method as copied methods may have their declaring
648 const ImageSection& methods = header.GetMethodsSection(); local
651 if (methods.Contains(offset) || runtime_methods.Contains(offset)) {
681 // Note: Thus does _not_ include "this" for non-static methods.
707 // This goes before IsProxyMethod since runtime methods have a null declaring class.
816 // JNI methods cannot have any inlined frames.
    [all...]
  /art/test/046-reflect/src/
Main.java 485 // Getting the declared methods doesn't run <clinit>.
486 Method[] methods = niuClass.getDeclaredMethods(); local
487 System.out.println("got methods");
587 System.out.println("ERROR: methods shouldn't have reference equality");
589 System.out.println("methods are unique");
592 System.out.println("methods are .equals");
594 System.out.println("ERROR: methods fail equality");
  /art/test/064-field-access/src/
Main.java 542 Method[] methods; local
550 methods = SamePackage.class.getDeclaredMethods();
551 check(methods.length == 4);
558 methods = PublicClass.class.getDeclaredMethods();
559 check(methods.length == 4);
565 methods = PublicClass.class.getSuperclass().getDeclaredMethods();
566 check(methods.length == 4);
631 for (Method m : methods) {
  /cts/tools/utils/
DescriptionGenerator.java 538 * Get all the TestMethod from a ClassDoc, including inherited methods.
545 Collection<MethodDoc> methods = getAllMethods(clazz); local
548 Iterator<MethodDoc> iterator = methods.iterator();
607 * Get all MethodDoc of a ClassDoc, including inherited methods.
613 ArrayList<MethodDoc> methods = new ArrayList<MethodDoc>(); local
615 for (MethodDoc method : clazz.methods()) {
616 methods.add(method);
621 for (MethodDoc method : superClass.methods()) {
622 methods.add(method);
628 return methods;
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
JavaClass.java 40 * fields, methods and commands contained in a Java .class file.
64 private Method[] methods; // methods defined in the class field in class:JavaClass
115 * @param methods Class methods
121 Field[] fields, Method[] methods, Attribute[] attributes, final byte source) {
132 if (methods == null) {
133 methods = new Method[0];
143 this.methods = methods;
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
Pass2Verifier.java 130 * arrays of methods.
144 * the "Code" array of methods in a few cases. Please
187 * Pass2 anyway to verify no final methods are overridden
234 * Ensures that <B>final</B> methods are not overridden.
253 final Method[] methods = jc.getMethods(); local
254 for (final Method method : methods) {
268 if (!method.isStatic()) { // static methods don't inherit
273 if (!method.isStatic()) { // static methods don't inherit
313 * The visitXXX() methods throw ClassConstraintException instances otherwise.
617 // METHODS (vmspec2 4.6) /
    [all...]
  /external/guice/core/src/com/google/inject/spi/
InjectionPoint.java 311 * extensions that need to build dependency graphs from arbitrary methods.
325 * fields are returned and then all methods. Within the fields, supertype fields are returned
326 * before subtype fields. Similarly, supertype methods are returned before subtype methods.
354 * fields are returned and then all methods. Within the fields, supertype fields are returned
355 * before subtype fields. Similarly, supertype methods are returned before subtype methods.
369 * fields are returned and then all methods. Within the fields, supertype fields are returned
370 * before subtype fields. Similarly, supertype methods are returned before subtype methods
582 List<InjectableMethod> methods = new ArrayList<>(); local
590 List<InjectableMethod> methods = bySignature.get(signature); local
632 List<InjectableMethod> methods = bySignature.get(signature); local
766 Method[] methods = type.getRawType().getDeclaredMethods(); local
    [all...]
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
PerfTest.java 33 * define one or more instance methods with names beginning with "test" (case
123 * object as the test methods.
138 Method[] methods = refer.getClass().getDeclaredMethods(); local
139 for (int i = 0; i < methods.length; i++) {
140 String org = methods[i].getName();
143 // Note: methods named 'test()' are ignored
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
GatherAPIData.java 215 doDocs(cdoc.methods());
229 // the values and valueOf enum methods. The position of the
340 // ClassDoc.isAbstract, superClass, interfaces, fields, methods, constructors, innerClasses
GatherAPIDataOld.java 206 doDocs(cdoc.methods());
264 // ClassDoc.isAbstract, superClass, interfaces, fields, methods, constructors, innerClasses
  /external/protobuf/src/google/protobuf/
api.pb.cc 145 "\n\004name\030\001 \001(\t\022(\n\007methods\030\002 \003(\0132\027.google.p"
305 // repeated .google.protobuf.Method methods = 2;
435 // repeated .google.protobuf.Method methods = 2;
438 2, this->methods(i), output);
492 // repeated .google.protobuf.Method methods = 2;
496 2, this->methods(i), target);
572 // repeated .google.protobuf.Method methods = 2;
577 this->methods(i));
729 // repeated .google.protobuf.Method methods = 2;
736 const ::google::protobuf::Method& Api::methods(int index) const function in class:google::protobuf::Api
754 Api::methods() const { function in class:google::protobuf::Api
    [all...]
  /external/selinux/python/sepolicy/sepolicy/
__init__.py 99 methods = [] variable
793 global methods
794 if len(methods) > 0:
795 return methods
803 methods = list(ifs.interfaces.keys())
809 methods.sort()
810 return methods
    [all...]
  /external/testng/src/main/java/org/testng/
SuiteRunner.java 74 /** The list of all the methods invoked during this run */
182 // Add the methods found in this test to our global count
283 // Get the invoker and find all the suite level methods
299 // Invoke beforeSuite methods (the invoker can be null
333 // Invoke afterSuite methods
459 ITestNGMethod[] methods = tr.getAllTestMethods(); local
460 for (ITestNGMethod m : methods) {
496 Collection<ITestNGMethod> methods = included ? tr.getInvokedMethods() : tr.getExcludedMethods(); local
497 for (ITestNGMethod m : methods) {
  /external/testng/src/main/java/org/testng/reporters/
SuiteHTMLReporter.java 36 public static final String METHODS_CHRONOLOGICAL = "methods.html";
37 public static final String METHODS_ALPHABETICAL = "methods-alphabetical.html";
41 public static final String METHODS_NOT_RUN = "methods-not-run.html";
176 StringBuffer sb2 = new StringBuffer("<h2>Methods that were not run</h2><table>\n");
252 ITestNGMethod[][] methods = new ITestNGMethod[][] { local
264 .append(dumpMethods(methods[i]))
270 // sb.append("<div>").append(SP3).append("Test methods\n")
343 * Generate information about the methods that were run
351 bw.append("<h2>Methods run, sorted chronologically</h2>");
503 * Generate information about methods and group
519 Collection<ITestNGMethod> methods = groups.get(group); local
577 ITestNGMethod[] methods = sr.getTestContext().getAllTestMethods(); local
    [all...]
  /external/turbine/java/com/google/turbine/lower/
Lower.java 184 /* methods= */ ImmutableList.of(),
247 List<ClassFile.MethodInfo> methods = new ArrayList<>(); local
248 for (MethodInfo m : info.methods()) {
253 methods.add(lowerMethod(m, sym));
278 methods,
479 // type variables can only be declared by methods and classes,
480 // and we've already handled methods
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 1250 * (MAC addr, UUID-E, pri dev type, config methods,
1624 int methods = var.toInt(); local
    [all...]
  /art/compiler/jni/
jni_compiler_test.cc 84 // (Match the name suffixes of native methods in MyClassNatives.java)
313 JNINativeMethod methods[] = { { method_name, method_sig, native_fnptr } }; local
314 ASSERT_EQ(JNI_OK, env_->RegisterNatives(jklass_, methods, 1))
332 // We have to list the methods here so we can share them between default and generic JNI.
394 // 1) JNI stubs (lookup via dlsym) when methods aren't explicitly registered
    [all...]
  /art/dex2oat/
dex2oat_test.cc 1338 std::vector<uint16_t> methods; local
2173 std::vector<uint16_t> methods; local
    [all...]
  /art/dexlayout/
dex_ir_builder.cc 329 * Get all the types, strings, methods, and fields referred to from bytecode.
749 const dex::MethodAnnotationsItem* methods local
    [all...]

Completed in 1873 milliseconds

<<111213141516