HomeSort by relevance Sort by last modified time
    Searched refs:methods (Results 26 - 50 of 540) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tools/signature-tools/src/signature/compare/model/subst/
ClassProjection.java 101 Set<IMethod> methods = null; field in class:ClassProjection
104 if (methods == null) {
107 methods = Collections.emptySet();
109 methods = new HashSet<IMethod>();
111 methods.add(new MethodProjection(m, substitutions));
113 methods = Collections.unmodifiableSet(methods);
116 return methods;
  /cts/tools/signature-tools/test/signature/converter/
ConvertVisibilityTest.java 52 Set<IMethod> methods = c.getMethods(); local
53 assertEquals(1, methods.size());
70 Set<IMethod> methods = c.getMethods(); local
71 assertEquals(2, methods.size());
88 Set<IMethod> methods = c.getMethods(); local
89 assertEquals(3, methods.size());
106 Set<IMethod> methods = c.getMethods(); local
107 assertEquals(4, methods.size());
  /external/nist-sip/java/gov/nist/javax/sip/header/
AllowEventsList.java 66 * Gets an Iterator of all the methods of the AllowEventsHeader. Returns an empty
68 * Iterator if no methods are defined in this AllowEvents Header.
72 * @return Iterator of String objects each identifing the methods of
89 * Sets the methods supported defined by this AllowEventsHeader.
93 * @param methods - the Iterator of Strings defining the methods supported
99 * unexpectedly while parsing the Strings defining the methods supported.
103 public void setMethods(List<String> methods) throws ParseException {
104 ListIterator<String> it = methods.listIterator();
AllowList.java 66 * Gets an Iterator of all the methods of the AllowHeader. Returns an empty
68 * Iterator if no methods are defined in this Allow Header.
72 * @return Iterator of String objects each identifing the methods of
91 * Sets the methods supported defined by this AllowHeader.
95 * @param methods - the Iterator of Strings defining the methods supported
101 * unexpectedly while parsing the Strings defining the methods supported.
105 public void setMethods(List<String> methods) throws ParseException {
106 ListIterator<String> it = methods.listIterator();
  /external/proguard/examples/
midlets.pro 19 # Allow methods with the same signature, except for the return type,
48 native <methods>;
  /packages/inputmethods/LatinIME/native/jni/
jni_common.cpp 64 int registerNativeMethods(JNIEnv* env, const char* className, JNINativeMethod* methods,
71 if (env->RegisterNatives(clazz, methods, numMethods) < 0) {
  /prebuilts/tools/common/proguard/proguard4.7/examples/
midlets.pro 19 # Allow methods with the same signature, except for the return type,
59 native <methods>;
  /external/emma/core/java12/com/vladium/jcd/cls/
IClassDefVisitor.java 24 Object visit (IMethodCollection methods, Object ctx);
  /external/junit/src/org/junit/internal/runners/
MethodValidator.java 37 List<Method> methods= fTestClass.getAnnotatedMethods(Test.class); local
38 if (methods.size() == 0)
39 fErrors.add(new Exception("No runnable methods"));
69 List<Method> methods= fTestClass.getAnnotatedMethods(annotation); local
71 for (Method each : methods) {
  /external/quake/quake/src/QW/client/
main.cpp 61 static JNINativeMethod methods[] = { variable
69 * Register several native methods for one class.
91 * Register native methods for all classes we know about.
96 methods, sizeof(methods) / sizeof(methods[0]))) {
  /external/webkit/Source/WebCore/bridge/jni/v8/
JavaClassJobjectV8.cpp 57 // Get the methods
58 jarray methods = static_cast<jarray>(callJNIMethod<jobject>(aClass, "getMethods", "()[Ljava/lang/reflect/Method;")); local
59 int numMethods = env->GetArrayLength(methods);
61 jobject aJMethod = env->GetObjectArrayElement(static_cast<jobjectArray>(methods), i);
72 env->DeleteLocalRef(methods);
  /external/apache-http/src/org/apache/http/impl/
DefaultHttpRequestFactory.java 73 private static boolean isOneOf(final String[] methods, final String method) {
74 for (int i = 0; i < methods.length; i++) {
75 if (methods[i].equalsIgnoreCase(method)) {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidClassTest.java 141 Method[] methods = ArrayList.class.getMethods(); local
144 for (Method method : methods) {
173 // Check if we also reflect methods from interfaces
175 Method[] methods = MyInterface.class.getMethods(); local
176 assertTrue(hasMethod(methods, ".foo("));
178 methods = MyOtherInterface.class.getMethods();
179 assertTrue(hasMethod(methods, ".foo("));
180 assertTrue(hasMethod(methods, ".bar("));
182 methods = MyClass.class.getMethods();
183 assertTrue(hasMethod(methods, ".foo("))
    [all...]
MethodOverridesTest.java 98 Method[] methods = Sub.class.getMethods(); local
100 for (Method method : methods) {
115 Method[] methods = PublicSub.class.getMethods(); local
117 for (Method method : methods) {
166 private Set<String> signatures(Method[] methods) {
168 for (Method method : methods) {
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationImpl.java 190 Method[] methods = annotationType.getDeclaredMethods(); local
191 for (int i = 0; i < methods.length; ++ i) {
192 String name = methods[i].getName();
200 value = mv.getValue(classLoader, pool, methods[i]);
202 value = getDefault(name, methods[i]);
250 Method[] methods = annotationType.getDeclaredMethods();
251 for (int i = 0; i < methods.length; ++ i) {
252 String name = methods[i].getName();
260 value = mv.getValue(classLoader, pool, methods[i]);
262 value = getDefault(name, methods[i])
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexClassImpl.java 52 private List<DexMethod> methods; field in class:DexClassImpl
226 EncodedMethod[] methods = new EncodedMethod[size]; local
227 for (int i = 0; i < methods.length; i++) {
228 methods[i] = new EncodedMethod();
229 methods[i].method_idx_diff = buffer.readUleb128();
230 methods[i].access_flags = buffer.readUleb128();
231 methods[i].code_off = buffer.readUleb128();
233 return methods;
277 if (methods == null) {
278 methods = new ArrayList<DexMethod>()
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
RuntimeSupport.java 42 * Finds two methods specified by the parameters and stores them
45 * @throws RuntimeException if the methods are not found.
50 String desc, java.lang.reflect.Method[] methods)
52 synchronized (methods) {
53 if (methods[index] == null) {
54 methods[index + 1] = thisMethod == null ? null
56 methods[index] = findSuperMethod(self, superMethod, desc);
126 Method[] methods = SecurityActions.getDeclaredMethods(clazz); local
127 int n = methods.length;
129 if (methods[i].getName().equals(name
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
ClassItem.java 52 final MethodDescriptor [] methods = m_cls.getMethods (); local
55 for (int m = 0, mLimit = methods.length; m < mLimit; ++ m)
57 final int mFirstLine = methods [m].getFirstLine ();
112 // info is available; instead, lines from all methods belonging
120 for (Iterator methods = getChildren (); methods.hasNext (); )
122 final MethodItem method = (MethodItem) methods.next ();
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClient4.java 28 import org.apache.http.client.methods.HttpDelete;
29 import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;
30 import org.apache.http.client.methods.HttpGet;
31 import org.apache.http.client.methods.HttpPost;
32 import org.apache.http.client.methods.HttpPut;
33 import org.apache.http.client.methods.HttpRequestBase;
42 * Utility methods for an OAuth client based on the <a
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ErrorFinder.java 42 CtMethod[] methods = clazz.getDeclaredMethods(); local
43 for (int i = 0; i < methods.length; i++)
44 analyzeMethod(clazz, methods[i]);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
RemoteObject.java 55 * RMI methods in the remote RMI interface.
60 * Maps from methods locally retrieved from the RMI interface to
117 ArrayList<Method> methods = nameToMethods.get(methodDef.name); local
118 if (methods == null)
121 for (Method method : methods){
  /external/junit/src/org/junit/experimental/
ParallelComputer.java 22 public ParallelComputer(boolean classes, boolean methods) {
24 fMethods= methods;
31 public static Computer methods() { method in class:ParallelComputer
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-template.rb 142 | % if @methods
143 | % for method in ( @methods || [] )
178 methods = [
187 :methods => methods
222 methods = [
231 :methods => methods
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ST.stg 59 <returnScopeInterface.methods()>
69 @returnScopeImplementation.methods() ::= <<
70 <@super.methods()>
71 /* ST returnScope.methods */
81 <returnScopeImplementation.methods()>
118 @genericParser.methods() ::= <<
119 <@super.methods()>
120 /* ST genericParser.methods */
201 <@STAttrMap.methods()>
228 @STAttrMap.methods() ::= <
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
AbortableHttpRequest.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/AbortableHttpRequest.java $
32 package org.apache.http.client.methods;

Completed in 1001 milliseconds

12 3 4 5 6 7 8 91011>>