HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 326 - 350 of 5465) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/classfile/editor/
VariableRemapper.java 66 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
70 System.out.println("VariableRemapper: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
79 codeAttribute.attributesAccept(clazz, method, this);
85 codeAttribute.instructionsAccept(clazz, method, this);
88 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
92 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
95 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this)
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_service.cc 128 const MethodDescriptor* method = descriptor_->method(i); local
130 GenerateMethodSignature(printer, method, IS_CONCRETE);
133 " impl.$method$(controller, request, done);\n"
135 "method", UnderscoresToCamelCase(method));
167 const MethodDescriptor* method = descriptor_->method(i); local
168 WriteMethodDocComment(printer, method);
169 GenerateMethodSignature(printer, method, IS_ABSTRACT)
193 const MethodDescriptor* method = descriptor_->method(i); local
238 const MethodDescriptor* method = descriptor_->method(i); local
283 const MethodDescriptor* method = descriptor_->method(i); local
330 const MethodDescriptor* method = descriptor_->method(i); local
373 const MethodDescriptor* method = descriptor_->method(i); local
395 const MethodDescriptor* method = descriptor_->method(i); local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
skip.py 46 def _skipped_method(method, message, logger):
48 if method.im_class._printed_skipped_message:
50 method.im_class._printed_skipped_message = True
51 logger.info('Skipping %s.%s: %s' % (method.__module__, method.im_class.__name__, message))
  /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/protobuf/src/google/protobuf/compiler/java/
java_service.cc 120 const MethodDescriptor* method = descriptor_->method(i); local
122 GenerateMethodSignature(printer, method, IS_CONCRETE);
125 " impl.$method$(controller, request, done);\n"
127 "method", UnderscoresToCamelCase(method));
159 const MethodDescriptor* method = descriptor_->method(i); local
160 GenerateMethodSignature(printer, method, IS_ABSTRACT);
169 " com.google.protobuf.Descriptors.MethodDescriptor method,\n
184 const MethodDescriptor* method = descriptor_->method(i); local
229 const MethodDescriptor* method = descriptor_->method(i); local
274 const MethodDescriptor* method = descriptor_->method(i); local
321 const MethodDescriptor* method = descriptor_->method(i); local
364 const MethodDescriptor* method = descriptor_->method(i); local
386 const MethodDescriptor* method = descriptor_->method(i); local
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
NonEmptyAttributeFilter.java 109 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
111 deprecatedAttribute.accept(clazz, method, attributeVisitor);
127 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
129 syntheticAttribute.accept(clazz, method, attributeVisitor);
145 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
147 signatureAttribute.accept(clazz, method, attributeVisitor);
157 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute
    [all...]
RequiredAttributeFilter.java 148 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
152 deprecatedAttribute.accept(clazz, method, optionalAttributeVisitor);
175 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
179 syntheticAttribute.accept(clazz, method, optionalAttributeVisitor);
202 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
206 signatureAttribute.accept(clazz, method, optionalAttributeVisitor);
220 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...]
SideEffectMethodMarker.java 92 // Look further if the method hasn't been marked yet.
99 // Mark the method depending on the return value.
115 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
118 hasSideEffects = hasSideEffects(clazz, method, codeAttribute);
128 Method method,
135 method.getName(clazz).equals(ClassConstants.INTERNAL_METHOD_NAME_CLINIT) ?
148 method,
165 private static void markSideEffects(Method method
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 84 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
100 markCode(clazz, method, codeAttribute, 0);
107 codeAttribute.exceptionsAccept(clazz, method, this);
115 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
131 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
136 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...]
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 2 {% macro generate_method(method, world_suffix) %}
3 {% filter conditional(method.conditional_string) %}
4 static void {{method.name}}{{method.overload_index}}Method{{world_suffix}}(const v8::FunctionCallbackInfo<v8::Value>& info)
7 {% if method.has_exception_state %}
8 ExceptionState exceptionState(ExceptionState::ExecutionContext, "{{method.name}}", "{{interface_name}}", info.Holder(), info.GetIsolate());
11 {% if method.number_of_required_arguments and not method.overload_index %}
12 if (UNLIKELY(info.Length() < {{method.number_of_required_arguments}}))
    [all...]
  /external/junit/src/org/junit/internal/runners/
