HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 51 - 75 of 9148) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/junit/src/main/java/org/junit/rules/
TestWatchman.java 19 * public void failed(Throwable e, FrameworkMethod method) {
20 * watchedLog+= method.getName() + " " + e.getClass().getSimpleName()
25 * public void succeeded(FrameworkMethod method) {
26 * watchedLog+= method.getName() + " " + "success!\n";
46 public Statement apply(final Statement base, final FrameworkMethod method,
51 starting(method);
54 succeeded(method);
58 failed(e, method);
61 finished(method);
68 * Invoked when a test method succeed
    [all...]
  /frameworks/support/wear/wear_stubs/api_legacy/
1.txt 20 method public static int version();
29 method public void dump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]);
30 method public final boolean isAmbient();
31 method public void onCreate();
32 method public void onDestroy();
33 method public void onPause();
34 method public void onResume();
35 method public void onStop();
36 method public final void setAmbientEnabled();
37 method public final void setAutoResumeEnabled(boolean)
    [all...]
  /art/runtime/mirror/
executable.cc 25 bool Executable::CreateFromArtMethod(ArtMethod* method) {
26 auto* interface_method = method->GetInterfaceMethodIfProxy(kPointerSize);
27 SetArtMethod<kTransactionActive>(method);
28 SetFieldObject<kTransactionActive>(DeclaringClassOffset(), method->GetDeclaringClass());
31 SetField32<kTransactionActive>(AccessFlagsOffset(), method->GetAccessFlags());
32 SetField32<kTransactionActive>(DexMethodIndexOffset(), method->GetDexMethodIndex());
36 template bool Executable::CreateFromArtMethod<PointerSize::k32, false>(ArtMethod* method);
37 template bool Executable::CreateFromArtMethod<PointerSize::k32, true>(ArtMethod* method);
38 template bool Executable::CreateFromArtMethod<PointerSize::k64, false>(ArtMethod* method);
39 template bool Executable::CreateFromArtMethod<PointerSize::k64, true>(ArtMethod* method);
    [all...]
  /external/testng/src/test/java/test/invokedmethodlistener/
InvokedMethodNameListener.java 18 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
22 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
23 String methodName = method.getTestMethod().getMethodName();
25 if (method.isTestMethod()) {
28 if (method.isConfigurationMethod()) {
31 if (method.getTestMethod().isTest()) {
34 if (method.getTestMethod().isBeforeMethodConfiguration() ||
35 method.getTestMethod().isAfterMethodConfiguration() ||
36 method.getTestMethod().isBeforeTestConfiguration() ||
37 method.getTestMethod().isAfterTestConfiguration() |
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
MethodAnalyzerTest.java 44 private MethodNode method; field in class:MethodAnalyzerTest
51 method = new MethodNode();
52 method.tryCatchBlocks = new ArrayList<TryCatchBlockNode>();
64 method.visitLabel(l0);
65 method.visitLineNumber(1001, l0);
66 method.visitInsn(Opcodes.NOP);
67 method.visitInsn(Opcodes.NOP);
69 method.visitLabel(l1);
70 method.visitLineNumber(1002, l1);
71 method.visitInsn(Opcodes.RETURN)
    [all...]
  /external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/
HttpRedirect.java 45 private String method; field in class:HttpRedirect
47 public HttpRedirect(final String method, final URI uri) {
49 if (method.equalsIgnoreCase(HttpHead.METHOD_NAME)) {
50 this.method = HttpHead.METHOD_NAME;
52 this.method = HttpGet.METHOD_NAME;
59 return this.method;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
basetyps.h 48 #define STDMETHOD(method) virtual COM_DECLSPEC_NOTHROW HRESULT STDMETHODCALLTYPE method
49 #define STDMETHOD_(type, method) virtual COM_DECLSPEC_NOTHROW type STDMETHODCALLTYPE method
50 #define STDMETHODV(method) virtual COM_DECLSPEC_NOTHROW HRESULT STDMETHODVCALLTYPE method
51 #define STDMETHODV_(type, method) virtual COM_DECLSPEC_NOTHROW type STDMETHODVCALLTYPE method
64 #define STDMETHOD(method) HRESULT (STDMETHODCALLTYPE *method)
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
InvocationInfo.java 7 import java.lang.reflect.Method;
15 private final Method method; field in class:InvocationInfo
18 this.method = theInvocation.getMethod();
22 Class<?>[] exceptions = method.getExceptionTypes();
34 if (method.getReturnType().isPrimitive() || clazz.isPrimitive()) {
35 return Primitives.primitiveTypeOf(clazz) == Primitives.primitiveTypeOf(method.getReturnType());
37 return method.getReturnType().isAssignableFrom(clazz);
46 Class<?> returnType = this.method.getReturnType();
51 return method.getReturnType().getSimpleName()
    [all...]
  /art/test/071-dexfile-map-clean/
build 21 ./default-build "$@" --zip-compression-method store --zip-align 4
  /art/test/425-invoke-super/smali/
superclass.smali 19 .method public constructor <init>()V
23 .end method
25 .method public returnInt()I
29 .end method
  /art/test/434-invoke-direct/smali/
invoke.smali 19 .method public constructor <init>()V
23 .end method
25 .method public run()I
30 .end method
  /art/test/551-invoke-super/smali/
superclass.smali 19 .method public constructor <init>()V
23 .end method
25 .method abstract public returnInt()I
26 .end method
  /art/test/594-invoke-super/smali/
invoke-super.smali 19 .method public constructor <init>()V
23 .end method
25 .method public foo()V
31 .end method
  /art/test/668-aiobe/smali/
TestCase.smali 20 .method public constructor <init>()V
24 .end method
26 .method public static run([DI)D
30 .end method
  /art/test/674-vdex-uncompress/
build 19 ./default-build "$@" --zip-compression-method store --zip-align 4
  /art/test/677-fsi/
build 17 ./default-build "$@" --zip-compression-method store --zip-align 4
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_float/d/
T_neg_float_5.d 6 .method public <init>()V
11 .end method
13 .method public run(F)F
18 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_int/d/
T_neg_int_6.d 6 .method public <init>()V
11 .end method
13 .method public run(I)I
18 .end method
  /dalvik/dx/tests/094-scala-locals/
run 17 dx --debug --dump --ssa-blocks --method=scalalocals Blort.class
  /dalvik/dx/tests/109-int-branch/
run 17 dx --debug --dex --no-optimize --dump-method="blort.test*" blort.class
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/
TestLifecycle.java 3 import java.lang.reflect.Method;
8 * Called before each test method is run.
10 * @param method the test method about to be run
12 void beforeTest(Method method);
15 * Called after each test method is run.
22 * Called after each test method is run.
24 * @param method the test method that was just ru
    [all...]
TestLifecycleApplication.java 3 import java.lang.reflect.Method;
6 void beforeTest(Method method);
10 void afterTest(Method method);
  /external/skia/tools/skiaserve/urlhandlers/
UrlHandler.h 18 virtual bool canHandle(const char* method, const char* url) = 0;
20 const char* url, const char* method,
26 bool canHandle(const char* method, const char* url) override;
28 const char* url, const char* method,
34 bool canHandle(const char* method, const char* url) override;
36 const char* url, const char* method,
42 bool canHandle(const char* method, const char* url) override;
44 const char* url, const char* method,
54 bool canHandle(const char* method, const char* url) override;
56 const char* url, const char* method,
    [all...]
  /external/skqp/tools/skiaserve/urlhandlers/
UrlHandler.h 18 virtual bool canHandle(const char* method, const char* url) = 0;
20 const char* url, const char* method,
26 bool canHandle(const char* method, const char* url) override;
28 const char* url, const char* method,
34 bool canHandle(const char* method, const char* url) override;
36 const char* url, const char* method,
42 bool canHandle(const char* method, const char* url) override;
44 const char* url, const char* method,
54 bool canHandle(const char* method, const char* url) override;
56 const char* url, const char* method,
    [all...]
  /external/testng/src/main/java/org/testng/
IInvokedMethodListener2.java 11 * To be implemented if the method needs a handle to contextual information.
13 void beforeInvocation(IInvokedMethod method, ITestResult testResult,
17 * To be implemented if the method needs a handle to contextual information.
19 void afterInvocation(IInvokedMethod method, ITestResult testResult,

Completed in 411 milliseconds

1 23 4 5 6 7 8 91011>>