Searched defs:method (Results 176 - 200 of 1189) sorted by relevance

1234567891011>>

/external/skia/tools/skiaserve/urlhandlers/
H A DEnableGPUHandler.cpp16 bool EnableGPUHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) &&
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
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
H A DInfoHandler.cpp17 bool InfoHandler::canHandle(const char* method, const char* url) { argument
19 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
24 const char* url, const char* method,
23 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
/external/sl4a/Common/src/com/googlecode/android_scripting/language/
H A DBeanShellLanguage.java40 protected String getMethodCallText(String receiver, String method, argument
44 .append(method);
H A DHtmlLanguage.java36 protected String getMethodCallText(String receiver, String method, argument
40 .append(method);
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
H A DJavassistHelper.java47 * @param method
48 * descriptor of method
52 public static String returnValue(CtBehavior method) throws NotFoundException { argument
55 if (methodReturnsValue(method)) {
62 * determine if the given method returns a value, and return true if so.
65 * @param method
69 private static boolean methodReturnsValue(CtBehavior method) throws NotFoundException { argument
71 if (method instanceof CtMethod == false) {
75 CtClass returnType = ((CtMethod) method).getReturnType();
89 * @param method
93 getSignature(CtBehavior method) argument
157 parameterNameFor(CtBehavior method, LocalVariableAttribute locals, int i) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
H A DReflectionMethod.java50 private final java.lang.reflect.Method method; field in class:ReflectionMethod
52 public ReflectionMethod(java.lang.reflect.Method method) { argument
53 this.method = method;
57 final java.lang.reflect.Method method = this.method;
59 private final Class[] parameters = method.getParameterTypes();
84 return method.getModifiers();
96 return ReflectionUtils.javaToDexName(method.getDeclaringClass().getName());
100 return method
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedMethodImplementation.java53 @Nonnull public final DexBackedMethod method; field in class:DexBackedMethodImplementation
57 @Nonnull DexBackedMethod method,
60 this.method = method;
84 // Does the instruction extend past the end of the method?
87 throw new ExceptionWithContext("The last instruction in the method is truncated");
56 DexBackedMethodImplementation(@onnull DexBackedDexFile dexFile, @Nonnull DexBackedMethod method, int codeOffset) argument
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
H A DLazyBooleanValue.java39 public LazyBooleanValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
H A DLazyByteValue.java39 public LazyByteValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
H A DLazyCharValue.java39 public LazyCharValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
H A DLazyClassLoaderReference.java43 public LazyClassLoaderReference(SmaliMethod method, Project project, int registerNumber, String type) { argument
44 super(method, project, registerNumber, type);
H A DLazyClassObjectReference.java41 public LazyClassObjectReference(SmaliMethod method, Project project, int registerNumber, String type) { argument
42 super(method, project, registerNumber, type);
H A DLazyComparablePrimitiveValue.java40 public LazyComparablePrimitiveValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
41 super(method, project, registerNumber, type);
H A DLazyDoubleValue.java39 public LazyDoubleValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
H A DLazyFloatValue.java39 public LazyFloatValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
H A DLazyIntegerValue.java39 public LazyIntegerValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
H A DLazyLongValue.java39 public LazyLongValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
H A DLazyShortValue.java39 public LazyShortValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
H A DLazyStringReference.java39 public LazyStringReference(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
H A DLazyThreadGroupReference.java44 public LazyThreadGroupReference(SmaliMethod method, Project project, int registerNumber, String type) { argument
45 super(method, project, registerNumber, type);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
H A DWrongJavaBean.java26 method();
29 private void method() { method in class:WrongJavaBean
/external/testng/src/main/java/org/testng/
H A DIResultMap.java9 public void addResult(ITestResult result, ITestNGMethod method); argument
11 public Set<ITestResult> getResults(ITestNGMethod method); argument
/external/testng/src/main/java/org/testng/internal/
H A DBsh.java50 private void setContext(Interpreter interpreter, Method method, Map<String, String> groups, ITestNGMethod tm) { argument
52 interpreter.set("method", method);
63 interpreter.unset("method");
H A DExpectedExceptionsHolder.java15 protected final ITestNGMethod method; field in class:ExpectedExceptionsHolder
19 protected ExpectedExceptionsHolder(IAnnotationFinder finder, ITestNGMethod method, IExpectedExceptionsHolder holder) { argument
21 this.method = method;
22 expectedClasses = findExpectedClasses(finder, method);
26 private static Class<?>[] findExpectedClasses(IAnnotationFinder finder, ITestNGMethod method) { argument
28 finder.findAnnotation(method, IExpectedExceptionsAnnotation.class);
35 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class);

Completed in 3840 milliseconds

1234567891011>>