JUnit4ClassRunner.java 5 import java.lang.reflect.Method;
31 private final List<Method> fTestMethods;
40 protected List<Method> getTestMethods() {
60 for (Method method : fTestMethods)
61 invokeTestMethod(method, notifier);
67 List<Method> testMethods= fTestMethods;
68 for (Method method : testMethods)
69 spec.addChild(methodDescription(method));
126 Method method= iter.next(); local
    [all...]
  /art/runtime/
runtime-inl.h 26 inline QuickMethodFrameInfo Runtime::GetRuntimeMethodFrameInfo(mirror::ArtMethod* method) {
27 DCHECK(method != nullptr);
28 // Cannot be imt-conflict-method or resolution-method.
29 DCHECK(method != GetImtConflictMethod());
30 DCHECK(method != GetResolutionMethod());
32 if (method == GetCalleeSaveMethodUnchecked(Runtime::kRefsAndArgs)) {
34 } else if (method == GetCalleeSaveMethodUnchecked(Runtime::kSaveAll)) {
37 DCHECK(method == GetCalleeSaveMethodUnchecked(Runtime::kRefsOnly));
  /cts/tools/vm-tests-tf/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-tf/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...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
CSeq.java 59 * method field
61 protected String method; field in class:CSeq
71 * Constructor given the sequence number and method.
74 * @param method is the method string.
76 public CSeq(long seqno, String method) {
79 this.method = SIPRequest.getCannonicalName(method);
116 return buffer.append(seqno).append(SP).append(method.toUpperCase());
120 * Get the method
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiClass.java 78 public void addMethod(ApiMethod method) {
79 mApiMethods.add(method);
83 for (ApiMethod method : mApiMethods) {
84 if (name.equals(method.getName())
85 && parameterTypes.equals(method.getParameterTypes())
86 && returnType.equals(method.getReturnType())) {
87 return method;
104 for (ApiMethod method : mApiMethods) {
105 if (method.isCovered()) {
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
InvocationHandlerGenerator.java 32 private static final Type METHOD =
33 TypeUtils.parseType("java.lang.reflect.Method");
35 TypeUtils.parseSignature("Object invoke(Object, java.lang.reflect.Method, Object[])");
39 MethodInfo method = (MethodInfo)it.next(); local
40 Signature impl = context.getImplSignature(method);
41 ce.declare_field(Constants.PRIVATE_FINAL_STATIC, impl.getName(), METHOD, null);
43 CodeEmitter e = context.beginMethod(ce, method);
45 context.emitCallback(e, context.getIndex(method));
50 e.unbox(method.getSignature().getReturnType());
53 EmitUtils.wrap_undeclared_throwable(e, handler, method.getExceptionTypes(), UNDECLARED_THROWABLE_EXCEPTION)
60 MethodInfo method = (MethodInfo)it.next(); local
    [all...]
  /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...]
  /art/test/044-proxy/src/
FloatSelect.java 25 public float method(float a, float b); method in interface:FloatSelect.FloatSelectI
29 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
40 float floatResult = proxyObject.method(2.1f, 5.8f);
  /external/chromium_org/ppapi/host/
dispatch_host_message.h 22 template <class ObjT, class Method>
23 inline int32_t DispatchResourceCall(ObjT* obj, Method method,
26 return (obj->*method)(context);
29 template <class ObjT, class Method, class A>
30 inline int32_t DispatchResourceCall(ObjT* obj, Method method,
33 return (obj->*method)(context, arg.a);
36 template<class ObjT, class Method, class A, class B>
37 inline int32_t DispatchResourceCall(ObjT* obj, Method method
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_enum.c 87 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method,
93 for(enam = method->usr_data; enam->lname; enam++) {
96 return i2s_ASN1_ENUMERATED(method, e);
  /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 1741 milliseconds

<<11121314151617181920>>