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

<<11121314151617181920>>

  /external/webkit/WebKit/mac/History/
WebHistoryInternal.h 36 - (void)_visitedURL:(NSURL *)URL withTitle:(NSString *)title method:(NSString *)method wasFailure:(BOOL)wasFailure increaseVisitCount:(BOOL)increaseVisitCount;
  /dalvik/libcore/sql/src/test/java/tests/javax/sql/
RowSetInternalTest.java 22 method = "getConnection",
35 method = "getOriginal",
48 method = "getOriginalRow",
58 method = "getParams",
71 method = "setMetaData",
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
StackMapFrameVisitor.java 35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame);
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame);
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame);
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame);
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_methods.c 2 * hostapd / EAP method registration
26 * eap_server_get_eap_method - Get EAP method based on type number
28 * @method: EAP type number
29 * Returns: Pointer to EAP method or %NULL if not found
31 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method)
35 if (m->vendor == vendor && m->method == method)
43 * eap_server_get_type - Get EAP type for the given EAP method name
44 * @name: EAP method name, e.g., TLS
46 * Returns: EAP method type or %EAP_TYPE_NONE if not foun
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
GestureDetector_SimpleOnGestureListenerTest.java 56 method = "GestureDetector.SimpleOnGestureListener",
66 method = "onSingleTapUp",
71 method = "onLongPress",
76 method = "onDown",
81 method = "onScroll",
86 method = "onShowPress",
91 method = "onFling",
96 method = "onDoubleTap",
101 method = "onDoubleTapEvent",
106 method = "onSingleTapConfirmed"
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
AttributeNameFilter.java 123 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
127 deprecatedAttribute.accept(clazz, method, attributeVisitor);
150 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
154 syntheticAttribute.accept(clazz, method, attributeVisitor);
177 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
181 signatureAttribute.accept(clazz, method, attributeVisitor);
195 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute
    [all...]
RequiredAttributeFilter.java 137 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
141 deprecatedAttribute.accept(clazz, method, optionalAttributeVisitor);
164 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
168 syntheticAttribute.accept(clazz, method, optionalAttributeVisitor);
191 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
195 signatureAttribute.accept(clazz, method, optionalAttributeVisitor);
209 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute
    [all...]
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 107 // Is it a native method?
114 // Is it an abstract method?
121 // Is it a non-native, concrete method?
124 // Is the method not static, but synchronized, or can it have
158 // Can the method have other implementations?
161 // All implementations must keep all parameters of this method,
173 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
176 partialEvaluator.visitCodeAttribute(clazz, method, codeAttribute);
179 codeAttribute.instructionsAccept(clazz, method, this)
    [all...]
SuperInvocationMarker.java 47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
60 setInvokesSuperMethods(method);
78 private static void setInvokesSuperMethods(Method method)
80 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
88 public static boolean invokesSuperMethods(Method method)
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 82 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
101 markCode(clazz, method, codeAttribute, 0);
108 codeAttribute.exceptionsAccept(clazz, method, this);
116 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
132 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
137 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction
    [all...]
