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

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
basetyps.h 41 #define STDMETHOD(method) virtual HRESULT WINAPI method
42 #define STDMETHOD_(type,method) virtual type WINAPI method
43 #define STDMETHODV(method) virtual HRESULT STDMETHODVCALLTYPE method
44 #define STDMETHODV_(type,method) virtual type STDMETHODVCALLTYPE method
59 #define STDMETHOD(method) HRESULT (WINAPI *method)
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventHandlerTest.java 20 import java.lang.reflect.Method;
43 * Checks that a no-frills, no-issues method call is properly executed.
48 Method method = getRecordingMethod(); local
50 EventHandler handler = new EventHandler(this, method);
54 assertTrue("Handler must call provided method.", methodCalled);
75 Method method = getRecordingMethod(); local
77 new EventHandler(null, method);
85 Method method = getExceptionThrowingMethod() local
98 Method method = getErrorThrowingMethod(); local
119 Method method; local
142 Method method; local
165 Method method; local
    [all...]
  /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
  /ndk/tests/build/issue-gcc59052-partial-specialization-of-template/jni/
issue-gcc59052-partial-specialization-of-template.cc 12 static void method() {} function in struct:N::C::Implementation
18 N::C<int>::Implementation<void, 0>::method();
  /external/chromium_org/net/tools/flip_server/
spdy_util.cc 16 std::string EncodeURL(std::string uri, std::string host, std::string method) {
19 return std::string(method + "_" + uri);
26 "http://" + host + uri, method + "_/", false);
28 filename = UrlToFilenameEncoder::Encode(uri, method + "_/", false);
  /frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestCaseFilter.java 21 import java.lang.reflect.Method;
