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

<<11121314151617181920>>

  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
RecordedRequest.java 29 private final String method; field in class:RecordedRequest
53 this.method = requestLine.substring(0, methodEnd);
56 this.method = null;
66 return method;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Request.java 33 private final String method; field in class:Request
44 this.method = builder.method;
73 public String method() { method in class:Request
74 return method;
115 return "Request{method="
116 + method
127 private String method; field in class:Request.Builder
133 this.method = "GET";
140 this.method = request.method
228 public Builder method(String method, RequestBody body) { method in class:Request.Builder
    [all...]
  /external/openssh/
auth1.c 63 int (*method)(Authctxt *); member in struct:AuthMethod1
302 authenticated = meth->method(authctxt);
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 99 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
103 // method.getName(clazz).equals("abc");
106 // Catch any unexpected exceptions from the actual visiting method.
110 visitCodeAttribute0(clazz, method, codeAttribute);
116 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
121 method.accept(clazz, new ClassPrinter());
129 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute
    [all...]
  /external/protobuf/benchmarks/
ProtoBench.java 40 import java.lang.reflect.Method;
80 Method method = clazz.getDeclaredMethod("getDefaultInstance"); local
81 defaultMessage = (Message) method.invoke(null);
  /external/vogar/src/vogar/target/junit/
Junit4.java 22 import java.lang.reflect.Method;
48 * @param args if non-empty, this is the list of test method names.
63 for (Method m : testClass.getMethods()) {
98 for (Method m : testClass.getMethods()) {
112 private static void addAllParameterizedTests(List<VogarTest> out, Class<?> testClass, Method m,
154 for (Method m : klass.getDeclaredMethods()) {
196 protected final Method method; field in class:Junit4.VogarJUnitTest
198 protected VogarJUnitTest(Class<?> testClass, Method method) {
    [all...]
  /external/wpa_supplicant_8/hs20/server/www/
est.php 8 $method = $_SERVER["REQUEST_METHOD"]; variable
66 $A2 = md5($method . ':' . $data['uri']);
76 if ($method == "GET" && $cmd == "cacerts") {
90 } else if ($method == "GET" && $cmd == "csrattrs") {
95 } else if ($method == "POST" && $cmd == "simpleenroll") {
194 error_log("EST: Unexpected method or path");
195 die("Unexpected method or path");
  /external/wpa_supplicant_8/src/eap_peer/
eap.h 22 u32 method; member in struct:eap_method_type
209 * An EAP method can perform a pending operation (e.g., to get a
244 * @parameter: Step-specific parameter, e.g., EAP method name
  /external/zlib/src/contrib/minizip/
mztools.c 56 unsigned int method = READ_16(header + 8); local
156 WRITE_16(header + 10, method);
  /frameworks/base/cmds/idmap/
scan.cpp 135 uint16_t method; local
136 if (!zip->getEntryInfo(entry, &method, &uncompLen, NULL, NULL, NULL, NULL)) {
140 if (method != ZipFileRO::kCompressDeflated) {
141 ALOGW("%s: cannot handle zip compression method %" PRIu16 "\n", __FUNCTION__, method);
  /frameworks/base/core/java/android/text/method/
BaseKeyListener.java 17 package android.text.method;
22 import android.text.method.TextKeyListener.Capitalize;
CharacterPickerDialog.java 17 package android.text.method;
ReplacementTransformationMethod.java 17 package android.text.method;
29 * This transformation method causes the characters in the {@link #getOriginal}
WordIterator.java 18 package android.text.method;
151 // so this method can be removed.
170 // so this method can be removed.
  /frameworks/base/core/tests/utillib/src/android/test/
BandwidthTestCase.java 24 import java.lang.reflect.Method;
46 Method method = null; local
54 method = testClass.getMethod(fName, (Class[]) null);
56 fail("Method \""+fName+"\" not found");
59 if (!Modifier.isPublic(method.getModifiers())) {
60 fail("Method \""+fName+"\" should be public");
65 if (method.isAnnotationPresent(FlakyTest.class)) {
66 runCount = method.getAnnotation(FlakyTest.class).tolerance();
67 } else if (method.isAnnotationPresent(RepetitiveTest.class))
    [all...]
  /frameworks/base/libs/androidfw/
ZipUtils.cpp 266 int method, flags; local
272 method = getc(fp);
276 if (method == EOF || flags == EOF)
278 if (method != ZipFileRO::kCompressDeflated)
325 *pCompressionMethod = method;
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestMethod.java 24 import java.lang.reflect.Method;
36 public TestMethod(Method method, Class<? extends TestCase> enclosingClass) {
37 this(method.getName(), enclosingClass);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
MethodCallExpr.java 73 ModelMethod method = target.getResolvedType().getMethod(mName, args, isStatic); local
74 if (method == null) {
75 String message = "cannot find method '" + mName + "' in class " +
78 L.e(e, "cannot find method %s in class %s", mName,
82 if (!isStatic && method.isStatic()) {
83 // found a static method on an instance. Use class instead
94 if (method.isStatic()) {
97 mGetter = new Callable(Type.METHOD, method.getName(), method.getReturnType(args), flags)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
TypeVariableTest.java 21 import java.lang.reflect.Method;
48 Method method = clazz.getDeclaredMethod("b"); local
49 TypeVariable<Method>[] typeParameters = method.getTypeParameters();
51 TypeVariable<Method> typeVariable = typeParameters[0];
52 assertEquals(method, typeVariable.getGenericDeclaration());
96 Method method = clazz.getDeclaredMethod("e"); local
98 TypeVariable<?>[] typeParameters = method.getTypeParameters()
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
fp_traits.hpp 134 typedef native_tag method; typedef in struct:boost::math::detail::fp_traits_native
142 typedef generic_tag<std::numeric_limits<T>::is_specialized> method; typedef in struct:boost::math::detail::fp_traits_non_native
144 typedef generic_tag<false> method;
159 method -- tells us whether all bytes are copied or not.
179 typedef ieee_copy_all_bits_tag method; typedef in struct:boost::math::detail::fp_traits_non_native
198 typedef ieee_copy_leading_bits_tag method; typedef in struct:boost::math::detail::fp_traits_non_native
234 typedef ieee_copy_all_bits_tag method; typedef in struct:boost::math::detail::fp_traits_non_native
258 typedef ieee_copy_leading_bits_tag method; typedef in struct:boost::math::detail::fp_traits_non_native
294 typedef ieee_copy_all_bits_tag method; typedef in struct:boost::math::detail::fp_traits_non_native
321 typedef ieee_copy_leading_bits_tag method; typedef in struct:boost::math::detail::fp_traits_non_native
365 typedef ieee_copy_leading_bits_tag method; typedef in struct:boost::math::detail::fp_traits_non_native
410 typedef ieee_copy_leading_bits_tag method; typedef in struct:boost::math::detail::fp_traits_non_native
446 typedef ieee_copy_leading_bits_tag method; typedef in struct:boost::math::detail::fp_traits_non_native
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusstringformat.h 87 StringDigitSubstitute method; local
89 nativeStringFormat, &result, &method));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParserTest.java 28 import java.lang.reflect.Method;
38 * Convention: method names that start with an underscore are actually local wrappers
143 Method method = AndroidTargetParser.class.getDeclaredMethod("getLayoutClasses"); //$NON-NLS-1$ local
144 method.setAccessible(true);
145 method.invoke(mParser);
151 Method method = LayoutParamsParser.class.getDeclaredMethod("addGroup", //$NON-NLS-1$ local
153 method.setAccessible(true);
154 return (ViewClassInfo) method.invoke(mParser, new ClassWrapper(groupClass))
160 Method method = LayoutParamsParser.class.getDeclaredMethod("addLayoutParams", \/\/$NON-NLS-1\$ local
168 Method method = LayoutParamsParser.class.getDeclaredMethod("getLayoutParamsInfo", \/\/$NON-NLS-1\$ local
176 Method method = LayoutParamsParser.class.getDeclaredMethod("findLayoutParams", \/\/$NON-NLS-1\$ local
    [all...]
  /cts/tests/signature-tests/src/android/signature/cts/tests/
JDiffClassDescriptionTest.java 152 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
154 clz.addMethod(method);
156 assertEquals(method.toSignatureString(), "public static void staticMethod()");
161 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
163 clz.addMethod(method);
165 assertEquals(method.toSignatureString(), "public synchronized void syncMethod()");
170 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
172 clz.addMethod(method);
174 assertEquals(method.toSignatureString(), "boolean packageProtectedMethod()");
179 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod local
188 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
197 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
208 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
343 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
356 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
367 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
378 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
419 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
435 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
450 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
466 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod( local
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
PasswordTransformationMethodTest.java 17 package android.text.method.cts;
26 import android.text.method.PasswordTransformationMethod;
162 PasswordTransformationMethod method = new PasswordTransformationMethod(); local
165 method.getTransformation(TEST_CONTENT, null).toString());
167 CharSequence transformed = method.getTransformation(null, mEditText);
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 205 } else if ("method".equals(token)) {
215 throw new ApiParseException("expected ctor, enum_constant, field or method", tokenizer.getLine());
229 MethodInfo method; local
250 //method = new MethodInfo(name, cl.qualifiedName(), false/*static*/, false/*final*/, dep,
252 method = new MethodInfo(""/*rawCommentText*/, new ArrayList<TypeInfo>()/*typeParameters*/,
260 method.setDeprecated(dep);
262 parseParameterList(tokenizer, method, token);
265 token = parseThrows(tokenizer, method);
270 cl.addConstructor(method);
286 MethodInfo method; local
    [all...]

Completed in 215 milliseconds

<<11121314151617181920>>