HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 551 - 575 of 7000) sorted by null

<<21222324252627282930>>

  /external/testng/src/test/java/test/methodselectors/
NoTestSelector.java 18 ITestNGMethod method, boolean isTestMethod)
20 ppp("NOTEST RETURNING FALSE FOR " + method);
Test2MethodSelector.java 18 ITestNGMethod method, boolean isTestMethod)
20 for (String group : method.getGroups()) {
32 // TODO Auto-generated method stub
  /external/testng/src/test/java/test/thread/
BaseSequentialSample.java 7 protected void addId(String method, long id) {
8 ppp(method + " ID:" + id);
  /libcore/ojluni/src/main/java/java/lang/
Void.java 29 import java.lang.reflect.Method;
52 Method method = Runnable.class.getMethod("run", EmptyArray.CLASS); local
53 return (Class<Void>) method.getReturnType();
  /libcore/ojluni/src/main/java/sun/net/
ProgressSource.java 40 // URL method
41 private String method; field in class:ProgressSource
62 public ProgressSource(URL url, String method) {
63 this(url, method, -1);
69 public ProgressSource(URL url, String method, long expected) {
71 this.method = method;
105 * Return method of URL.
108 return method;
207 return getClass().getName() + "[url=" + url + ", method=" + method + ", state=" + stat
    [all...]
  /art/runtime/entrypoints/quick/
quick_instrumentation_entrypoints.cc 27 extern "C" const void* artInstrumentationMethodEntryFromCode(ArtMethod* method,
37 if (instrumentation->IsDeoptimized(method)) {
40 result = instrumentation->GetQuickCodeFor(method, sizeof(void*));
44 instrumentation->PushInstrumentationStackFrame(self, method->IsStatic() ? nullptr : this_object,
45 method, lr, interpreter_entry);
46 CHECK(result != nullptr) << PrettyMethod(method);
  /dalvik/dx/tests/069-dex-source-position/
run 19 --dump-method=Blort.test'*' Blort.class
21 --dump-method=Blort.test'*' Blort.class
23 --dump-method=Blort.test'*' Blort.class
  /external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
T.g 2 * convert method with "public void", add decls. This shows how to insert
14 : method+
17 // note the reference to the last token matched for method:
18 $input->insert_after($method.stop, "\n}\n");
22 method
23 : m='method' ID '(' ')' body
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
Worker.java 23 import java.lang.reflect.Method;
33 ImmutableSet<Method> beforeExperimentMethods;
37 ImmutableSet<Method> afterExperimentMethods;
39 protected final Method benchmarkMethod;
42 protected Worker(Object benchmark, Method method) {
44 this.benchmarkMethod = method;
49 for (Method method : beforeExperimentMethods) {
50 method.invoke(benchmark)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
memory_backend.py 67 method = 'Memory.%s' % command
69 'method': method,
77 (method, traceback.format_exc()))
82 (method, traceback.format_exc()))
88 '%s DevTools method not supported by the browser' % method)
92 (method, json.dumps(response, indent=2)))
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
DispatcherGenerator.java 46 MethodInfo method = (MethodInfo)it.next(); local
47 if (!TypeUtils.isProtected(method.getModifiers())) {
48 CodeEmitter e = context.beginMethod(ce, method);
49 context.emitCallback(e, context.getIndex(method));
56 e.checkcast(method.getClassInfo().getType());
58 e.invoke(method);
  /external/nist-sip/java/gov/nist/javax/sip/header/
RAck.java 54 protected String method; field in class:RAck
70 cSeqNumber).append(SP).append(method).toString();
94 * Gets the method of RAckHeader
96 * @return method of RAckHeader
99 return this.method;
120 public void setMethod(String method) throws ParseException {
121 this.method = method;
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotationTypeFilter.java 77 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation)
81 annotationVisitor.visitAnnotation(clazz, method, annotation);
86 public void visitAnnotation(Clazz clazz, Method method, int parameterIndex, Annotation annotation)
90 annotationVisitor.visitAnnotation(clazz, method, parameterIndex, annotation);
95 public void visitAnnotation(Clazz clazz, Method method, CodeAttribute codeAttribute, Annotation annotation)
99 annotationVisitor.visitAnnotation(clazz, method, codeAttribute, annotation);
  /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/junit/src/org/junit/runners/
BlockJUnit4ClassRunner.java 63 protected void runChild(final FrameworkMethod method, RunNotifier notifier) {
64 Description description= describeChild(method);
65 if (method.getAnnotation(Ignore.class) != null) {
68 runLeaf(methodBlock(method), description, notifier);
73 protected Description describeChild(FrameworkMethod method) {
75 testName(method), method.getAnnotations());
153 * Adds to {@code errors} for each method annotated with {@code @Test},
155 * method with no arguments.
174 * Adds to {@code errors} for each method annotated with {@code @Test}tha
    [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/dexmaker/src/dx/java/com/android/dx/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...]

Completed in 1501 milliseconds

<<21222324252627282930>>