HomeSort by relevance Sort by last modified time
    Searched defs:method (Results 176 - 200 of 1414) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClient4.java 61 final String method = request.method; local
64 final boolean isDelete = DELETE.equalsIgnoreCase(method);
65 final boolean isPost = POST.equalsIgnoreCase(method);
66 final boolean isPut = PUT.equalsIgnoreCase(method);
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jddctmgr.c 32 * The multiplier table contents are IDCT-method-dependent. To support
33 * application changes in IDCT method between scans, we can remake the
47 /* This array contains the IDCT method code that each multiplier table
95 int method = 0; local
106 method = JDCT_ISLOW; /* jidctred uses islow-style table */
110 method = JDCT_ISLOW; /* jidctred uses islow-style table */
114 method = JDCT_ISLOW; /* jidctred uses islow-style table */
122 method = JDCT_ISLOW;
128 method = JDCT_IFAST;
134 method = JDCT_FLOAT
    [all...]
  /external/proguard/src/proguard/obfuscate/
MappingKeeper.java 148 // Find the method.
152 Method method = clazz.findMethod(methodName, descriptor); local
153 if (method != null)
159 String currentNewName = MemberObfuscator.newMemberName(method);
166 ": method '" + methodReturnType + " " + methodName + JavaConstants.METHOD_ARGUMENTS_OPEN + methodArguments + JavaConstants.METHOD_ARGUMENTS_CLOSE +
173 MemberObfuscator.setFixedNewMemberName(method, newMethodName);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_service.cc 93 "void CallMethod(const ::google::protobuf::MethodDescriptor* method,\n"
99 " const ::google::protobuf::MethodDescriptor* method) const;\n"
101 " const ::google::protobuf::MethodDescriptor* method) const;\n");
145 const MethodDescriptor* method = descriptor_->method(i); local
147 sub_vars["name"] = method->name();
148 sub_vars["input_type"] = ClassName(method->input_type(), true);
149 sub_vars["output_type"] = ClassName(method->output_type(), true);
214 const MethodDescriptor* method = descriptor_->method(i) local
245 const MethodDescriptor* method = descriptor_->method(i); local
288 const MethodDescriptor* method = descriptor_->method(i); local
312 const MethodDescriptor* method = descriptor_->method(i); local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.cc 141 const MethodDescriptor* method = descriptor_->method(i); local
143 GenerateMethodSignature(printer, method, IS_CONCRETE);
146 " impl.$method$(controller, request, done);\n"
148 "method", UnderscoresToCamelCase(method));
180 const MethodDescriptor* method = descriptor_->method(i); local
181 WriteMethodDocComment(printer, method);
182 GenerateMethodSignature(printer, method, IS_ABSTRACT)
206 const MethodDescriptor* method = descriptor_->method(i); local
254 const MethodDescriptor* method = descriptor_->method(i); local
301 const MethodDescriptor* method = descriptor_->method(i); local
348 const MethodDescriptor* method = descriptor_->method(i); local
392 const MethodDescriptor* method = descriptor_->method(i); local
414 const MethodDescriptor* method = descriptor_->method(i); local
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
JumboStringConversionTest.java 100 Method method = Iterables.getFirst(classDef.getMethods(), null); local
101 Assert.assertNotNull(method);
103 MethodImplementation impl = method.getImplementation();
197 Method method = Iterables.getFirst(classDef.getMethods(), null); local
198 Assert.assertNotNull(method);
200 MethodImplementation impl = method.getImplementation();
  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 17 package android.text.method;
NumberKeyListener.java 17 package android.text.method;
ScrollingMovementMethod.java 17 package android.text.method;
25 * A movement method that interprets movement keys by scrolling the text buffer.
  /frameworks/base/test-runner/src/android/test/
