Searched defs:method (Results 51 - 75 of 1189) sorted by relevance

1234567891011>>

/external/testng/src/test/java/test/methodselectors/
H A DTest2MethodSelector.java18 ITestNGMethod method, boolean isTestMethod)
20 for (String group : method.getGroups()) {
32 // TODO Auto-generated method stub
17 includeMethod(IMethodSelectorContext context, ITestNGMethod method, boolean isTestMethod) argument
/external/testng/src/test/java/test/thread/
H A DBaseSequentialSample.java7 protected void addId(String method, long id) { argument
8 ppp(method + " ID:" + id);
/external/vogar/test/vogar/android/
H A DVogarArgsRule.java36 public Statement apply(Statement base, FrameworkMethod method, Object target) { argument
37 VogarArgs vogarArgs = method.getAnnotation(VogarArgs.class);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DBreakpoint.java49 * @param method Method in which breakpoint is created
50 * @param location Location within the method
52 public Breakpoint(String clazz, String method, int location) { argument
54 methodName = method;
/external/apache-http/src/org/apache/http/impl/
H A DDefaultHttpRequestFactory.java78 private static boolean isOneOf(final String[] methods, final String method) { argument
80 if (methods[i].equalsIgnoreCase(method)) {
92 String method = requestline.getMethod();
93 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
95 } else if (isOneOf(RFC2616_ENTITY_ENC_METHODS, method)) {
97 } else if (isOneOf(RFC2616_SPECIAL_METHODS, method)) {
100 throw new MethodNotSupportedException(method + " method not supported");
104 public HttpRequest newHttpRequest(final String method, final String uri) argument
106 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHttpEntityEnclosingRequest.java60 public BasicHttpEntityEnclosingRequest(final String method, final String uri) { argument
61 super(method, uri);
64 public BasicHttpEntityEnclosingRequest(final String method, final String uri, argument
66 this(new BasicRequestLine(method, uri, ver));
H A DBasicHttpRequest.java56 private final String method; field in class:BasicHttpRequest
59 public BasicHttpRequest(final String method, final String uri) { argument
61 if (method == null) {
67 this.method = method;
72 public BasicHttpRequest(final String method, final String uri, final ProtocolVersion ver) { argument
73 this(new BasicRequestLine(method, uri, ver));
82 this.method = requestline.getMethod();
99 return new BasicRequestLine(this.method, this.uri, ver);
H A DBasicRequestLine.java39 * It contains the method, URI, and HTTP version of the request.
58 private final String method; field in class:BasicRequestLine
61 public BasicRequestLine(final String method, argument
65 if (method == null) {
77 this.method = method;
83 return this.method;
/external/autotest/client/tools/
H A Dcd_hash.py42 method="md5")) variable
44 method="sha1")) variable
45 logging.info("md5 (full): %s", utils.hash_file(filename, method="md5"))
47 method="sha1")) variable
/external/boringssl/
H A Dandroid_compat_hacks.c68 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *method) { argument
/external/boringssl/src/crypto/x509v3/
H A Dv3_bitst.c96 STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
100 for(bnam =method->usr_data; bnam->lname; bnam++) {
107 ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method, argument
120 for(bnam = method->usr_data; bnam->lname; bnam++) {
H A Dv3_skey.c67 static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str);
76 char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, argument
82 ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, argument
104 static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, argument
112 if(strcmp(str, "hash")) return s2i_ASN1_OCTET_STRING(method, ctx, str);
/external/boringssl/src/ssl/
H A Dd1_meth.c81 static const SSL_METHOD method = { local
85 return &method;
91 static const SSL_METHOD method = { local
95 return &method;
99 static const SSL_METHOD method = { local
103 return &method;
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DMacrobenchmarkAllocationWorker.java29 * 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 { argument
53 method.invoke(benchmark);
36 MacrobenchmarkAllocationWorker(@enchmark Object benchmark, @BenchmarkMethod Method method, AllocationRecorder recorder) argument
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-0x.cpp33 struct method { struct in namespace:rdar12176336
36 method(vararg_func implementation) : implementation(implementation) {} function in struct:rdar12176336::method
46 method m(nullptr);
/external/clang/test/CodeGen/
H A Dfp-contract-pragma.cpp39 float method(float a, float b, float c) { function in class:fp_contract_4
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DBuilderValidator.java110 for (ExecutableElement method : Util.getUnimplementedMethods(elements, subject)) {
112 MoreTypes.asExecutable(types.asMemberOf(MoreTypes.asDeclared(subject.asType()), method));
114 if (method.getParameters().size() == 0) {
115 // If this is potentially a build() method, validate it returns the correct type.
118 // If we found more than one build-like method, fail.
119 error(builder, method, msgs.twoBuildMethods(), msgs.inheritedTwoBuildMethods(),
123 error(builder, method, msgs.buildMustReturnComponentType(),
127 buildMethod = method;
128 } else if (method.getParameters().size() > 1) {
130 error(builder, method, msg
188 error( ValidationReport.Builder<TypeElement> builder, ExecutableElement method, String enclosedError, String inheritedError, Object... extraArgs) argument
[all...]
H A DMethodSignatureFormatter.java49 @Override public String format(ExecutableElement method) { argument
50 return format(method, Optional.<DeclaredType>absent());
57 public String format(ExecutableElement method, Optional<DeclaredType> container) { argument
59 TypeElement type = MoreElements.asType(method.getEnclosingElement());
60 ExecutableType executableType = MoreTypes.asExecutable(method.asType());
62 executableType = MoreTypes.asExecutable(types.asMemberOf(container.get(), method));
67 List<? extends AnnotationMirror> annotations = method.getAnnotationMirrors();
82 builder.append(method.getSimpleName());
84 checkState(method.getParameters().size() == executableType.getParameterTypes().size());
85 Iterator<? extends VariableElement> parameters = method
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DBlockAddresses.java27 * the blocks of a particular method. Each block has a corresponding
47 * @param method {@code non-null;} the method to have block addresses for
49 public BlockAddresses(RopMethod method) { argument
50 BasicBlockList blocks = method.getBlocks();
57 setupArrays(method);
126 private void setupArrays(RopMethod method) { argument
127 BasicBlockList blocks = method.getBlocks();
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMethodIdItem.java22 * Representation of a method reference inside a Dalvik file.
28 * @param method {@code non-null;} the constant for the method
30 public MethodIdItem(CstBaseMethodRef method) { argument
31 super(method);
50 * Gets the method constant.
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableExtractor.java24 * a method.
27 /** {@code non-null;} method being extracted from */
28 private final RopMethod method; field in class:LocalVariableExtractor
30 /** {@code non-null;} block list for the method */
40 * Extracts out all the local variable information from the given method.
42 * @param method {@code non-null;} the method to extract from
45 public static LocalVariableInfo extract(RopMethod method) { argument
46 LocalVariableExtractor lve = new LocalVariableExtractor(method);
51 * Constructs an instance. This method i
55 LocalVariableExtractor(RopMethod method) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableExtractor.java29 * a method. Stolen and retrofitted from
36 /** {@code non-null;} method being extracted from */
37 private final SsaMethod method; field in class:LocalVariableExtractor
39 /** {@code non-null;} block list for the method */
49 * Extracts out all the local variable information from the given method.
51 * @param method {@code non-null;} the method to extract from
54 public static LocalVariableInfo extract(SsaMethod method) { argument
55 LocalVariableExtractor lve = new LocalVariableExtractor(method);
60 * Constructs an instance. This method i
64 LocalVariableExtractor(SsaMethod method) argument
[all...]
/external/droiddriver/src/io/appium/droiddriver/util/
H A DLogs.java28 public static void call(Object self, String method, Object... args) { argument
29 call(Log.DEBUG, self, method, args);
32 public static void call(int priority, Object self, String method, Object... args) { argument
36 String.format("Invoking %s.%s(%s)", self.getClass().getSimpleName(), method,
/external/easymock/src/org/easymock/internal/
H A DLegacyMatcherProvider.java38 public ArgumentsMatcher getMatcher(Method method) { argument
39 if (!matchers.containsKey(method)) {
43 matchers.put(method, defaultMatcher);
45 return matchers.get(method);
58 public void setMatcher(Method method, ArgumentsMatcher matcher) { argument
59 if (matchers.containsKey(method) && matchers.get(method) != matcher) {
61 "for method "
62 + method.getName()
64 + (method
[all...]
H A DMockInvocationHandler.java32 public Object invoke(Object proxy, Method method, Object[] args) argument
39 new Invocation(proxy, method, args));

Completed in 742 milliseconds

1234567891011>>