HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 476 - 500 of 8284) sorted by null

<<11121314151617181920>>

  /external/apache-http/src/org/apache/http/message/
BasicHttpEntityEnclosingRequest.java 60 public BasicHttpEntityEnclosingRequest(final String method, final String uri) {
61 super(method, uri);
64 public BasicHttpEntityEnclosingRequest(final String method, final String uri,
66 this(new BasicRequestLine(method, uri, ver));
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
MacrobenchmarkAllocationWorker.java 24 import java.lang.reflect.Method;
29 * The {@link Worker} for the {@code AllocationInstrument}. This class invokes the benchmark method
37 @BenchmarkMethod Method method, AllocationRecorder recorder) {
38 super(benchmark, method);
51 private AllocationStats measureAllocations(Object benchmark, Method method) throws Exception {
53 method.invoke(benchmark);
  /external/curl/src/
tool_helpers.c 86 warnf(config->global, "You can only select one HTTP request method! "
94 char *method)
105 if(!method)
107 else if(curl_strequal(method, dflt[req])) {
111 else if(curl_strequal(method, "head")) {
113 "Setting custom HTTP method to HEAD with -X/--request may not work "
tool_helpers.h 32 char *method);
  /external/guava/guava-tests/test/com/google/common/reflect/
ParameterTest.java 24 import java.lang.reflect.Method;
34 for (Method method : ParameterTest.class.getDeclaredMethods()) {
35 for (Parameter param : Invokable.from(method).getParameters()) {
43 for (Method method : ParameterTest.class.getDeclaredMethods()) {
44 for (Parameter param : Invokable.from(method).getParameters()) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
LocaleBuilderTest.java 119 String method = TESTCASE[tidx][i++]; local
122 if (method.equals("L")) {
124 } else if (method.equals("S")) {
126 } else if (method.equals("R")) {
128 } else if (method.equals("V")) {
130 } else if (method.equals("K")) {
134 } else if (method.equals("A")) {
136 } else if (method.equals("E")) {
140 } else if (method.equals("P")) {
142 } else if (method.equals("U"))
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
LocaleBuilderTest.java 118 String method = TESTCASE[tidx][i++]; local
121 if (method.equals("L")) {
123 } else if (method.equals("S")) {
125 } else if (method.equals("R")) {
127 } else if (method.equals("V")) {
129 } else if (method.equals("K")) {
133 } else if (method.equals("A")) {
135 } else if (method.equals("E")) {
139 } else if (method.equals("P")) {
141 } else if (method.equals("U"))
    [all...]
  /external/junit-params/src/main/java/junitparams/
Parameters.java 7 * THE annotation for the test parameters. Use it to say that a method takes
17 * The values must match the method parameters in order and type.
18 * Whitespace characters are trimmed (use source class or method if You need to provide such parameters)
28 * least one public static method starting with <code>provide</code>
38 * Parameter values returned by a method within the test class. This way you
40 * format of the data returned by the method is the same as for the source
42 * Example: <code>@Parameters(method = "examplaryPeople")</code>
45 * Example: <code>@Parameters(method = "womenParams, menParams")</code>
47 String method() default "";
  /external/libchrome/dbus/
dbus_statistics.h 24 SHOW_METHOD = 2, // Service + interface + method totals
43 const std::string& method);
46 const std::string& method);
51 const std::string& method);
54 // of detail to show: one line per service, per interface, or per method.
67 // service+interface+method. Used in unittests.
70 const std::string& method,
  /external/libmojo/base/android/
jni_registrar.h 18 // Registers the JNI bindings for the specified |method| definition containing
22 const RegistrationMethod* method,
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
generator.py 53 for method in interface.methods:
54 result.append(self._GetStructFromMethod(method))
55 if method.response_parameters != None:
56 result.append(self._GetResponseStructFromMethod(method))
81 raise NotImplementedError("Subclasses must override/implement this method")
115 for method in interface.methods:
116 if method.min_version is not None:
117 interface.version = max(interface.version, method.min_version)
119 method.param_struct = self._GetStructFromMethod(method)
    [all...]
  /external/nist-sip/java/javax/sip/header/
AllowHeader.java 9 void setMethod(String method) throws ParseException;
  /external/proguard/src/proguard/classfile/attribute/
CodeAttribute.java 99 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
101 attributeVisitor.visitCodeAttribute(clazz, method, this);
108 public void instructionsAccept(Clazz clazz, Method method, InstructionVisitor instructionVisitor)
110 instructionsAccept(clazz, method, 0, u4codeLength, instructionVisitor);
118 public void instructionAccept(Clazz clazz, Method method, int offset, InstructionVisitor instructionVisitor)
121 instruction.accept(clazz, method, this, offset, instructionVisitor);
129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor
    [all...]
LocalVariableTableAttribute.java 61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
63 attributeVisitor.visitLocalVariableTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfoVisitor localVariableInfoVisitor)
76 localVariableInfoVisitor.visitLocalVariableInfo(clazz, method, codeAttribute, localVariableTable[index]);
LocalVariableTypeTableAttribute.java 61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
63 attributeVisitor.visitLocalVariableTypeTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfoVisitor localVariableTypeInfoVisitor)
76 localVariableTypeInfoVisitor.visitLocalVariableTypeInfo(clazz, method, codeAttribute, localVariableTypeTable[index]);
  /external/proguard/src/proguard/classfile/attribute/annotation/
RuntimeInvisibleTypeAnnotationsAttribute.java 67 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
69 attributeVisitor.visitRuntimeInvisibleTypeAnnotationsAttribute(clazz, method, this);
73 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
75 attributeVisitor.visitRuntimeInvisibleTypeAnnotationsAttribute(clazz, method, codeAttribute, this);
RuntimeVisibleTypeAnnotationsAttribute.java 67 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
69 attributeVisitor.visitRuntimeVisibleTypeAnnotationsAttribute(clazz, method, this);
73 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
75 attributeVisitor.visitRuntimeVisibleTypeAnnotationsAttribute(clazz, method, codeAttribute, this);
  /external/proguard/src/proguard/classfile/attribute/preverification/
StackMapAttribute.java 71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
73 attributeVisitor.visitStackMapAttribute(clazz, method, codeAttribute, this);
80 public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor)
88 stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame);
  /external/proguard/src/proguard/classfile/attribute/visitor/
ExceptionInfoVisitor.java 36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo);
LineNumberInfoVisitor.java 37 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo);
LocalVariableInfoVisitor.java 37 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo);
LocalVariableTypeInfoVisitor.java 37 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo);
ParameterInfoVisitor.java 27 * This interface specifies the method for a visitor of
36 public void visitParameterInfo(Clazz clazz, Method method, int parameterIndex, ParameterInfo parameterInfo);
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/java/core/src/main/java/com/google/protobuf/
BlockingRpcChannel.java 42 * Call the given method of the remote service and blocks until it returns.
47 Descriptors.MethodDescriptor method,

Completed in 1099 milliseconds

<<11121314151617181920>>