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

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/jni/
BindTest.cpp 210 static VMMethod methods[] = { variable
229 jamvm_registerClass("BindTest", methods);
android_opengl_GLES10Ext.cpp 467 static JNINativeMethod methods[] = { variable
476 err = android::AndroidRuntime::registerNativeMethods(_env, classPathName, methods, NELEM(methods));
  /frameworks/base/core/jni/android/graphics/
Matrix.cpp 308 static JNINativeMethod methods[] = { member in namespace:android
356 int result = AndroidRuntime::registerNativeMethods(env, "android/graphics/Matrix", methods,
357 sizeof(methods) / sizeof(methods[0]));
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 41 * or entire packages. By default sub-packages are included recursively, but methods are
81 List<Method> methods = Arrays.asList(testCaseClass.getMethods()); local
82 return select(methods, new TestMethodPredicate());
  /libcore/libart/src/main/java/java/lang/reflect/
Proxy.java 31 * {@code Proxy} defines methods for creating dynamic proxy classes and instances.
45 * Orders methods by their name, parameters, return type and inheritance relationship.
165 List<Method> methods = getMethods(interfaces); local
166 Collections.sort(methods, ORDER_BY_SIGNATURE_AND_SUBTYPE);
167 validateReturnTypes(methods);
168 List<Class<?>[]> exceptions = deduplicateAndGetExceptions(methods);
170 ArtMethod[] methodsArray = new ArtMethod[methods.size()];
172 methodsArray[i] = methods.get(i).getArtMethod();
297 * Fills {@code proxiedMethods} with the methods of {@code interfaces} and
300 private static void getMethodsRecursive(Class<?>[] interfaces, List<Method> methods) {
302 getMethodsRecursive(i.getInterfaces(), methods); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodOverridesTest.java 98 Method[] methods = Sub.class.getMethods(); local
100 for (Method method : methods) {
115 Method[] methods = PublicSub.class.getMethods(); local
117 for (Method method : methods) {
166 private Set<String> signatures(Method[] methods) {
168 for (Method method : methods) {
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 133 * {@code null-ok;} the class file field {@code methods}; only ever
136 private MethodList methods; field in class:DirectClassFile
306 return methods;
542 methods = mlParser.getList();
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 240 * Processes the methods of the given class.
251 MethodList methods = cf.getMethods(); local
252 int sz = methods.size();
255 Method one = methods.get(i);
268 // There's no code for native or abstract methods.
280 RopMethod rmeth = Ropper.convert(concrete, advice, methods);
331 * ...but only native methods are actually allowed to be
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
JUnitCodeGen.java 77 Method[] methods = parserClass.getDeclaredMethods(); local
78 for(Method method : methods) {
gUnitBaseTest.java 46 * which implements the essential methods for triggering
221 Method[] methods = _return.getDeclaredMethods(); local
222 for(Method method : methods) {
393 Method[] methods = _treeReturn.getDeclaredMethods(); local
394 for(Method method : methods) {
gUnitExecutor.java 359 Method[] methods = _return.getDeclaredMethods(); local
360 for(Method method : methods) {
527 Method[] methods = _treeReturn.getDeclaredMethods(); local
528 for(Method method : methods) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
LaunchedDebugger.java 233 if (!checkReplyPacketWithoutFail(reply, "ReferenceType::Methods command")) {
236 int methods = reply.getNextValueAsInt(); local
237 for (int i = 0; i < methods; i++) {
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_manager_impl_unittest.cc 388 InputMethodDescriptors methods; local
389 methods = manager_->GetComponentExtensionIMEManager()
398 EXPECT_TRUE(Contain(methods, *id_to_find));
401 EXPECT_TRUE(Contain(methods, *id_to_find));
404 EXPECT_TRUE(Contain(methods, *id_to_find));
493 scoped_ptr<InputMethodDescriptors> methods(
495 ASSERT_TRUE(methods.get());
496 EXPECT_EQ(2U, methods->size());
500 EXPECT_TRUE(id_to_find && Contain(*methods.get(), *id_to_find));
503 EXPECT_TRUE(id_to_find && Contain(*methods.get(), *id_to_find))
    [all...]
  /external/jhead/
main.c 771 static JNINativeMethod methods[] = { variable
781 * Register several native methods for one class.
803 * Register native methods for all classes we know about.
808 methods, NELEM(methods));
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckClassAdapter.java 53 * A {@link ClassAdapter} that checks that its methods are properly used. More
187 List methods = cn.methods; local
188 for (int i = 0; i < methods.size(); ++i) {
189 MethodNode method = (MethodNode) methods.get(i);
437 // Utility methods
  /external/proguard/src/proguard/classfile/
LibraryClass.java 40 public LibraryMethod[] methods; field in class:LibraryClass
284 for (int index = 0; index < methods.length; index++)
286 Method method = methods[index];
484 for (int index = 0; index < methods.length; index++)
486 Method method = methods[index];
ProgramClass.java 49 public ProgramMethod[] methods; field in class:ProgramClass
332 Method method = methods[index];
504 methods[index].accept(this, memberVisitor);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 117 HashSet<String> methods = new HashSet<String>(); local
120 if (!methods.add(methodDescriptor)) {
  /external/wpa_supplicant_8/src/eap_server/
eap.h 28 } methods[EAP_MAX_METHODS]; member in struct:eap_user
  /external/wpa_supplicant_8/src/wps/
wps_common.c 529 u16 methods = 0; local
532 /* Default to enabling methods based on build configuration */
533 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
534 methods |= WPS_CONFIG_VIRT_DISPLAY;
536 methods |= WPS_CONFIG_NFC_INTERFACE;
540 methods |= WPS_CONFIG_ETHERNET;
542 methods |= WPS_CONFIG_LABEL;
544 methods |= WPS_CONFIG_DISPLAY;
546 methods |= WPS_CONFIG_EXT_NFC_TOKEN;
548 methods |= WPS_CONFIG_INT_NFC_TOKEN
    [all...]
  /art/runtime/
jni_internal_test.cc 459 JNINativeMethod methods[] = { { nullptr, "()V", native_function } }; local
460 EXPECT_EQ(env_->RegisterNatives(jlobject, methods, 1), JNI_ERR);
466 JNINativeMethod methods[] = { { "notify", nullptr, native_function } }; local
467 EXPECT_EQ(env_->RegisterNatives(jlobject, methods, 1), JNI_ERR);
473 JNINativeMethod methods[] = { { "notify", "()V", nullptr } }; local
474 EXPECT_EQ(env_->RegisterNatives(jlobject, methods, 1), JNI_ERR);
480 JNINativeMethod methods[] = { { "foo", "()V", native_function } }; local
481 EXPECT_EQ(env_->RegisterNatives(jlobject, methods, 1), JNI_ERR);
485 // Check that registering non-native methods causes a NoSuchMethodError.
487 JNINativeMethod methods[] = { { "equals", "(Ljava/lang/Object;)Z", native_function } } local
494 JNINativeMethod methods[] = { { "notify", "()V", native_function } }; local
502 JNINativeMethod methods[] = { }; local
511 JNINativeMethod methods[] = { }; local
519 JNINativeMethod methods[] = { }; local
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexClassImpl.java 52 private List<DexMethod> methods; field in class:DexClassImpl
226 EncodedMethod[] methods = new EncodedMethod[size]; local
227 for (int i = 0; i < methods.length; i++) {
228 methods[i] = new EncodedMethod();
229 methods[i].method_idx_diff = buffer.readUleb128();
230 methods[i].access_flags = buffer.readUleb128();
231 methods[i].code_off = buffer.readUleb128();
233 return methods;
277 if (methods == null) {
278 methods = new ArrayList<DexMethod>()
    [all...]
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 184 Set<IMethod> methods = new HashSet<IMethod>(); local
185 for (MethodDoc method : classDoc.methods()) {
186 methods.add(convertMethod(method));
188 c.setMethods(methods);
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 73 /** {@code non-null:} list of methods from the class whose method is being converted */
74 private final MethodList methods; field in class:RopperMachine
131 * @param methods {@code non-null;} list of methods defined by the class
135 TranslationAdvice advice, MethodList methods) {
138 if (methods == null) {
139 throw new NullPointerException("methods == null");
152 this.methods = methods;
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPTestCase.java 194 checkReplyPacket(reply, "ReferenceType::Methods command");
195 int methods = reply.getNextValueAsInt(); local
196 for (int i = 0; i < methods; i++) {
242 checkReplyPacket(reply, "ReferenceType::Methods command");
243 int methods = reply.getNextValueAsInt(); local
244 for (int i = 0; i < methods; i++) {

Completed in 1260 milliseconds

1 2 3 45 6 7 8 91011>>