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

1 2 3 4 5 67 8 91011>>

  /art/libdexfile/dex/
art_dex_file_loader_test.cc 122 auto methods = accessor.GetMethods(); local
123 auto cur_method = methods.begin();
135 // Check all virtual methods.
201 ASSERT_TRUE(cur_method != methods.end());
  /art/runtime/jit/
profiling_info_test.cc 59 std::vector<ArtMethod*> methods; local
61 methods.push_back(&m);
63 return methods;
101 const std::vector<ArtMethod*>& methods,
107 for (ArtMethod* method : methods) {
128 // Saves the given art methods to a profile backed by 'filename' and adds
133 const std::vector<ArtMethod*>& methods,
139 for (ArtMethod* method : methods) {
242 // Save virtual methods from Main.
261 // Save virtual methods from Second
    [all...]
  /art/test/910-methods/src/art/
Test910.java 117 Method methods[] = NestedSynthetic.class.getDeclaredMethods(); local
118 for (Method m : methods) {
  /art/test/ti-agent/
jni_binder.cc 232 // Use JVMTI to get the methods.
234 jmethodID* methods; local
235 jvmtiError methods_result = jvmti_env->GetClassMethods(klass, &method_count, &methods);
241 jvmtiError mod_result = jvmti_env->GetMethodModifiers(methods[i], &modifiers);
245 BindMethod(jvmti_env, env, klass, methods[i]);
249 CheckJvmtiError(jvmti_env, Deallocate(jvmti_env, methods));
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_StaticNonce.c 324 static JNINativeMethod methods[] = { variable
367 methods, sizeof(methods) / sizeof(JNINativeMethod));
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 51 * Utility methods that translate various classfile attributes
415 MethodList methods = cf.getMethods(); local
416 int sz = methods.size();
422 Method one = methods.get(i);
  /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];
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
Configurator.java 165 Method[] methods = clazz.getMethods(); local
168 for (Method method : methods) {
  /external/apache-commons-bcel/src/examples/
ClassDumper.java 54 private Method[] methods; // methods defined in the class field in class:ClassDumper
70 * the contained data, i.e., constants, methods, fields and commands.
92 // process class methods, i.e., the functions in the class
254 * Process information about the methods of the class.
261 methods = new Method[methods_count];
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
ClassParser.java 58 private Method[] methods; // methods defined in the class field in class:ClassParser
109 * the contained data, i.e., constants, methods, fields and commands.
149 /****************** Read class fields and methods ***************/
152 // Read class methods, i.e., the functions in the class
191 access_flags, constant_pool, interfaces, fields, methods, attributes, is_zip
257 /******************** Private utility methods **********************/
286 * Read information about the methods of the class.
292 methods = new Method[methods_count];
294 methods[i] = new Method(dataInputStream, constant_pool)
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
BCELifier.java 128 final Method[] methods = clazz.getMethods(); local
129 for (int i = 0; i < methods.length; i++) {
131 methods[i].accept(this);
146 final Method[] methods = _clazz.getMethods(); local
147 for (int i = 0; i < methods.length; i++) {
ConstantHTML.java 50 private final Method[] methods; field in class:ConstantHTML
53 ConstantHTML(final String dir, final String class_name, final String class_package, final Method[] methods,
58 this.methods = methods;
171 + "\" TARGET=Methods>" + field_name + "</A>";
225 for (int i = 0; i < methods.length; i++) {
226 final String cmp = methods[i].getName() + methods[i].getSignature();
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
Pass3bVerifier.java 340 final Method[] methods = jc.getMethods(); // Method no "method_no" exists, we ran Pass3a before on it! local
344 final MethodGen mg = new MethodGen(methods[method_no], myOwner.getClassName(), constantPoolGen);
382 ce.extendMessage("Constraint violated in method '"+methods[method_no]+"':\n","");
393 "', method '"+methods[method_no]+"'. Original RuntimeException's stack trace:\n---\n"+sw+"---\n", re);
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/
LocalVariableTypeTableTestCase.java 70 final Method[] methods = clazz.getMethods(); local
72 for (int i = 0; i < methods.length; i++) {
73 final Method method = methods[i];
75 methods[i] = injection(clazz, method, cp, findFirstStringLocalVariableOffset(method));
PerformanceTest.java 99 final Method[] methods = cg.getMethods(); local
100 for (final Method m : methods) {
  /external/cldr/tools/java/org/unicode/cldr/tool/
RegexModify.java 90 Map<String, Class<Function>> methods = getMethods(class1); local
91 Class result = methods.get(applyFunction);
95 throw new IllegalArgumentException("-a value must be in " + methods.keySet()
  /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/drrickorang/LoopbackApp/app/src/main/cpp/
loopback.h 78 native_engine_t *methods; member in struct:__anon20727
  /external/emma/core/java12/com/vladium/emma/report/
ClassItem.java 52 final MethodDescriptor [] methods = m_cls.getMethods (); local
55 for (int m = 0, mLimit = methods.length; m < mLimit; ++ m)
57 final int mFirstLine = methods [m].getFirstLine ();
112 // info is available; instead, lines from all methods belonging
120 for (Iterator methods = getChildren (); methods.hasNext (); )
122 final MethodItem method = (MethodItem) methods.next ();
  /external/emma/core/java12/com/vladium/jcd/parser/
ClassDefParser.java 125 methods (); method
260 void methods () throws IOException method in class:ClassDefParser.classParser
  /external/guava/guava-testlib/src/com/google/common/testing/
ForwardingWrapperTester.java 75 Method[] methods = getMostConcreteMethods(interfaceType); local
76 AccessibleObject.setAccessible(methods, true);
77 for (Method method : methods) {
78 // Under java 8, interfaces can have default methods that aren't abstract.
108 /** Returns the most concrete public methods from {@code type}. */
110 Method[] methods = type.getMethods(); local
111 for (int i = 0; i < methods.length; i++) {
113 methods[i] = type.getMethod(methods[i].getName(), methods[i].getParameterTypes())
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
FauxveridesTest.java 41 * Tests that all {@code public static} methods "inherited" from superclasses
117 assertEquals("Must hide public static methods from ancestor classes",
132 Set<MethodSignature> methods = newHashSet(); local
134 methods.addAll(getPublicStaticMethods(clazz));
136 return methods;
  /external/guice/core/src/com/google/inject/internal/
ProxyFactory.java 43 * method matchers to come up with the set of intercepted methods.
54 private final List<Method> methods; field in class:ProxyFactory
58 * PUBLIC is default; it's used if all the methods we're intercepting are public. This impacts
80 methods = ImmutableList.of();
85 // Get list of methods from cglib.
86 methods = Lists.newArrayList();
87 Enhancer.getMethods(declaringClass, null, methods);
91 for (Method method : methods) {
95 // Iterate over aspects and add interceptors for the methods they apply to
123 callbacks = new Callback[methods.size()]
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
CoverageBuilderTest.java 65 final Collection<IMethodCoverage> methods = c.getMethods(); local
66 assertEquals(1, methods.size());
67 IMethodCoverage m = methods.iterator().next();
97 final Collection<IMethodCoverage> methods = c.getMethods(); local
98 assertEquals(1, methods.size());
99 IMethodCoverage m = methods.iterator().next();
259 MethodCoverageImpl... methods) {
263 for (MethodCoverageImpl m : methods) {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassDeclaration.java 81 /// Public methods
136 List<ResolvedMethodDeclaration> methods = new ArrayList<>(); local
142 methods.add(methodDeclaration);
148 methods.add(ref.getCorrespondingDeclaration());
154 methods.add(ref.getCorrespondingDeclaration());
157 return MethodResolutionLogic.findMostApplicable(methods, name, argumentsTypes, typeSolver);
173 List<MethodUsage> methods = new ArrayList<>(); local
183 methods.add(methodUsage);
189 methods.add(ref.get());
195 methods.add(ref.get())
    [all...]

Completed in 1253 milliseconds

1 2 3 4 5 67 8 91011>>