ActivityInstrumentationTestCase2.java 22 import java.lang.reflect.Method;
31 * <li>You can run any test method on the UI thread (see {@link android.test.UiThreadTest}).</li>
80 * For each test method invocation, the Activity will not actually be created until the first
81 * time this method is called.
89 * If your test method is annotated with {@link android.test.UiThreadTest}, then your Activity
90 * will be started automatically just before your test method is run. You still call this
91 * method in order to get the Activity under test.
114 * Call this method before the first call to {@link #getActivity} to inject a customized Intent
121 * If your test method is annotated with {@link android.test.UiThreadTest}, then you must call
124 * <p>The default Intent (if this method is not called) is
185 Method method = getClass().getMethod(getName(), (Class[]) null); local
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
AssignableFromTest.java 21 import java.lang.reflect.Method;
54 Method method = aClass.getMethod("testX"); local
55 return new TestMethod(method, aClass);
  /frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
MainActivityTest.java 9 import java.lang.reflect.Method;
47 Method method = targetClass.getDeclaredMethod(methodName, paramClasses); local
48 method.setAccessible(true);
49 return method.invoke(target, params);
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTest/java/android/databinding/testapp/
BaseDataBinderTest.java 26 import java.lang.reflect.Method;
81 final Method[] method = {null}; local
88 method[0] = mBinderClass.getMethod("inflate", LayoutInflater.class);
89 mBinder = (T) method[0].invoke(null, getActivity().getLayoutInflater());
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
FindMethodBindingObject.java 29 public String method() { return "no arg"; } method in class:FindMethodBindingObject
31 public String method(int i) { return String.valueOf(i); } method in class:FindMethodBindingObject
33 public String method(float f) { return String.valueOf(f); } method in class:FindMethodBindingObject
35 public String method(String value) { return value; } method in class:FindMethodBindingObject
76 public T method(T value) { return value; } method in class:FindMethodBindingObject.Bar
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MissingClassesTest.java 56 loadableClass.getDeclaredMethod("method", Unloadable.class);
72 void method(Unloadable unloadable) {} method in class:MissingClassesTest.Loadable
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
fpclassify.hpp 251 typedef typename traits::method method; typedef
254 if(std::numeric_limits<T>::is_specialized && detail::is_generic_tag_false(static_cast<method*>(0)))
256 return detail::fpclassify_imp(static_cast<value_type>(t), method());
258 return detail::fpclassify_imp(static_cast<value_type>(t), method());
314 typedef typename traits::method method; typedef
317 return detail::isfinite_impl(static_cast<value_type>(x), method());
374 typedef typename traits::method method; typedef
452 typedef typename traits::method method; typedef
522 typedef typename traits::method method; typedef
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/wizards/templates/
FmClassNameToResourceMethodTest.java 30 FmClassNameToResourceMethod method = new FmClassNameToResourceMethod(); local
32 assertEquals(expected, ((SimpleScalar) method.exec(list)).getAsString());
FmEscapeXmlStringMethodTest.java 30 FmEscapeXmlStringMethod method = new FmEscapeXmlStringMethod(); local
32 assertEquals(expected, ((SimpleScalar) method.exec(list)).getAsString());
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.1/
proguard-base-5.1.jar 
  /prebuilts/tools/common/offline-m2/net/sf/proguard/proguard-base/5.1/
proguard-base-5.1.jar 
  /external/droiddriver/src/io/appium/droiddriver/helpers/
BaseDroidDriverTest.java 28 import java.lang.reflect.Method;
91 * behavior - if multiple subclasses override this method, only the first override is executed.
93 * or override this method, which is a simpler alternative with the aforementioned catch.
138 // This method is for troubleshooting. Do not throw new error; we'll
220 Method method = null; local
226 method = getClass().getMethod(fName, (Class[]) null);
228 fail("Method \"" + fName + "\" not found");
231 if (!Modifier.isPublic(method.getModifiers())) {
232 fail("Method \"" + fName + "\" should be public")
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
ForwardingWrapperTester.java 33 import java.lang.reflect.Method;
38 * Tester to ensure forwarding wrapper works by delegating calls to the corresponding method
67 * method calls with parameters passed as is, return value returned as is, and exceptions
74 Method[] methods = getMostConcreteMethods(interfaceType);
76 for (Method method : methods) {
79 if (method.getName().equals("equals")
80 && method.getParameterTypes().length == 1
81 && method.getParameterTypes()[0] == Object.class) {
84 if (method.getName().equals("hashCode"
172 private final Method method; field in class:ForwardingWrapperTester.InteractionTester
    [all...]
  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 154 return OAuth.percentEncode(message.method.toUpperCase()) + '&'
221 OAuthSignatureMethod method = (OAuthSignatureMethod) methodClass local
223 method.initialize(name, accessor);
224 return method;
  /external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
OkApacheClient.java 46 String method = requestLine.getMethod(); local
72 builder.method(method, body);

Completed in 239 milliseconds

1 2 3 4 5 6 78 91011>>