VariableShrinker.java 79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
81 if ((method.getAccessFlags() & ClassConstants.INTERNAL_ACC_ABSTRACT) == 0)
85 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
86 method.getAccessFlags());
93 System.out.println("VariableShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
99 variableUsageMarker.visitCodeAttribute(clazz, method, codeAttribute);
117 // Visit the method, if required.
120 method.accept(clazz, extraVariableMemberVisitor)
    [all...]
  /dalvik/vm/hprof/
HprofStackFrame.c 41 const Method *method; local
47 method = stackFrameEntry->frame.method;
48 if (method == NULL) {
52 /* Make sure the method name, descriptor, and source file are in
53 * the string table, and that the method class is in the class
58 if (method->name) {
59 hprofLookupStringId(method->name);
66 descriptor = dexProtoGetMethodDescriptor(&method->prototype, &cache)
190 const Method *method; local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 99 method = "MediaRecorder",
104 method = "release",
109 method = "setOutputFormat",
114 method = "setVideoEncoder",
119 method = "setVideoFrameRate",
124 method = "setVideoSize",
129 method = "setVideoSource",
134 method = "setOutputFile",
139 method = "reset",
159 method = "setCamera"
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/rsub_int/d/
T_rsub_int_1.d 20 .method public <init>()V
25 .end method
27 .method public run(I)I
32 .end method
34 .method public run1(I)I
39 .end method
41 .method public run2(I)I
46 .end method
48 .method public run3(I)I
53 .end method
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/rsub_int_lit8/d/
T_rsub_int_lit8_1.d 20 .method public <init>()V
25 .end method
27 .method public run(I)I
32 .end method
34 .method public run1(I)I
39 .end method
41 .method public run2(I)I
46 .end method
48 .method public run3(I)I
53 .end method
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ExceptionInInitializerErrorTest.java 35 method = "ExceptionInInitializerError",
41 method = "getCause",
59 method = "ExceptionInInitializerError",
65 method = "getCause",
82 method = "ExceptionInInitializerError",
88 method = "getCause",
94 method = "getException",
  /dalvik/vm/mterp/x86-atom/
OP_INVOKE_SUPER.S 19 * Code: Call super method.
24 * method (as opposed to the one with the same method_id in the
51 FETCH 1, %edx # %edx<- method index
54 movl (%ecx, %edx, 4), %ecx # %ecx<- resolved base method
61 movl offGlue_method(%eax), %eax # %eax<- glue->method
62 movl offMethod_clazz(%eax), %eax # %eax<- glue->method->clazz
69 * %ecx = resolved base method
70 * %eax = method->clazz
74 movl offClassObject_super(%eax), %edx # %edx<- glue->method->clazz->super
78 jnc .L${opcode}_nsm # handle method not presen
    [all...]
OP_INVOKE_SUPER_QUICK.S 28 movl offGlue_method(%ecx), %eax # %eax<- glue->method
32 FETCH 1, %ecx # %ecx<- method index
33 movl offMethod_clazz(%eax), %eax # %eax<- glue->method->clazz
34 movl offClassObject_super(%eax), %eax # %eax<- glue->method->clazz->super
36 movl offClassObject_vtable(%eax), %eax # %edx<- glue->method->clazz->super->vtable
40 jmp common_invokeMethod${routine} # invoke method common code
  /external/proguard/src/proguard/optimize/
ParameterShrinker.java 77 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
80 int oldParameterSize = ParameterUsageMarker.getParameterSize(method);
84 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
85 method.getAccessFlags());
94 System.out.println("ParameterShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
109 if (ParameterUsageMarker.isParameterUsed(method, parameterIndex))
125 // Visit the method, if required.
128 method.accept(clazz, extraVariableMemberVisitor)
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
LocalSocketTest.java 41 method = "LocalSocket",
47 method = "close",
53 method = "connect",
59 method = "getAncillaryFileDescriptors",
65 method = "getFileDescriptor",
71 method = "getInputStream",
77 method = "getOutputStream",
83 method = "getPeerCredentials",
89 method = "isConnected",
95 method = "setFileDescriptorsForSend"
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
SslErrorHandlerTest.java 35 method = "cancel",
41 method = "handleMessage",
47 method = "proceed",
  /dalvik/libcore/security/src/test/java/tests/targets/security/
AlgorithmParameterGeneratorTestDH.java 35 method="getInstance",
40 method="init",
45 method="method",
KeyPairGeneratorTestDH.java 34 method = "initialize",
39 method = "generateKeyPair",
44 method="method",
  /dalvik/libcore/sql/src/test/java/tests/sql/
StructTest.java 32 * Test method for {@link java.sql.Struct#getSQLTypeName()}.
37 method = "getSQLTypeName",
46 * Test method for {@link java.sql.Struct#getAttributes()}.
52 method = "getAttributes",
60 * Test method for {@link java.sql.Struct#getAttributes(java.util.Map)}.
65 method = "getAttributes",
  /external/easymock/src/org/easymock/internal/
LegacyMatcherProvider.java 20 import java.lang.reflect.Method;
36 private transient Map<Method, ArgumentsMatcher> matchers = new HashMap<Method, ArgumentsMatcher>();
38 public ArgumentsMatcher getMatcher(Method method) {
39 if (!matchers.containsKey(method)) {
43 matchers.put(method, defaultMatcher);
45 return matchers.get(method);
58 public void setMatcher(Method method, ArgumentsMatcher matcher) {
81 Method method = entry.getKey().getMethod(); local
    [all...]

Completed in 2536 milliseconds

<<11121314151617181920>>