HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 751 - 775 of 4969) sorted by null

<<31323334353637383940>>

  /external/proguard/src/proguard/classfile/attribute/
DeprecatedAttribute.java 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
64 attributeVisitor.visitDeprecatedAttribute(clazz, method, this);
ExceptionsAttribute.java 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
64 attributeVisitor.visitExceptionsAttribute(clazz, method, this);
SyntheticAttribute.java 62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
64 attributeVisitor.visitSyntheticAttribute(clazz, method, this);
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationDefaultAttribute.java 69 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
71 attributeVisitor.visitAnnotationDefaultAttribute(clazz, method, this);
RuntimeInvisibleAnnotationsAttribute.java 66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
68 attributeVisitor.visitRuntimeInvisibleAnnotationsAttribute(clazz, method, this);
RuntimeVisibleAnnotationsAttribute.java 66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
68 attributeVisitor.visitRuntimeVisibleAnnotationsAttribute(clazz, method, this);
  /external/proguard/src/proguard/classfile/attribute/preverification/
SameZeroFrame.java 62 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor)
64 stackMapFrameVisitor.visitSameZeroFrame(clazz, method, codeAttribute, offset, this);
  /external/proguard/src/proguard/classfile/editor/
StackSizeUpdater.java 46 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
49 stackSizeComputer.visitCodeAttribute(clazz, method, codeAttribute);
  /external/proguard/src/proguard/classfile/instruction/visitor/
AllInstructionVisitor.java 52 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
54 codeAttribute.instructionsAccept(clazz, method, instructionVisitor);
  /external/proguard/src/proguard/classfile/visitor/
ExceptionExcludedOffsetFilter.java 57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
ExceptionHandlerFilter.java 61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
67 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
ExceptionOffsetFilter.java 57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
ExceptionRangeFilter.java 61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
65 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
  /external/proguard/src/proguard/optimize/
TailRecursionSimplifier.java 58 private Method targetMethod;
89 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
91 int accessFlags = method.getAccessFlags();
93 if (// Only check the method if it is private, static, or final.
98 // Only check the method if it is not synchronized, etc.
106 // method.getName(clazz).equals("abc");
108 targetMethod = method;
113 copyCode(clazz, method, codeAttribute);
118 codeAttributeComposer.visitCodeAttribute(clazz, method, codeAttribute)
    [all...]
  /external/proguard/src/proguard/optimize/info/
MethodOptimizationInfo.java 29 * a method.
52 * Creates a new MethodOptimizationInfo for the given method.
54 public MethodOptimizationInfo(Clazz clazz, Method method)
59 ClassUtil.internalMethodParameterCount(method.getDescriptor(clazz));
61 if ((method.getAccessFlags() & ClassConstants.INTERNAL_ACC_STATIC) == 0)
288 public static void setMethodOptimizationInfo(Clazz clazz, Method method)
290 MethodLinker.lastMember(method).setVisitorInfo(new MethodOptimizationInfo(clazz, method));
    [all...]
  /external/webkit/WebCore/platform/mac/
WebCoreObjCExtras.mm 41 // This method relies on threading being initialized by the caller, otherwise
51 static inline IMP method_getImplementation(Method method)
53 return method->method_imp;
63 Method method = class_getInstanceMethod(pair->first, @selector(dealloc));
65 IMP imp = method_getImplementation(method);
  /external/webkit/WebKit/mac/Plugins/
WebJavaPlugIn.h 53 @method webPlugInGetApplet
56 This method is only implemented by the Java plug-in.
61 @method webPlugInCallJava:isStatic:returnType:method:arguments:callingURL:exceptionDescription:
62 @param object The Java instance that will receive the method call.
63 @param isStatic A flag that indicated whether the method is a class method.
64 @param returnType The return type of the Java method.
65 @param method The ID of the Java method to call
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerTest.java 135 method = "create",
140 method = "setAudioStreamType",
145 method = "setWakeMode",
150 method = "isPlaying",
155 method = "start",
160 method = "setLooping",
165 method = "isLooping",
170 method = "getCurrentPosition",
175 method = "seekTo",
180 method = "pause"
    [all...]
  /dalvik/vm/native/
dalvik_system_SamplingProfiler.c 54 /** This method is in the call stack. */
56 /** VM is in this method. */
65 const Method* method; // 4 bytes member in struct:__anon766
66 /** Sample counts for method divided by thread type and state. */
133 if (oldEntry.method != NULL) {
135 int start = hash(oldEntry.method) & newSet.mask;
137 while (newSet.entries[i].method != NULL) {
152 /** Increments counter for method in set. */
153 static void countMethod(SampleSet* set, const Method* method
230 const Method* method = saveArea->method; local
549 const Method* method = mc->method; local
    [all...]
  /dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/
BigDecimalConvertTest.java 47 notes = "This is a complete subset of tests for doubleValue method.",
48 method = "doubleValue",
63 notes = "This is a complete subset of tests for doubleValue method.",
64 method = "doubleValue",
79 notes = "This is a complete subset of tests for doubleValue method.",
80 method = "doubleValue",
95 notes = "This is a complete subset of tests for doubleValue method.",
96 method = "doubleValue",
111 notes = "This is a complete subset of tests for doubleValue method.",
112 method = "doubleValue"
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 87 method = "Window",
92 method = "getContext",
112 method = "addFlags",
117 method = "clearFlags",
122 method = "setFlags",
151 // Test if the callback method is called by system
159 method = "findViewById",
174 * available in this method. But it's not proper to setAttributes arbitrarily.
176 * there is just one method, onWindowAttributesChanged, used.
182 method = "getAttributes"
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
String2Test.java 64 method = "String",
68 // Test for method java.lang.String()
78 method = "String",
82 // Test for method java.lang.String(byte [])
93 method = "String",
98 // Test for method java.lang.String(byte [], int)
111 method = "String",
115 // Test for method java.lang.String(byte [], int, int)
134 method = "String",
139 // Test for method java.lang.String(byte [], int, int, int
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
CursorWindowTest.java 48 method = "clear",
54 method = "setStartPosition",
60 method = "putString",
66 method = "putNull",
72 method = "setNumColumns",
78 method = "freeLastRow",
127 method = "putNull",
133 method = "getString",
139 method = "getBlob",
145 method = "getDouble"
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
PictureDrawableTest.java 36 method = "PictureDrawable",
46 method = "draw",
78 method = "getIntrinsicWidth",
83 method = "getIntrinsicHeight",
103 method = "getOpacity",
113 method = "setAlpha",
123 method = "setColorFilter",
135 method = "setDither",
145 method = "setFilterBitmap",
156 method = "getPicture"
    [all...]
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiInfoTest.java 117 method = "getMacAddress",
122 method = "getIpAddress",
127 method = "getDetailedStateOf",
132 method = "getNetworkId",
137 method = "getSSID",
142 method = "getBSSID",
147 method = "getSupplicantState",
152 method = "getLinkSpeed",
157 method = "toString",
162 method = "getRssi"
    [all...]

Completed in 396 milliseconds

<<31323334353637383940>>