HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 876 - 900 of 7000) sorted by null

<<31323334353637383940>>

  /dalvik/dx/tests/111-use-null-as-array/
run 19 --dump-to=- --dump-method="Blort.test*" Blort.class
24 --dump-to=- --dump-method="multidimensional.*" multidimensional.class
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BitSet.pm 95 sub or : method { ## no critic (Subroutines::ProhibitBuiltinHomonyms)
107 sub add : method {
118 sub grow_to_include : method {
128 sub or_in_place : method {
143 sub clone : method {
149 sub size : method {
155 sub equals : method {
161 sub member : method {
167 sub remove : method {
177 sub is_nil : method {
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
via-parser.rb 17 : method+
20 method
21 : m='method' ID '(' ')' body
64 method foo() {
70 method bar() {
  /external/autotest/client/cros/cellular/pseudomodem/
testing.py 31 @dbus.service.method(pm_constants.I_TESTING, out_signature='b')
34 A heartbeat method.
36 This method can be called by clients to check that pseudomodem is alive.
49 @dbus.service.method(pm_constants.I_TESTING, in_signature='ss')
62 @dbus.service.method(pm_constants.I_TESTING, in_signature='s')
67 SIM), this method will do nothing.
76 @dbus.service.method(pm_constants.I_TESTING, in_signature='uu')
83 locked or absent SIM), this method will do nothing.
  /external/autotest/client/tools/
cd_hash.py 42 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/src/crypto/x509v3/
v3_ia5.c 70 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5);
71 static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str);
84 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method,
98 static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method,
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/chromeos_login_ext/
main.js 8 'method': 'loginUILoaded'
13 'method': 'completeLogin',
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/staticprovides/
StaticProvidesTest.java 20 import java.lang.reflect.Method;
63 for (Method method : DaggerStaticTestComponent.Builder.class.getDeclaredMethods()) {
64 if (Arrays.asList(method.getParameterTypes()).contains(AllStaticModule.class)) {
65 assertWithMessage(method.getName())
66 .that(method.isAnnotationPresent(Deprecated.class))
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BuilderValidator.java 110 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, msgs.methodsMustTakeOneArg(), msgs.inheritedMethodsMustTakeOneArg())
141 method); local
195 builder.addError(String.format(enclosedError, extraArgs), method); local
    [all...]
  /external/easymock/src/org/easymock/internal/
ILegacyMatcherMethods.java 18 import java.lang.reflect.Method;
26 void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher);
  /external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
DateFormatTest.java 41 String method[] = new String[1]; local
42 DateFormat df = getJDKInstance(dstyle, tstyle, loc, method);
48 errln("FAIL: " + method[0] + " returned JDK DateFormat for locale " + loc);
52 logln("INFO: " + method[0] + " returned ICU DateFormat for locale " + loc);
58 errln("FAIL: " + method[0] + " returned ICU DateFormat for locale " + loc
63 errln("FAIL: " + method[0] + " returned JDK DateFormat for locale " + iculoc);
71 String method; local
74 method = "getTimeInstance";
77 method = "getDateInstance";
80 method = "getDateTimeInstance"
90 String method; local
    [all...]
  /external/junit/src/org/junit/rules/
MethodRule.java 8 * A MethodRule is an alteration in how a test method is run and reported.
9 * Multiple {@link MethodRule}s can be applied to a test method. The
10 * {@link Statement} that executes the method is passed to each annotated
17 * <li>{@link ErrorCollector}: collect multiple errors in one test method</li>
21 * <li>{@link TestName}: remember the test name for use during the method</li>
22 * <li>{@link TestWatchman}: add logic at events during method execution</li>
30 * Modifies the method-running {@link Statement} to implement an additional
34 * @param method The method to be run
35 * @param target The object on with the method will be run
    [all...]
  /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/parsing/
JniHeaderCMethodParser.java 30 CMethod method = parseCMethod(headerFile, index); local
31 if (method == null) throw new RuntimeException("Couldn't parse method");
32 methods.add(method);
33 index = headerFile.indexOf(C_METHOD_MARKER, method.endIndex);
  /external/libmicrohttpd/src/examples/
mhd2spdy_http.h 34 const char *method,
refuse_post_example.c 29 <form action=\"/filepost\" method=\"post\" enctype=\"multipart/form-data\">\n\
40 const char *method,
49 if ((0 != strcmp (method, "GET")) && (0 != strcmp (method, "POST")))
50 return MHD_NO; /* unexpected method */
57 if (0 == strcmp (method, "POST"))
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
CallbackFilter.java 18 import java.lang.reflect.Method;
23 * callback. The type of the callbacks chosen for each method affects
24 * the bytecode generated for that method in the subclass, and cannot
29 * Map a method to a callback.
31 * @param method the intercepted method
33 * @return the index into the array of callbacks (as specified by {@link Enhancer#setCallbacks}) to use for the method,
35 int accept(Method method, List<Method> allMethods)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SipRequestLine.java 20 * Get the Method
22 * @return method string.
41 * Set the method member
43 * @param method String to set
45 public abstract void setMethod(String method);
  /external/opencv3/modules/imgproc/src/
_geom.h 56 CvSeq* icvApproximateChainTC89( CvChain* chain, int header_size, CvMemStorage* storage, int method );
  /external/opencv3/samples/cpp/
mask_tmpl.cpp 52 //int method = CV_TM_SQDIFF;
53 int method = CV_TM_CCORR_NORMED; local
54 matchTemplate(img, tmpl, res, method, mask);
61 if(method == CV_TM_SQDIFF || method == CV_TM_SQDIFF_NORMED)
  /external/ppp/pppd/
ccp.h 43 short method; /* code for chosen compression method */ member in struct:ccp_options
  /external/proguard/src/proguard/classfile/attribute/
Attribute.java 79 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
94 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
99 * Accepts the given visitor in the context of the given method.
101 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
103 // Delegate to the default invocation if the method is null anyway.
104 if (method == null)
110 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
117 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor
    [all...]
LineNumberTableAttribute.java 132 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
134 attributeVisitor.visitLineNumberTableAttribute(clazz, method, codeAttribute, this);
141 public void lineNumbersAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfoVisitor lineNumberInfoVisitor)
147 lineNumberInfoVisitor.visitLineNumberInfo(clazz, method, codeAttribute, lineNumberTable[index]);
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationsAttribute.java 89 * Applies the given visitor to all method annotations.
91 public void annotationsAccept(Clazz clazz, Method method, AnnotationVisitor annotationVisitor)
97 annotationVisitor.visitAnnotation(clazz, method, annotations[index]);
105 public void annotationsAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, AnnotationVisitor annotationVisitor)
111 annotationVisitor.visitAnnotation(clazz, method, codeAttribute, annotations[index]);
  /external/proguard/src/proguard/classfile/attribute/annotation/target/
LocalVariableTargetInfo.java 73 public void targetElementsAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, LocalVariableTargetElementVisitor localVariableTargetElementVisitor)
79 localVariableTargetElementVisitor.visitLocalVariableTargetElement(clazz, method, codeAttribute, typeAnnotation, this, table[index]);
87 * Lets the visitor visit, with Method and CodeAttribute null.
95 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TargetInfoVisitor targetInfoVisitor)
97 targetInfoVisitor.visitLocalVariableTargetInfo(clazz, method, codeAttribute, typeAnnotation, this);
  /external/proguard/src/proguard/classfile/attribute/preverification/
SameOneFrame.java 67 public void stackItemAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationTypeVisitor verificationTypeVisitor)
69 stackItem.accept(clazz, method, codeAttribute, offset, verificationTypeVisitor);
83 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor)
85 stackMapFrameVisitor.visitSameOneFrame(clazz, method, codeAttribute, offset, this);

Completed in 1776 milliseconds

<<31323334353637383940>>