31 public boolean accept(Method method) {
32 return ((method.getParameterTypes().length == 0) &&
33 (method.getName().startsWith("test")) &&
34 (method.getReturnType().getSimpleName().equals("void")));
  /cts/tools/signature-tools/src/signature/model/impl/
SigMethod.java 50 public static String toString(IMethod method) {
52 builder.append(Modifier.toString(method.getModifiers()));
53 builder.append(method.getReturnType());
55 if (method.getTypeParameters() != null
56 && !method.getTypeParameters().isEmpty()) {
60 .separate(method.getTypeParameters(), ", "));
63 builder.append(method.getName());
65 builder.append(method.getParameters().isEmpty() ? "" : ModelUtil
66 .separate(method.getParameters(), ", "));
68 if (method.getExceptions() != nul
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RequestInit.h 16 : method("GET")
19 // FIXME: Spec uses ByteString for method. http://crbug.com/347426
20 options.get("method", method);
25 String method; member in struct:WebCore::RequestInit
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
BlockingService.java 51 Message callBlockingMethod(Descriptors.MethodDescriptor method,
58 Message getRequestPrototype(Descriptors.MethodDescriptor method);
63 Message getResponsePrototype(Descriptors.MethodDescriptor method);
Service.java 55 * <p>Call a method of the service specified by MethodDescriptor. This is
61 * <li>{@code method.getService() == getDescriptorForType()}
63 * {@code getRequestPrototype(method)}.
73 * <li>{@code done} will be called when the method is complete. This may be
78 * {@code getResponsePrototype(method)}.
84 void callMethod(Descriptors.MethodDescriptor method,
92 * gets the default instances of this type for a given method. You can then
99 * MethodDescriptor method =
102 * stub.getRequestPrototype(method).newBuilderForType()
104 * service.callMethod(method, request, callback)
    [all...]
  /external/mockito/src/org/mockito/internal/stubbing/answers/
MethodInfo.java 10 import java.lang.reflect.Method;
17 private Method method; field in class:MethodInfo
20 this.method = theInvocation.getMethod();
24 Class<?>[] exceptions = method.getExceptionTypes();
36 if (method.getReturnType().isPrimitive() || clazz.isPrimitive()) {
37 return Primitives.primitiveTypeOf(clazz) == Primitives.primitiveTypeOf(method.getReturnType());
39 return method.getReturnType().isAssignableFrom(clazz);
44 return this.method.getReturnType() == Void.TYPE;
48 return method.getReturnType().getSimpleName()
    [all...]
  /external/proguard/src/proguard/optimize/info/
BackwardBranchMarker.java 41 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
44 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
46 markBackwardBranch(method, branchInstruction.branchOffset);
50 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction)
52 markBackwardBranch(method, switchInstruction.defaultOffset);
56 markBackwardBranch(method, switchInstruction.jumpOffsets[index]);
64 * Marks the given method if the given branch offset is negative
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
BlockingService.java 51 Message callBlockingMethod(Descriptors.MethodDescriptor method,
58 Message getRequestPrototype(Descriptors.MethodDescriptor method);
63 Message getResponsePrototype(Descriptors.MethodDescriptor method);
Service.java 55 * <p>Call a method of the service specified by MethodDescriptor. This is
61 * <li>{@code method.getService() == getDescriptorForType()}
63 * {@code getRequestPrototype(method)}.
73 * <li>{@code done} will be called when the method is complete. This may be
78 * {@code getResponsePrototype(method)}.
84 void callMethod(Descriptors.MethodDescriptor method,
92 * gets the default instances of this type for a given method. You can then
99 * MethodDescriptor method =
102 * stub.getRequestPrototype(method).newBuilderForType()
104 * service.callMethod(method, request, callback)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MethodAnnotationStruct.java 26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method,
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MethodAnnotationStruct.java 26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method,
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MethodAnnotationStruct.java 26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method,
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
    [all...]
  /external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
InvocationHandlerAdapter.java 21 import java.lang.reflect.Method;
30 * Handles proxy method invocations to dexmaker's InvocationHandler by calling
41 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
42 if (objectMethodsGuru.isEqualsMethod(method)) {
44 } else if (objectMethodsGuru.isHashCodeMethod(method)) {
48 ProxiedMethod proxiedMethod = new ProxiedMethod(method);
62 private final Method method; field in class:InvocationHandlerAdapter.ProxiedMethod
64 public ProxiedMethod(Method method)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
WildcardTypeTest.java 20 import java.lang.reflect.Method;
55 * @param method the declaring method
57 private void checkBoundedTypeParameter(Method method) {
58 TypeVariable<Method> typeParameter = getTypeParameter(method);
60 assertEquals(method, typeParameter.getGenericDeclaration());
68 private void checkLowerBoundedParameter(Method method) {
125 Method method = clazz.getMethod("upperBoundedParamNoReturn", BoundedWildcardsGenericMethods.class); local
131 Method method = clazz.getMethod("lowerBoundedParamReturn", BoundedWildcardsGenericMethods.class); local
138 Method method = clazz.getMethod("upperBoundedParamReturn", BoundedWildcardsGenericMethods.class); local
145 Method method = clazz.getMethod("lowerBoundedParamNoReturn", BoundedWildcardsGenericMethods.class); local
    [all...]
  /art/runtime/mirror/
dex_cache-inl.h 36 ArtMethod* method = GetResolvedMethods()->Get(method_idx); local
38 if (method != NULL && method->IsRuntimeMethod()) {
39 DCHECK(method == Runtime::Current()->GetResolutionMethod());
42 return method;
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttEnclosingMethod.java 33 /** {@code null-ok;} the name-and-type of the innermost enclosing method, if any */
34 private final CstNat method; field in class:AttEnclosingMethod
40 * @param method {@code null-ok;} the name-and-type of the innermost enclosing
41 * method, if any
43 public AttEnclosingMethod(CstType type, CstNat method) {
51 this.method = method;
69 * Gets the name-and-type of the innermost enclosing method, if
73 * method, if any
76 return method;
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
PushPromise.java 22 private final String method; field in class:PushPromise
27 public PushPromise(String method, String path, List<String> headers, MockResponse response) {
28 this.method = method;
35 return method;
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
vp9_boolcoder_test.cc 32 for (int method = 0; method <= 7; ++method) { // we generate various proba
39 (method == 0) ? 0 : (method == 1) ? 255 :
40 (method == 2) ? 128 :
41 (method == 3) ? rnd.Rand8() :
42 (method == 4) ? (parity ? 0 : 255) :
44 (method == 5) ? (parity ? rnd(128) : 255 - rnd(128)) :
45 (method == 6)
84 << " method: " << method; local
    [all...]
  /external/guava/guava/src/com/google/common/eventbus/
AnnotatedHandlerFinder.java 21 import java.lang.reflect.Method;
43 for (Method method : clazz.getMethods()) {
44 Subscribe annotation = method.getAnnotation(Subscribe.class);
47 Class<?>[] parameterTypes = method.getParameterTypes();
50 "Method " + method + " has @Subscribe annotation, but requires " +
55 EventHandler handler = makeHandler(listener, method);
66 * Creates an {@code EventHandler} for subsequently calling {@code method} on
69 * {@code method}
    [all...]

Completed in 1944 milliseconds

12 3 4 5 6 7 8 91011>>