/external/proguard/src/proguard/classfile/attribute/preverification/ |
ObjectType.java | 63 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor) 65 verificationTypeVisitor.visitObjectType(clazz, method, codeAttribute, instructionOffset, this); 69 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) 71 verificationTypeVisitor.visitStackObjectType(clazz, method, codeAttribute, instructionOffset, stackIndex, this); 75 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor) 77 verificationTypeVisitor.visitVariablesObjectType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
|
UninitializedType.java | 62 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor) 64 verificationTypeVisitor.visitUninitializedType(clazz, method, codeAttribute, instructionOffset, this); 68 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) 70 verificationTypeVisitor.visitStackUninitializedType(clazz, method, codeAttribute, instructionOffset, stackIndex, this); 74 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor) 76 verificationTypeVisitor.visitVariablesUninitializedType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
|
/external/proguard/src/proguard/optimize/info/ |
MethodInvocationMarker.java | 46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} 49 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 62 // Mark the referenced method, if any. 69 // Mark the referenced method. 87 private static void incrementInvocationCount(Method method) 89 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); 98 * Returns the number of times the given method was invoked by th [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_service.cc | 93 "void CallMethod(const ::google::protobuf::MethodDescriptor* method,\n" 99 " const ::google::protobuf::MethodDescriptor* method) const;\n" 101 " const ::google::protobuf::MethodDescriptor* method) const;\n"); 145 const MethodDescriptor* method = descriptor_->method(i); local 147 sub_vars["name"] = method->name(); 148 sub_vars["input_type"] = ClassName(method->input_type(), true); 149 sub_vars["output_type"] = ClassName(method->output_type(), true); 214 const MethodDescriptor* method = descriptor_->method(i) local 245 const MethodDescriptor* method = descriptor_->method(i); local 288 const MethodDescriptor* method = descriptor_->method(i); local 312 const MethodDescriptor* method = descriptor_->method(i); local [all...] |
/external/testng/src/main/java/org/testng/internal/ |
RegexpExpectedExceptionsHolder.java | 19 private final ITestNGMethod method; field in class:RegexpExpectedExceptionsHolder 21 public RegexpExpectedExceptionsHolder(IAnnotationFinder finder, ITestNGMethod method) { 23 this.method = method; 51 finder.findAnnotation(method, IExpectedExceptionsAnnotation.class); 58 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class);
|
/external/testng/src/test/java/org/testng/internal/invokers/ |
InvokedMethodListenerSubtypeTest.java | 36 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { 39 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { 45 public void beforeInvocation(IInvokedMethod method, ITestResult testResult, 49 public void afterInvocation(IInvokedMethod method, ITestResult testResult, 53 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { 56 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
|
/external/testng/src/test/java/test/ |
InvokedMethodNameListener.java | 20 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { 21 invokedMethodNames.add(method.getTestMethod().getConstructorOrMethod().getName()); 25 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { 28 failedMethodNames.add(method.getTestMethod().getConstructorOrMethod().getName()); 31 skippedMethodNames.add(method.getTestMethod().getConstructorOrMethod().getName()); 34 succeedMethodNames.add(method.getTestMethod().getConstructorOrMethod().getName());
|
/external/vogar/src/vogar/target/junit/ |
ApplyGlobalRulesBlockJUnit4ClassRunner.java | 42 protected void runChild(final FrameworkMethod method, RunNotifier notifier) { 45 Description description = describeChild(method); 46 if (method.getAnnotation(Ignore.class) != null) { 49 ParentRunnerHelper.abortingRunLeaf(methodBlock(method), description, notifier); 54 protected Statement methodBlock(FrameworkMethod method) { 56 Statement statement = super.methodBlock(method);
|
/art/runtime/ |
cha.cc | 31 void ClassHierarchyAnalysis::AddDependency(ArtMethod* method, 34 auto it = cha_dependency_map_.find(method); 36 cha_dependency_map_[method] = 38 it = cha_dependency_map_.find(method); 46 ClassHierarchyAnalysis::GetDependents(ArtMethod* method) { 47 auto it = cha_dependency_map_.find(method); 55 void ClassHierarchyAnalysis::RemoveDependencyFor(ArtMethod* method) { 56 auto it = cha_dependency_map_.find(method); 89 // This stack visitor walks the stack and for compiled code with certain method 103 ArtMethod* method = GetMethod() local 470 ArtMethod* method = klass->GetVTableEntry(i, image_pointer_size); local 494 ArtMethod* method = klass->GetVTableEntry(i, image_pointer_size); local 562 ArtMethod* method = dependent.first;; local [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
RemoteControllerTest.java | 27 import java.lang.reflect.Method; 135 Map<String, List<Method>> methodMap = new HashMap<String, List<Method>>(); 136 for (Method method : listener.getClass().getDeclaredMethods()) { 137 if (!methodMap.containsKey(method.getName())) { 138 methodMap.put(method.getName(), new ArrayList<Method>()); 140 methodMap.get(method.getName()).add(method); [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
EncodedMethod.java | 31 * Class that representats a method of a class. 35 /** {@code non-null;} constant for the method */ 36 private final CstMethodRef method; field in class:EncodedMethod 39 * {@code null-ok;} code for the method, if the method is neither 47 * @param method {@code non-null;} constant for the method 49 * @param code {@code null-ok;} code for the method, if it is neither 54 public EncodedMethod(CstMethodRef method, int accessFlags, 58 if (method == null) [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
EncodedMethod.java | 30 * Class that representats a method of a class. 34 /** {@code non-null;} constant for the method */ 35 private final CstMethodRef method; field in class:EncodedMethod 38 * {@code null-ok;} code for the method, if the method is neither 46 * @param method {@code non-null;} constant for the method 48 * @param code {@code null-ok;} code for the method, if it is neither 53 public EncodedMethod(CstMethodRef method, int accessFlags, 57 if (method == null) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingTestCase.java | 27 import java.lang.reflect.Method; 62 * This invocation handler only registers that a method was called, 67 public Object invoke(Object proxy, Method method, Object[] args) 69 called(asString(method)); 71 return getDefaultValue(method.getReturnType()); 82 * Returns string representation of a method. 84 * If the method takes no parameters, it returns the name (e.g. 85 * "isEmpty". If the method takes parameters, it returns the simple names 88 private String asString(Method method) [all...] |
/external/icu/icu4j/perf-tests/perldriver/ |
PerfFramework4j.pm | 181 # Measure a given test method with a give test pattern using the 184 # @param the method to run 200 # $a->[0]: method name, corresponds to $method 236 # Measure a given test method with a give test pattern using the 239 # @param the method to run 266 # @param the method to run 274 # ->[0]: The method name as reported 284 #my $cmd = "java -cp c:\\dev\\myicu4j\\classes $TESTCLASS $method $n $pat"; 298 my $method = '' [all...] |
/external/flatbuffers/grpc/src/compiler/ |
cpp_generator.cc | 158 grpc_generator::Printer *printer, const grpc_generator::Method *method, 160 (*vars)["Method"] = method->name(); 161 (*vars)["Request"] = method->input_type_name(); 162 (*vars)["Response"] = method->output_type_name(); 165 if (method->NoStreaming()) { 168 "virtual ::grpc::Status $Method$(::grpc::ClientContext* context, " 173 "Async$Method$(::grpc::ClientContext* context, " 180 "Async$Method$Raw(context, request, cq));\n") 1071 auto method = service->method(i); local 1102 auto method = service->method(i); local [all...] |
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/ |
LazyValue.java | 53 private final SmaliMethod method; field in class:LazyValue 59 public LazyValue(SmaliMethod method, Project project, int registerNumber, String type) { 60 this.method = method; 66 public static LazyValue create(@Nonnull SmaliMethod method, @Nonnull Project project, int registerNumber, 69 return new LazyByteValue(method, project, registerNumber, type); 71 return new LazyShortValue(method, project, registerNumber, type); 73 return new LazyLongValue(method, project, registerNumber, type); 75 return new LazyIntegerValue(method, project, registerNumber, type); 77 return new LazyFloatValue(method, project, registerNumber, type) [all...] |
/tools/tradefederation/core/util-apps/WifiUtil/src/com/android/tradefed/utils/wifi/ |
WifiUtil.java | 32 * adb shell am instrument -e method (method name) -e arg1 val1 -e arg2 val2 -e arg3 val3 159 final String method = expectString("method"); local 168 // As a pattern, method implementations below should gather arguments _first_, and then 171 if ("enableWifi".equals(method)) { 173 } else if ("disableWifi".equals(method)) { 175 } else if ("addOpenNetwork".equals(method)) { 181 } else if ("addWpaPskNetwork".equals(method)) { 188 } else if ("associateNetwork".equals(method)) { [all...] |
/external/guice/core/src/com/google/inject/internal/ |
ProviderMethodsModule.java | 40 import java.lang.reflect.Method; 48 * binding annotations on the provider method to configure the binding. 130 Multimap<Signature, Method> methodsBySignature = HashMultimap.create(); 132 for (Method method : c.getDeclaredMethods()) { 138 if (((method.getModifiers() & (Modifier.PRIVATE | Modifier.STATIC)) == 0) 139 && !method.isBridge() && !method.isSynthetic()) { 140 methodsBySignature.put(new Signature(method), method); 152 Method method = provider.getMethod(); local [all...] |
SingleMethodInjector.java | 24 import java.lang.reflect.Method; 28 * Invokes an injectable method. 38 final Method method = (Method) injectionPoint.getMember(); local 39 methodInvoker = createMethodInvoker(method); 43 private MethodInvoker createMethodInvoker(final Method method) { 45 // We can't use FastMethod if the method is private. 46 int modifiers = method.getModifiers() [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
LocalVariableExtractor.java | 24 * a method. 27 /** {@code non-null;} method being extracted from */ 28 private final RopMethod method; field in class:LocalVariableExtractor 30 /** {@code non-null;} block list for the method */ 40 * Extracts out all the local variable information from the given method. 42 * @param method {@code non-null;} the method to extract from 45 public static LocalVariableInfo extract(RopMethod method) { 46 LocalVariableExtractor lve = new LocalVariableExtractor(method); 51 * Constructs an instance. This method is private. Use {@link #extract} [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
LocalVariableExtractor.java | 24 * a method. 27 /** {@code non-null;} method being extracted from */ 28 private final RopMethod method; field in class:LocalVariableExtractor 30 /** {@code non-null;} block list for the method */ 40 * Extracts out all the local variable information from the given method. 42 * @param method {@code non-null;} the method to extract from 45 public static LocalVariableInfo extract(RopMethod method) { 46 LocalVariableExtractor lve = new LocalVariableExtractor(method); 51 * Constructs an instance. This method is private. Use {@link #extract} [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
fix_operator.py | 29 method=('isCallable'|'sequenceIncludes'
42 method = self._check_method(node, results)
43 if method is not None:
44 return method(node, results)
77 method = results["method"][0]
78 method.value = name
79 method.changed()
88 method = getattr(self, "_" + results["method"][0].value.encode("ascii")) [all...] |
/external/apache-http/src/org/apache/http/impl/client/ |
RequestWrapper.java | 70 private String method; field in class:RequestWrapper 84 this.method = ((HttpUriRequest) request).getMethod(); 94 this.method = requestLine.getMethod(); 107 return this.method; 110 public void setMethod(final String method) { 111 if (method == null) { 112 throw new IllegalArgumentException("Method name may not be null"); 114 this.method = method; 139 String method = getMethod() local [all...] |
/external/autotest/client/site_tests/network_ShillInitScripts/ |
mock_flimflam.py | 16 MethodCall = collections.namedtuple("MethodCall", ["method", "argument"]) 20 object are called whenever a DBus RPC method is invoked. """ 26 @dbus.service.method('org.chromium.flimflam.Manager', 38 @dbus.service.method('org.chromium.flimflam.Manager', 49 @dbus.service.method('org.chromium.flimflam.Manager', 61 @dbus.service.method('org.chromium.flimflam.Manager', 74 @dbus.service.method('org.chromium.flimflam.Manager', 85 @dbus.service.method('org.chromium.flimflam.Manager', 92 def add_method_call(self, method, arg): 93 """ Note that a method call was made [all...] |
/external/proguard/src/proguard/classfile/attribute/visitor/ |
MultiAttributeVisitor.java | 187 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 191 attributeVisitors[index].visitDeprecatedAttribute(clazz, method, deprecatedAttribute); 196 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) 200 attributeVisitors[index].visitSyntheticAttribute(clazz, method, syntheticAttribute); 205 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute) 209 attributeVisitors[index].visitSignatureAttribute(clazz, method, syntheticAttribute); 223 public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute methodParametersAttribute [all...] |