Searched refs:method (Results 76 - 100 of 1813) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddebugger_tracker.cc19 const std::string& method,
21 if (method == "Debugger.paused") {
18 OnEvent(DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument
/external/chromium_org/third_party/WebKit/ManualTests/resources/
H A DTestApplet.class ... _r1/s?defs= " () public void init () public int method () static void " href="/5.1.0_r1/s? ...
/external/clang/test/Index/
H A Dcomplete-type-factors.m26 + (void)method:(enum Color)color priority:(enum Priority)priority;
27 - (void)method:(enum Color)color priority:(enum Priority)priority;
31 [a method:Red priority:High];
32 [A method:Red priority:Low];
/external/clang/test/Profile/
H A Dcxx-class.cpp48 void method() { function in class:Simple
67 S.method();
/external/clang/test/Sema/
H A Dms_wide_predefined_expr.cpp17 void method() { function in class:PR13206::A
24 x.method();
/external/guava/guava/src/com/google/common/eventbus/
H A DSynchronizedEventHandler.java23 * Wraps a single-argument 'handler' method on a specific object, and ensures
24 * that only one thread may enter the method at a time.
33 * Creates a new SynchronizedEventHandler to wrap {@code method} on
36 * @param target object to which the method applies.
37 * @param method handler method.
39 public SynchronizedEventHandler(Object target, Method method) { argument
40 super(target, method);
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthAccessor.java65 * @param method
66 * the HTTP request method. If this is null, use the default
67 * method; that is getProperty("httpMethod") or (if that's null)
71 public OAuthMessage newRequestMessage(String method, String url, argument
74 if (method == null) {
75 method = (String) this.getProperty("httpMethod");
76 if (method == null) {
77 method = (String) this.consumer.getProperty("httpMethod");
78 if (method == null) {
79 method
[all...]
/external/proguard/src/proguard/obfuscate/
H A DParameterNameMarker.java58 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) argument
61 hasParameters(clazz, method))
84 attributeUsageMarker.visitLocalVariableTableAttribute(clazz, method, codeAttribute, localVariableTableAttribute);
90 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute) argument
93 hasParameters(clazz, method))
116 attributeUsageMarker.visitLocalVariableTypeTableAttribute(clazz, method, codeAttribute, localVariableTypeTableAttribute);
124 private boolean hasParameters(Clazz clazz, Method method) argument
126 return method.getDescriptor(clazz).charAt(1) != ClassConstants.INTERNAL_METHOD_ARGUMENTS_CLOSE;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLinkMovementMethod.java3 import android.text.method.LinkMovementMethod;
4 import android.text.method.MovementMethod;
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dgenerator.py14 def GetStructFromMethod(method):
15 """Converts a method's parameters into the fields of a struct."""
16 params_class = "%s_%s_Params" % (method.interface.name, method.name)
17 struct = mojom.Struct(params_class, module=method.interface.module)
18 for param in method.parameters:
23 def GetResponseStructFromMethod(method):
24 """Converts a method's response_parameters into the fields of a struct."""
25 params_class = "%s_%s_ResponseParams" % (method.interface.name, method
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DVariableRemapper.java66 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
70 System.out.println("VariableRemapper: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
79 codeAttribute.attributesAccept(clazz, method, this);
85 codeAttribute.instructionsAccept(clazz, method, this);
88 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
92 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) argument
95 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
99 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute) argument
102 localVariableTypeTableAttribute.localVariablesAccept(clazz, method, codeAttribut
108 visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo) argument
117 visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo) argument
126 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
129 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_service.cc128 const MethodDescriptor* method = descriptor_->method(i); local
130 GenerateMethodSignature(printer, method, IS_CONCRETE);
133 " impl.$method$(controller, request, done);\n"
135 "method", UnderscoresToCamelCase(method));
167 const MethodDescriptor* method = descriptor_->method(i); local
168 WriteMethodDocComment(printer, method);
169 GenerateMethodSignature(printer, method, IS_ABSTRAC
193 const MethodDescriptor* method = descriptor_->method(i); local
238 const MethodDescriptor* method = descriptor_->method(i); local
283 const MethodDescriptor* method = descriptor_->method(i); local
330 const MethodDescriptor* method = descriptor_->method(i); local
373 const MethodDescriptor* method = descriptor_->method(i); local
395 const MethodDescriptor* method = descriptor_->method(i); local
420 GenerateMethodSignature(io::Printer* printer, const MethodDescriptor* method, IsAbstract is_abstract) argument
435 GenerateBlockingMethodSignature( io::Printer* printer, const MethodDescriptor* method) argument
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
H A Dskip.py46 def _skipped_method(method, message, logger):
48 if method.im_class._printed_skipped_message:
50 method.im_class._printed_skipped_message = True
51 logger.info('Skipping %s.%s: %s' % (method.__module__, method.im_class.__name__, message))
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
H A DStackMapFrameVisitor.java35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame); argument
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame); argument
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame); argument
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame); argument
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame); argument
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_service.cc120 const MethodDescriptor* method = descriptor_->method(i); local
122 GenerateMethodSignature(printer, method, IS_CONCRETE);
125 " impl.$method$(controller, request, done);\n"
127 "method", UnderscoresToCamelCase(method));
159 const MethodDescriptor* method = descriptor_->method(i); local
160 GenerateMethodSignature(printer, method, IS_ABSTRACT);
169 " com.google.protobuf.Descriptors.MethodDescriptor method,\
184 const MethodDescriptor* method = descriptor_->method(i); local
229 const MethodDescriptor* method = descriptor_->method(i); local
274 const MethodDescriptor* method = descriptor_->method(i); local
321 const MethodDescriptor* method = descriptor_->method(i); local
364 const MethodDescriptor* method = descriptor_->method(i); local
386 const MethodDescriptor* method = descriptor_->method(i); local
411 GenerateMethodSignature(io::Printer* printer, const MethodDescriptor* method, IsAbstract is_abstract) argument
426 GenerateBlockingMethodSignature( io::Printer* printer, const MethodDescriptor* method) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DNonEmptyAttributeFilter.java109 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) argument
111 deprecatedAttribute.accept(clazz, method, attributeVisitor);
127 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) argument
129 syntheticAttribute.accept(clazz, method, attributeVisitor);
145 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute) argument
147 signatureAttribute.accept(clazz, method, attributeVisitor);
157 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute) argument
161 exceptionsAttribute.accept(clazz, method, attributeVisitor);
166 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
168 codeAttribute.accept(clazz, method, attributeVisito
172 visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
181 visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
190 visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute) argument
199 visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) argument
208 visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute) argument
235 visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute) argument
262 visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute) argument
271 visitRuntimeVisibleParameterAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleParameterAnnotationsAttribute runtimeVisibleParameterAnnotationsAttribute) argument
280 visitRuntimeInvisibleParameterAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleParameterAnnotationsAttribute runtimeInvisibleParameterAnnotationsAttribute) argument
289 visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute annotationDefaultAttribute) argument
[all...]
H A DRequiredAttributeFilter.java148 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) argument
152 deprecatedAttribute.accept(clazz, method, optionalAttributeVisitor);
175 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) argument
179 syntheticAttribute.accept(clazz, method, optionalAttributeVisitor);
202 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute) argument
206 signatureAttribute.accept(clazz, method, optionalAttributeVisitor);
220 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute) argument
224 exceptionsAttribute.accept(clazz, method, optionalAttributeVisitor);
229 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
233 codeAttribute.accept(clazz, method, requiredAttributeVisito
238 visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
247 visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
256 visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute) argument
265 visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) argument
274 visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute) argument
301 visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute) argument
328 visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute) argument
337 visitRuntimeVisibleParameterAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleParameterAnnotationsAttribute runtimeVisibleParameterAnnotationsAttribute) argument
346 visitRuntimeInvisibleParameterAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleParameterAnnotationsAttribute runtimeInvisibleParameterAnnotationsAttribute) argument
355 visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute annotationDefaultAttribute) argument
[all...]
/external/proguard/src/proguard/optimize/info/
H A DParameterUsageMarker.java107 // Is it a native method?
114 // Is it an abstract method?
121 // Is it a non-native, concrete method?
124 // Is the method not static, but synchronized, or can it have
158 // Can the method have other implementations?
161 // All implementations must keep all parameters of this method,
173 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
176 partialEvaluator.visitCodeAttribute(clazz, method, codeAttribute);
179 codeAttribute.instructionsAccept(clazz, method, this);
185 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribut argument
188 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
220 setParameterSize(Method method, int parameterSize) argument
233 getParameterSize(Method method) argument
243 markParameterUsed(Method method, int variableIndex) argument
256 markUsedParameters(Method method, long usedParameters) argument
269 isParameterUsed(Method method, int variableIndex) argument
280 getUsedParameters(Method method) argument
[all...]
H A DSuperInvocationMarker.java47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
60 setInvokesSuperMethods(method);
78 private static void setInvokesSuperMethods(Method method) argument
80 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
88 public static boolean invokesSuperMethods(Method method) argument
90 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
/external/proguard/src/proguard/optimize/peephole/
H A DReachableCodeMarker.java84 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
100 markCode(clazz, method, codeAttribute, 0);
107 codeAttribute.exceptionsAccept(clazz, method, this);
115 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
131 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
136 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
145 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
149 method,
162 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction) argument
166 method,
183 visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
202 markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int[] jumpOffsets) argument
214 markBranchTarget(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset) argument
227 markCode(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_prn.c100 const X509V3_EXT_METHOD *method; local
104 if(!(method = X509V3_EXT_get(ext)))
107 if(method->it) ext_str = ASN1_item_d2i(NULL, &p, ext->value->length, ASN1_ITEM_ptr(method->it));
108 else ext_str = method->d2i(NULL, &p, ext->value->length);
112 if(method->i2s) {
113 if(!(value = method->i2s(method, ext_str))) {
118 } else if(method->i2v) {
119 if(!(nval = method
[all...]
/external/junit/src/org/junit/internal/runners/
H A DJUnit4ClassRunner.java60 for (Method method : fTestMethods)
61 invokeTestMethod(method, notifier);
68 for (Method method : testMethods)
69 spec.addChild(methodDescription(method));
85 protected void invokeTestMethod(Method method, RunNotifier notifier) { argument
86 Description description= methodDescription(method);
97 TestMethod testMethod= wrapMethod(method);
108 protected TestMethod wrapMethod(Method method) { argument
109 return new TestMethod(method, fTestClass);
112 protected String testName(Method method) { argument
116 methodDescription(Method method) argument
120 testAnnotations(Method method) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCSeq.java59 * method field
61 protected String method; field in class:CSeq
71 * Constructor given the sequence number and method.
74 * @param method is the method string.
76 public CSeq(long seqno, String method) { argument
79 this.method = SIPRequest.getCannonicalName(method);
116 return buffer.append(seqno).append(SP).append(method.toUpperCase());
120 * Get the method
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DInvocationHandlerGenerator.java39 MethodInfo method = (MethodInfo)it.next();
40 Signature impl = context.getImplSignature(method);
43 CodeEmitter e = context.beginMethod(ce, method);
45 context.emitCallback(e, context.getIndex(method));
50 e.unbox(method.getSignature().getReturnType());
53 EmitUtils.wrap_undeclared_throwable(e, handler, method.getExceptionTypes(), UNDECLARED_THROWABLE_EXCEPTION);
60 MethodInfo method = (MethodInfo)it.next();
61 EmitUtils.load_method(e, method);
62 e.putfield(context.getImplSignature(method).getName());
/external/proguard/src/proguard/optimize/
H A DParameterShrinker.java77 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
80 int oldParameterSize = ParameterUsageMarker.getParameterSize(method);
84 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
85 method.getAccessFlags());
94 System.out.println("ParameterShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
109 if (ParameterUsageMarker.isParameterUsed(method, parameterIndex))
125 // Visit the method, if required.
128 method.accept(clazz, extraVariableMemberVisitor);
143 variableRemapper.visitCodeAttribute(clazz, method, codeAttribut
[all...]

Completed in 3556 milliseconds

1234567891011>>