Searched refs:method (Results 251 - 275 of 1980) sorted by relevance

<<11121314151617181920>>

/external/doclava/src/com/google/doclava/
H A DAndroidLinter.java68 public void lintMethod(MethodInfo method) { argument
69 if (!shouldLint(method.containingClass())) return;
70 lintCommon(method.position(), method.comment().tags());
71 lintCommon(method.position(), method.returnTags().tags());
73 for (TagInfo tag : method.comment().tags()) {
77 for (AnnotationInstanceInfo a : method.annotations()) {
98 Errors.error(Errors.REQUIRES_PERMISSION, method, "Method '" + method
117 lintParameter(MethodInfo method, ParameterInfo param, SourcePositionInfo position, TagInfo tag) argument
[all...]
/external/jcommander/src/main/java/com/beust/jcommander/internal/
H A DJDK6Console.java31 Method method;
33 method = console.getClass().getDeclaredMethod("readLine", new Class<?>[0]);
34 return ((String) method.invoke(console, new Object[0])).toCharArray();
36 method = console.getClass().getDeclaredMethod("readPassword", new Class<?>[0]);
37 return (char[]) method.invoke(console, new Object[0]);
/external/proguard/src/proguard/preverify/
H A DCodeSubroutineInliner.java64 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
68 // method.getName(clazz).equals("abc");
72 // Catch any unexpected exceptions from the actual visiting method.
76 visitCodeAttribute0(clazz, method, codeAttribute);
82 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
87 method.accept(clazz, new ClassPrinter());
95 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
97 branchTargetFinder.visitCodeAttribute(clazz, method, codeAttribute);
107 System.out.println("SubroutineInliner: processing ["+clazz.getName()+"."+method
166 inlineSubroutine(Clazz clazz, Method method, CodeAttribute codeAttribute, int subroutineInvocationOffset, int subroutineStart) argument
228 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
249 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
299 visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
346 visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
[all...]
/external/skia/tools/skiaserve/urlhandlers/
H A DCmdHandler.cpp16 bool CmdHandler::canHandle(const char* method, const char* url) { argument
22 const char* url, const char* method,
32 if (0 == strcmp(method, MHD_HTTP_METHOD_GET)) {
45 if (commands.count() == 2 && 0 == strcmp(method, MHD_HTTP_METHOD_DELETE)) {
53 if (commands.count() == 3 && 0 == strcmp(method, MHD_HTTP_METHOD_POST)) {
21 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
H A DImgHandler.cpp16 bool ImgHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
23 const char* url, const char* method,
22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DMethodPool.java53 public void intern(@Nonnull MethodReference method) { argument
54 Integer prev = internedItems.put(method, 0);
56 typePool.intern(method.getDefiningClass());
57 protoPool.intern(new PoolMethodProto(method));
58 stringPool.intern(method.getName());
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_methods.h14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
18 EapType method, const char *name);
19 int eap_peer_method_register(struct eap_method *method);
68 int eap_peer_method_unload(struct eap_method *method);
77 static inline int eap_peer_method_unload(struct eap_method *method) argument
84 /* EAP peer method registration calls for statically linked in methods */
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_methods.h14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
18 EapType method, const char *name);
19 int eap_peer_method_register(struct eap_method *method);
68 int eap_peer_method_unload(struct eap_method *method);
77 static inline int eap_peer_method_unload(struct eap_method *method) argument
84 /* EAP peer method registration calls for statically linked in methods */
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_methods.h14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
18 EapType method, const char *name);
19 int eap_peer_method_register(struct eap_method *method);
68 int eap_peer_method_unload(struct eap_method *method);
77 static inline int eap_peer_method_unload(struct eap_method *method) argument
84 /* EAP peer method registration calls for statically linked in methods */
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
H A DCoverageBuilderTest.java46 final MethodCoverageImpl method = new MethodCoverageImpl("doit", "()V",
48 method.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 6);
49 method.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 7);
50 method.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 8);
51 method.incrementMethodCounter();
52 addClass(123L, false, "Sample", null, method);
78 final MethodCoverageImpl method = new MethodCoverageImpl("doit", "()V",
80 method.increment(CounterImpl.COUNTER_0_1, CounterImpl.COUNTER_0_0, 6);
81 method.increment(CounterImpl.COUNTER_0_1, CounterImpl.COUNTER_0_0, 7);
82 method
[all...]
/external/guava/guava-testlib/src/com/google/common/testing/
H A DNullPointerTester.java87 * Ignore {@code method} in the tests that follow. Returns this object.
91 public NullPointerTester ignore(Method method) { argument
92 ignoredMembers.add(checkNotNull(method));
117 * Runs {@link #testMethod} on every static method of class {@code c} that has
122 for (Method method : minimalVisibility.getStaticMethods(c)) {
123 if (!isIgnored(method)) {
124 testMethod(null, method);
130 * Runs {@link #testMethod} on every public static method of class {@code c},
138 * Runs {@link #testMethod} on every instance method of the class of
143 for (Method method
175 testMethod(@ullable Object instance, Method method) argument
207 testMethodParameter( @ullable final Object instance, final Method method, int paramIndex) argument
299 Signature(Method method) argument
448 invokable(@ullable Object instance, Method method) argument
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolShrinker.java201 // Mark the bootstrap method entries.
255 public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute methodParametersAttribute) argument
260 methodParametersAttribute.parametersAccept(clazz, method, this);
264 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute) argument
273 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
279 codeAttribute.instructionsAccept(clazz, method, this);
280 codeAttribute.exceptionsAccept(clazz, method, this);
281 codeAttribute.attributesAccept(clazz, method, this);
285 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
290 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribut
294 visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
303 visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) argument
312 visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute) argument
330 visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotationsAttribute parameterAnnotationsAttribute) argument
339 visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute annotationDefaultAttribute) argument
371 visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
382 visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) argument
385 visitSameOneFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame) argument
392 visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame) argument
399 visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
409 visitAnyVerificationType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationType verificationType) argument
412 visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
420 visitParameterInfo(Clazz clazz, Method method, int parameterIndex, ParameterInfo parameterInfo) argument
428 visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo) argument
437 visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo) argument
517 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
520 visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
[all...]
H A DMethodInvocationFixer.java60 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
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) {} argument
78 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
82 // Get information on the called class and method, if present.
87 // Did we find the called class and method?
94 // Is the method static?
109 debug(clazz, method, offset, constantInstruction, replacementInstruction);
114 // Is the method privat
225 debug(Clazz clazz, Method method, int offset, ConstantInstruction constantInstruction, Instruction replacementInstruction) argument
[all...]
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
H A DCheckedProviderMethodsModule.java43 * and binding annotations on the provider method to configure the binding.
79 for (Method method : c.getDeclaredMethods()) {
80 CheckedProvides checkedProvides = method.getAnnotation(CheckedProvides.class);
82 result.add(createProviderMethod(binder, method, checkedProvides));
89 <T> CheckedProviderMethod<T> createProviderMethod(Binder binder, final Method method, argument
93 binder = binder.withSource(method);
94 Errors errors = new Errors(method);
99 List<TypeLiteral<?>> parameterTypes = typeLiteral.getParameterTypes(method);
100 Annotation[][] parameterAnnotations = method.getParameterAnnotations();
102 Key<?> key = getKey(errors, parameterTypes.get(i), method, parameterAnnotation
150 LogProvider(Method method) argument
[all...]
/external/autotest/client/cros/cellular/pseudomodem/
H A Dmessaging.py25 @dbus.service.method(mm1_constants.I_MODEM_MESSAGING, out_signature='ao')
29 This method should only be used once and subsequent information
40 @dbus.service.method(mm1_constants.I_MODEM_MESSAGING, in_signature='o')
54 @dbus.service.method(mm1_constants.I_MODEM_MESSAGING,
/external/boringssl/src/crypto/x509v3/
H A Dv3_enum.c90 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method, ASN1_ENUMERATED *e) argument
95 for (enam = method->usr_data; enam->lname; enam++) {
99 return i2s_ASN1_ENUMERATED(method, e);
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-0x.cpp33 struct method { struct in namespace:rdar12176336
36 method(vararg_func implementation) : implementation(implementation) {} function in struct:rdar12176336::method
46 method m(nullptr);
/external/flatbuffers/tests/FlatBuffers.Test/
H A DProgram.cs41 foreach (var method in methods)
45 method.Invoke(inst, new object[] { });
51 testClass.Name ,method.Name, ex.GetBaseException());
/external/guava/guava/src/com/google/common/eventbus/
H A DAnnotatedSubscriberFinder.java72 for (Method method : getAnnotatedMethods(clazz)) {
73 Class<?>[] parameterTypes = method.getParameterTypes();
75 EventSubscriber subscriber = makeSubscriber(listener, method);
93 MethodIdentifier(Method method) { argument
94 this.name = method.getName();
95 this.parameterTypes = Arrays.asList(method.getParameterTypes());
138 * Creates an {@code EventSubscriber} for subsequently calling {@code method} on
141 * {@code method}.
143 * @param listener object bearing the event subscriber method.
144 * @param method th
148 makeSubscriber(Object listener, Method method) argument
166 methodIsDeclaredThreadSafe(Method method) argument
[all...]
/external/nanopb-c/generator/google/protobuf/
H A Dservice_reflection.py142 # 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 ha
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
H A DAndroidTrustRootIndex.java54 // From org.conscrypt.TrustManagerImpl, we want the method with this signature:
57 Method method = trustManager.getClass().getDeclaredMethod(
59 method.setAccessible(true);
60 return new AndroidTrustRootIndex(trustManager, method);
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DVerificationType.java59 * 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); argument
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); argument
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); argument
/external/protobuf/python/google/protobuf/
H A Dservice_reflection.py142 # 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 ha
[all...]
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliRegisterReference.java60 SmaliMethod method = getParentMethod();
61 registerNumber += method.getRegisterCount() - method.getParameterRegisterCount();
/external/autotest/client/deps/graphics/graphics_test_extension/
H A Dbackground.js16 console.log("Background got message: " + message.method);
17 if (!message.method)
19 if (message.method == "createWindow") {
23 } else if (message.method == "setFullscreen") {
26 } else if (message.method == "updateWindow") {
30 } else if (message.method == "moveAndSetFullscreen") {

Completed in 594 milliseconds

<<11121314151617181920>>