HomeSort by relevance Sort by last modified time
    Searched defs:methodId (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /dalvik/dx/src/com/android/dx/command/grep/
Grep.java 23 import com.android.dex.MethodId;
78 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
79 return className + "." + dex.strings().get(methodId.getNameIndex());
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 23 import com.android.dex.MethodId;
91 int methodId = one.getIndex();
92 if (methodIds.contains(methodId)) {
93 out.println(location() + ": method reference " + dex.methodIds().get(methodId)
103 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
104 return className + "." + dex.strings().get(methodId.getNameIndex());
176 for (MethodId method : dex.methodIds()) {
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 101 int methodId = one.getIndex();
102 int mappedId = indexMap.adjustMethod(methodId);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
EventLocationEventTestCase.java 95 long methodId = getMethodID(typeId, getExpectedLocationMethodName());
98 ReplyPacket replyPacket = getLineTable(typeId, methodId);
111 typeId, methodId, idx);
EventWithExceptionTest.java 321 long methodId = getMethodID(classId, TEST_METHOD_NAME);
323 assertEquals("Invalid method ID", methodId, eventLocation.methodID);
379 long methodId = getMethodID(classId, TEST_METHOD_NAME);
380 checkLocation(classId, methodId, eventLocation);
397 if (expectedClassId != actualLocation.classID || expectedMethodId != actualLocation.methodID) {
401 String actualMethodName = getMethodName(actualLocation.classID, actualLocation.methodID);
402 fail(String.format("Invalid method, expected \"%s.%s\" (classId=%d, methodId=%d)" +
403 " but got \"%s.%s\" (classId=%d, methodId=%d)",
405 actualClassName, actualMethodName, actualLocation.classID, actualLocation.methodID));
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/client/
Method.java 41 final int methodId;
46 boolean isNative, boolean isVarArgs, boolean isMethod, boolean isConstructor, int methodId, Annotation[] annotations) {
62 this.methodId = methodId;
  /frameworks/base/tools/layoutlib/bridge/src/android/animation/
PropertyValuesHolder_Delegate.java 70 Long methodId = METHOD_NAME_TO_ID.get(methodIndexName);
72 if (methodId != null) {
74 return methodId;
90 methodId = sNextId++;
91 ID_TO_METHOD.put(methodId, method);
92 METHOD_NAME_TO_ID.put(methodIndexName, methodId);
94 return methodId;
102 private static void callMethod(Object target, long methodID, Object... args) {
103 Method method = ID_TO_METHOD.get(methodID);
139 /*package*/ static void nCallIntMethod(Object target, long methodID, int arg)
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
RawDexFile.java 189 for (MethodIdItem methodId : methodIds) {
190 methodId.write(file);
362 for (MethodIdItem methodId : methodIds) {
363 methodId.incrementIndex(kind, insertedIdx);
  /external/javassist/src/main/javassist/tools/rmi/
AppletServer.java 150 int methodId = in.readInt();
157 rvalue = convertRvalue(eo.methods[methodId].invoke(eo.object,
  /art/tools/dmtracedump/
createtesttrace.cc 69 uint32_t methodId;
357 uint32_t methodId = 0;
359 if (pRecord->methodId) continue;
360 uint32_t id = ++methodId << 2;
361 pRecord->methodId = id;
367 if (pNext->methodId) continue;
368 if (strcmp(pRecord->fullName, pNext->fullName) == 0) pNext->methodId = id;
371 fprintf(keyFp, "%#x %s m ()\n", pRecord->methodId,
374 fprintf(keyFp, "%#x %s %s ()\n", pRecord->methodId,
377 fprintf(keyFp, "%#x %s %s %s\n", pRecord->methodId,
    [all...]
tracedump.cc 164 int64_t methodId;
296 void initMethodEntry(MethodEntry* method, int64_t methodId, const char* className,
299 method->methodId = methodId;
337 int64_t idA = methodA->methodId;
338 int64_t idB = methodB->methodId;
367 int64_t idA = methodA->methodId;
368 int64_t idB = methodB->methodId;
399 int64_t idA = methodA->methodId;
400 int64_t idB = methodB->methodId;
    [all...]
  /external/lzma/C/
XzDec.c 59 UInt32 methodId;
79 if (p->methodId == XZ_ID_Delta)
90 switch(p->methodId)
120 if (p->methodId == XZ_ID_Delta)
166 switch(p->methodId)
215 decoder->methodId = (UInt32)id;
374 SRes MixCoder_SetFromMethod(CMixCoder *p, int coderIndex, UInt64 methodId)
377 p->ids[coderIndex] = methodId;
378 switch(methodId)
387 return BraState_SetFromMethod(sc, methodId, 0, p->alloc);
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.cpp 515 int32_t methodId;
516 status_t ret = request.readInt32(&methodId);
522 switch (methodId) {
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 412 MethodIdItem methodId = mMethodIds[i];
414 classNameFromTypeIndex(methodId.classIdx),
415 argArrayFromProtoIndex(methodId.protoIdx),
416 returnTypeFromProtoIndex(methodId.protoIdx),
417 mStrings[methodId.nameIdx]);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/gen/
ReflectionCacheSourceCreator.java 78 int methodId;
210 return new Integer(o1.methodId).compareTo(o2.methodId);
377 pbn("private native " + (isVoid ? "Object" : stub.returnType) + " m" + stub.methodId + "(");
399 pbn("private static " + stub.returnType + " m" + stub.methodId + "(");
651 stub.methodId = nextInvokableId++;
678 + stub.isMethod + ", " + stub.isConstructor + ", " + stub.methodId + "," + getAnnotations(m.getDeclaredAnnotations()) + "),");
834 SwitchedCodeBlock pc = new SwitchedCodeBlock("m.methodId");
854 pbn("return m" + stub.methodId + "(");
857 pc.add(stub.methodId, buffer.toString())
    [all...]
  /frameworks/base/core/jni/
AndroidRuntime.cpp 289 jmethodID methodId;
298 methodId = env->GetStaticMethodID(clazz, "main", "([Ljava/lang/String;)V");
299 if (methodId == NULL) {
320 env->CallStaticVoidMethod(clazz, methodId, strArray);
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/stock/
ProxyBuilder.java 25 import com.google.dexmaker.MethodId;
366 MethodId<InvocationHandler, Object> methodInvoke = handlerType.getMethod(TypeId.OBJECT,
421 MethodId<T, ?> superMethod = superclassType.getMethod(resultType, name, argTypes);
422 MethodId<?, ?> methodId = generatedType.getMethod(resultType, name, argTypes);
423 Code code = dexMaker.declare(methodId, PUBLIC);
493 MethodId<G, ?> callsSuperMethod = generatedType.getMethod(
513 private static void invokeSuper(MethodId superMethod, Code superCode,
519 MethodId<?, ?> unboxMethod = PRIMITIVE_TYPE_TO_UNBOX_METHOD.get(parameter.getType());
568 MethodId<?, ?> method = generatedType.getConstructor(types)
    [all...]
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_gatt.cpp     [all...]
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/24.4.0-beta3/
perflib-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/24.4.0-beta6/
perflib-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/24.5.0/
perflib-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0/
perflib-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0-alpha1/
perflib-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0-alpha3/
perflib-25.0.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0-alpha5/
perflib-25.0.0-alpha5.jar 

Completed in 1637 milliseconds

1 2 3 4 5