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

<<31323334353637383940>>

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_char/d/
T_sput_char_1.d 23 .method public <init>()V
28 .end method
30 .method public static getPvtField()C
35 .end method
37 .method public run()V
44 .end method
T_sput_char_14.d 20 .method public <init>()V
25 .end method
27 .method public static getProtectedField()C
32 .end method
34 .method public run()V
40 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_object/d/
T_sput_object_14.d 20 .method public <init>()V
25 .end method
27 .method public static getProtectedField()Ljava/lang/Object;
32 .end method
34 .method public run()V
39 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_short/d/
T_sput_short_1.d 23 .method public <init>()V
28 .end method
30 .method public static getPvtField()S
35 .end method
37 .method public run()V
44 .end method
T_sput_short_14.d 20 .method public <init>()V
25 .end method
27 .method public static getProtectedField()S
32 .end method
34 .method public run()V
40 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_wide/d/
T_sput_wide_1.d 23 .method public <init>()V
28 .end method
30 .method public static getPvtField()J
35 .end method
37 .method public run()V
44 .end method
T_sput_wide_14.d 20 .method public <init>()V
25 .end method
27 .method public static getProtectedField()J
32 .end method
34 .method public run()V
40 .end method
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableExtractor.java 28 * a method. Stolen and retrofitted from
35 /** {@code non-null;} method being extracted from */
36 private final SsaMethod method; field in class:LocalVariableExtractor
38 /** {@code non-null;} block list for the method */
48 * Extracts out all the local variable information from the given method.
50 * @param method {@code non-null;} the method to extract from
53 public static LocalVariableInfo extract(SsaMethod method) {
54 LocalVariableExtractor lve = new LocalVariableExtractor(method);
59 * Constructs an instance. This method is private. Use {@link #extract}
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
modem_simple.py 20 @dbus.service.method(mm1_constants.I_MODEM_SIMPLE,
27 This method will attempt to find a matching packet data bearer and
57 @dbus.service.method(mm1_constants.I_MODEM_SIMPLE, in_signature='o',
64 path is "/" (i.e. no object given) this method will disconnect
71 return_cb. This allows control flow to be set when this method
80 @dbus.service.method(mm1_constants.I_MODEM_SIMPLE, out_signature='a{sv}')
  /external/autotest/frontend/shared/
resource_test_utils.py 28 def _expected_status(self, method):
29 if method == 'post':
31 if method == 'delete':
36 def raw_request(self, method, uri, **kwargs):
37 method = method.lower()
38 if method == 'put':
42 # trick to override the method.
43 method = 'post'
46 client_method = getattr(self.client, method)
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_enum.c 88 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method,
94 for(enam = method->usr_data; enam->lname; enam++) {
97 return i2s_ASN1_ENUMERATED(method, e);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3-0x.cpp 33 struct method { struct in namespace:rdar12176336
36 method(vararg_func implementation) : implementation(implementation) {} function in struct:rdar12176336::method
46 method m(nullptr);
  /external/dbus/test/name-test/
test-threads-init.c 19 DBusMessage *method; local
24 method = dbus_message_new_method_call ("org.freedesktop.DBus.TestSuiteEchoService",
29 dbus_message_append_args (method, DBUS_TYPE_STRING, &echo, NULL);
30 dbus_connection_send_with_reply (conn, method, &echo_pending, -1);
31 dbus_message_unref (method);
34 method = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
39 dbus_connection_send_with_reply (conn, method, &dbus_pending, -1);
40 dbus_message_unref (method);
112 DBusMessage *method; local
171 method = dbus_message_new_method_call ("org.freedesktop.TestSuiteEchoService"
    [all...]
  /external/dbus-binding-generator/chromeos-dbus-bindings/
method_name_generator.cc 22 return "k" + method_name + "Method";
35 for (const auto& method : interface.methods) {
38 GenerateMethodNameConstant(method.name).c_str(),
39 method.name.c_str()));
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LocalVariableExtractor.java 29 * a method. Stolen and retrofitted from
36 /** {@code non-null;} method being extracted from */
37 private final SsaMethod method; field in class:LocalVariableExtractor
39 /** {@code non-null;} block list for the method */
49 * Extracts out all the local variable information from the given method.
51 * @param method {@code non-null;} the method to extract from
54 public static LocalVariableInfo extract(SsaMethod method) {
55 LocalVariableExtractor lve = new LocalVariableExtractor(method);
60 * Constructs an instance. This method is private. Use {@link #extract}
    [all...]
  /external/guava/guava/src/com/google/common/eventbus/
AnnotatedSubscriberFinder.java 31 import java.lang.reflect.Method;
53 private static final LoadingCache<Class<?>, ImmutableList<Method>> subscriberMethodsCache =
56 .build(new CacheLoader<Class<?>, ImmutableList<Method>>() {
58 public ImmutableList<Method> load(Class<?> concreteClass) throws Exception {
72 for (Method method : getAnnotatedMethods(clazz)) {
73 Class<?>[] parameterTypes = method.getParameterTypes();
75 EventSubscriber subscriber = makeSubscriber(listener, method);
81 private static ImmutableList<Method> getAnnotatedMethods(Class<?> clazz) {
93 MethodIdentifier(Method method)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
DefaultTextureBinder.java 45 /** The method of binding to use */
46 private final int method; field in class:DefaultTextureBinder
54 public DefaultTextureBinder (final int method) {
55 this(method, 0);
59 public DefaultTextureBinder (final int method, final int offset) {
60 this(method, offset, -1);
64 public DefaultTextureBinder (final int method, final int offset, final int count) {
65 this(method, offset, count, 10);
68 public DefaultTextureBinder (final int method, final int offset, int count, final int reuseWeight) {
73 this.method = method;
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
FixedValueGenerator.java 32 MethodInfo method = (MethodInfo)it.next(); local
33 CodeEmitter e = context.beginMethod(ce, method);
34 context.emitCallback(e, context.getIndex(method));
  /external/nanopb-c/generator/google/protobuf/
service_reflection.py 142 # instance to the method that does the real CallMethod work.
153 for method in self.descriptor.methods:
154 setattr(cls, method.name, self._GenerateNonImplementedMethod(method))
158 """Calls the method described by a given method descriptor.
161 srvc: Instance of the service for which this method is called.
162 method_descriptor: Descriptor that represent the method to call.
163 rpc_controller: RPC controller to use for this method's execution.
165 callback: A callback to invoke after the method has completed
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/
VerificationType.java 59 * Accepts the given visitor in the context of a method's code, either on
62 public abstract void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor);
66 * Accepts the given visitor in the context of a stack in a method's code .
68 public abstract void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor);
72 * Accepts the given visitor in the context of a variable in a method's code.
74 public abstract void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor);
  /external/proguard/src/proguard/classfile/editor/
MethodInvocationFixer.java 60 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
66 codeAttribute.instructionsAccept(clazz, method, this);
69 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
75 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
78 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
82 // Get information on the called class and method, if present.
87 // Did we find the called class and method
    [all...]
  /external/protobuf/python/google/protobuf/
service_reflection.py 142 # instance to the method that does the real CallMethod work.
153 for method in self.descriptor.methods:
154 setattr(cls, method.name, self._GenerateNonImplementedMethod(method))
158 """Calls the method described by a given method descriptor.
161 srvc: Instance of the service for which this method is called.
162 method_descriptor: Descriptor that represent the method to call.
163 rpc_controller: RPC controller to use for this method's execution.
165 callback: A callback to invoke after the method has completed
    [all...]
  /external/skia/tools/skiaserve/urlhandlers/
DataHandler.cpp 16 bool DataHandler::canHandle(const char* method, const char* url) {
18 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
23 const char* url, const char* method,
DownloadHandler.cpp 18 bool DownloadHandler::canHandle(const char* method, const char* url) {
19 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
24 const char* url, const char* method,
EnableGPUHandler.cpp 16 bool EnableGPUHandler::canHandle(const char* method, const char* url) {
18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) &&
23 const char* url, const char* method,

Completed in 1350 milliseconds

<<31323334353637383940>>