Searched refs:method (Results 276 - 300 of 1980) sorted by relevance

<<11121314151617181920>>

/external/autotest/client/site_tests/video_GlitchDetection/
H A Dfroogaloop.js35 * @param {string} method The name of the Javascript API method to call. Eg: 'play'.
36 * @param {Array|Function} valueOrCallback params Array of parameters to pass when calling an API method
37 * or callback function when the method returns a value.
39 api: function(method, valueOrCallback) {
40 if (!this.element || !method) {
52 storeCallback(method, callback, target_id);
55 postMessage(method, params, element);
113 * @param method (String): name of the method t
[all...]
/external/autotest/client/site_tests/video_VimeoVideo/
H A Dfroogaloop.js35 * @param {string} method The name of the Javascript API method to call. Eg: 'play'.
36 * @param {Array|Function} valueOrCallback params Array of parameters to pass when calling an API method
37 * or callback function when the method returns a value.
39 api: function(method, valueOrCallback) {
40 if (!this.element || !method) {
52 storeCallback(method, callback, target_id);
55 postMessage(method, params, element);
113 * @param method (String): name of the method t
[all...]
/external/clang/test/OpenMP/
H A Ddeclare_target_messages.cpp33 virtual int method();
40 virtual int method() { T a; return 0; } // expected-error {{type 'T' is not mappable to target}} function in class:VC
46 int method();
60 g = object.method();
62 g += object1.method();
71 int C::method() { function in class:C
/external/emma/core/java12/com/vladium/jcd/cls/
H A DMethodCollection.java44 final Method_info method = (Method_info) m_methods.get (m);
46 if (method.getName (cls).equals (name))
108 public int add (final Method_info method) argument
111 m_methods.add (method);
116 public Method_info set (final int offset, final Method_info method) argument
118 return (Method_info) m_methods.set (offset, method);
139 private List/* Method_info */ m_methods; // method collection
/external/proguard/src/proguard/optimize/peephole/
H A DUnreachableExceptionRemover.java69 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
72 codeAttribute.exceptionsAccept(clazz, method, this);
83 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
86 method,
96 extraExceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
108 Method method,
107 mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int startOffset, int endOffset) argument
/external/autotest/client/cros/cellular/pseudomodem/
H A Dmodemmanager.py24 @dbus.service.method(mm1_constants.I_MODEM_MANAGER)
27 # TODO(armansito): For now this method is a noop. shill
28 # doesn't use this method afaik, but it doesn't make sense
31 # modems upon initialization, and this method would add them?
36 @dbus.service.method(mm1_constants.I_MODEM_MANAGER, in_signature='s')
/external/clang/test/Analysis/
H A Dinitializer.cpp157 void method() const;
162 myStruct.method(); // no-warning
167 myStruct1.method(); // no-warning
168 myStruct2.method(); // no-warning
169 myStruct3.method(); // no-warning
174 myStruct.method(); // no-warning
190 ms.method(); // no-warning
191 msWithCleanups.method(); // no-warning
/external/guava/guava-tests/test/com/google/common/io/
H A DSourceSinkTester.java81 SourceSinkTester(F factory, T data, String suiteName, String caseDesc, Method method) { argument
82 super(method.getName());
115 for (Method method : testClass.getDeclaredMethods()) {
116 if (Modifier.isPublic(method.getModifiers())
117 && method.getReturnType() == void.class
118 && method.getParameterTypes().length == 0
119 && method.getName().startsWith("test")) {
120 result.add(method);
/external/junit-params/src/main/java/junitparams/internal/
H A DDeferredErrorFrameworkMethod.java17 DeferredErrorFrameworkMethod(Method method, Description description, argument
19 super(method, description);
/external/libmicrohttpd/doc/chapters/
H A Dexploringrequests.inc15 const char *method, const char *version,
28 already have noted that a request consists of a command (or "HTTP method") and a URI (e.g. a filename).
33 printf ("New %s request for %s using version %s\n", method, url, version);
75 recommended as the GET method (including its header data) is by convention considered a "safe"
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpResponseMessage.java31 protected HttpResponseMessage(String method, URL url) { argument
32 super(method, url);
/external/proguard/src/proguard/classfile/attribute/
H A DDeprecatedAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitDeprecatedAttribute(clazz, method, this);
H A DExceptionsAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitExceptionsAttribute(clazz, method, this);
H A DSyntheticAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitSyntheticAttribute(clazz, method, this);
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotationDefaultAttribute.java69 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
71 attributeVisitor.visitAnnotationDefaultAttribute(clazz, method, this);
H A DRuntimeInvisibleAnnotationsAttribute.java66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
68 attributeVisitor.visitRuntimeInvisibleAnnotationsAttribute(clazz, method, this);
H A DRuntimeVisibleAnnotationsAttribute.java66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
68 attributeVisitor.visitRuntimeVisibleAnnotationsAttribute(clazz, method, this);
H A DTypeAnnotation.java89 public void targetInfoAccept(Clazz clazz, Method method, TargetInfoVisitor targetInfoVisitor) argument
93 targetInfo.accept(clazz, method, this, targetInfoVisitor);
100 public void targetInfoAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, TargetInfoVisitor targetInfoVisitor) argument
104 targetInfo.accept(clazz, method, codeAttribute, this, targetInfoVisitor);
139 public void typePathInfosAccept(Clazz clazz, Method method, TypePathInfoVisitor typePathVisitor) argument
145 typePathVisitor.visitTypePathInfo(clazz, method, this, typePath[index]);
153 public void typePathInfosAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TypePathInfoVisitor typePathVisitor) argument
159 typePathVisitor.visitTypePathInfo(clazz, method, codeAttribute, typeAnnotation, typePath[index]);
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DTypeAnnotationVisitor.java39 public void visitTypeAnnotation(Clazz clazz, Method method, TypeAnnotation typeAnnotation); argument
40 public void visitTypeAnnotation(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation); argument
H A DTypePathInfoVisitor.java39 public void visitTypePathInfo(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo); argument
40 public void visitTypePathInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo); argument
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DSameZeroFrame.java62 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) argument
64 stackMapFrameVisitor.visitSameZeroFrame(clazz, method, codeAttribute, offset, this);
/external/proguard/src/proguard/classfile/editor/
H A DStackSizeUpdater.java46 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
49 stackSizeComputer.visitCodeAttribute(clazz, method, codeAttribute);
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DAllInstructionVisitor.java52 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
54 codeAttribute.instructionsAccept(clazz, method, instructionVisitor);
/external/proguard/src/proguard/classfile/visitor/
H A DExceptionExcludedOffsetFilter.java57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
H A DExceptionHandlerFilter.java61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
67 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);

Completed in 4864 milliseconds

<<11121314151617181920>>