HomeSort by relevance Sort by last modified time
    Searched full:methods (Results 426 - 450 of 15977) sorted by null

<<11121314151617181920>>

  /external/guava/guava/src/com/google/common/collect/
ForwardingQueue.java 27 * should override one or more methods to modify the behavior of the backing
31 * <p><b>Warning:</b> The methods of {@code ForwardingQueue} forward
32 * <b>indiscriminately</b> to the methods of the delegate. For example,
38 * <p>The {@code standard} methods are not guaranteed to be thread-safe, even
39 * when all of the methods that they depend on are thread-safe.
  /external/javassist/src/main/javassist/bytecode/analysis/
FramePrinter.java 48 * Prints all the methods declared in the given class.
55 * Prints all the methods declared in the given class.
58 CtMethod[] methods = clazz.getDeclaredMethods(); local
59 for (int i = 0; i < methods.length; i++) {
60 print(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){
  /frameworks/volley/tests/src/com/android/volley/toolbox/
HttpClientStackTest.java 22 import org.apache.http.client.methods.HttpDelete;
23 import org.apache.http.client.methods.HttpGet;
24 import org.apache.http.client.methods.HttpPost;
25 import org.apache.http.client.methods.HttpPut;
26 import org.apache.http.client.methods.HttpUriRequest;
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
modsupport.h 117 PyAPI_FUNC(PyObject *) Py_InitModule4(const char *name, PyMethodDef *methods,
121 #define Py_InitModule(name, methods) \
122 Py_InitModule4(name, methods, (char *)NULL, (PyObject *)NULL, \
125 #define Py_InitModule3(name, methods, doc) \
126 Py_InitModule4(name, methods, doc, (PyObject *)NULL, \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_operator.py 28 methods = """
36 trailer< '.' %(methods)s > trailer< %(obj)s > >
38 power< %(methods)s trailer< %(obj)s > >
39 """ % dict(methods=methods, obj=obj)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
modsupport.h 117 PyAPI_FUNC(PyObject *) Py_InitModule4(const char *name, PyMethodDef *methods,
121 #define Py_InitModule(name, methods) \
122 Py_InitModule4(name, methods, (char *)NULL, (PyObject *)NULL, \
125 #define Py_InitModule3(name, methods, doc) \
126 Py_InitModule4(name, methods, doc, (PyObject *)NULL, \
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_operator.py 28 methods = """
36 trailer< '.' %(methods)s > trailer< %(obj)s > >
38 power< %(methods)s trailer< %(obj)s > >
39 """ % dict(methods=methods, obj=obj)
  /external/proguard/src/proguard/classfile/io/
LibraryClassReader.java 51 // A global array that acts as a parameter for the visitor methods.
181 // Read the methods.
184 // Create the methods array.
193 // Only store methods that are visible.
202 // Copy the visible methods (if any) into a methods array of the right size.
205 libraryClass.methods = EMPTY_LIBRARY_METHODS;
209 libraryClass.methods = new LibraryMethod[visibleMethodsCount];
210 System.arraycopy(reusableMethods, 0, libraryClass.methods, 0, visibleMethodsCount);
298 // Small utility methods
    [all...]
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 30 * Tests that native delegate classes implement all the required methods.
33 * have their native methods reimplemented through a delegate.
35 * Since the reimplemented methods are not native anymore, we look for the annotation
54 final String[] methods = CreateInfo.DELEGATE_METHODS; local
55 final int count = methods.length;
57 String methodName = methods[i];
85 // loop on the methods of the original class, and for the ones that are annotated
91 // look for methods that are delegated: they have the LayoutlibDelegate annotation
149 // This looks for all methods in the delegate class, and if they have the
156 // look for methods that are delegates: they have the LayoutlibDelegate annotatio
    [all...]
  /external/clang/test/ARCMT/
checking.m 232 - (Test8_complete*) init50; // expected-error {{init methods must return a type related to the receiver type}}
233 - (Test8_complete*) init51; // expected-error {{init methods must return a type related to the receiver type}}
234 - (Test8_complete*) init52; // expected-error {{init methods must return a type related to the receiver type}}
235 - (Test8_complete*) init53; // expected-error {{init methods must return a type related to the receiver type}}
236 - (Test8_complete*) init54; // expected-error {{init methods must return a type related to the receiver type}}
237 - (Test8_complete*) init55; // expected-error {{init methods must return a type related to the receiver type}}
254 - (Test8_incomplete*) init02 { return 0; } // expected-error {{init methods must return a type related to the receiver type}}
255 - (Test8_incomplete*) init12 { return 0; } // expected-error {{init methods must return a type related to the receiver type}}
256 - (Test8_incomplete*) init22 { return 0; } // expected-error {{init methods must return a type related to the receiver type}}
257 - (Test8_incomplete*) init32 { return 0; } // expected-error {{init methods must return a type related to the receiver type}
    [all...]
  /frameworks/base/docs/html/training/activity-testing/
activity-basic-testing.jd 16 <li><a href="#test_method">Add Test Methods to Verify Your Activity</a></li>
35 test methods. You can then run your test to get a test report. If any test
72 {@link junit.framework.TestCase#tearDown()} methods in your test. The
74 running any other test methods, and {@link junit.framework.TestCase#tearDown()}
75 at the end of each test method execution. You can use these methods to keep
76 the code for test initialization and clean up separate from the tests methods.
90 methods to your test case, and add variable declarations for the
157 <p>The assertion methods are from the JUnit {@link junit.framework.Assert}
167 <p>In both cases, the test runner proceeds to run the other test methods in the
170 <h3 id="test_method">Add Test Methods to Verify Your Activity</h3
    [all...]
  /external/doclava/src/com/google/doclava/
ClassInfo.java 111 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods,
121 mAllSelfMethods = methods;
131 // after providing new methods and new superclass info,clear any cached
132 // lists of self + superclass methods, ctors, etc.
407 public ArrayList<MethodInfo> methods() { method in class:ClassInfo
414 for (MethodInfo method : iface.methods()) {
422 for (MethodInfo method : superclass.methods()) {
518 private void gatherMethods(ClassInfo owner, ClassInfo cl, HashMap<String, MethodInfo> methods) {
521 methods.put(m.name() + m.signature(), m.cloneForClass(owner));
528 HashMap<String, MethodInfo> methods = new HashMap<String, MethodInfo>() local
743 ArrayList<MethodInfo> methods = selfMethods(); local
886 ArrayList<MethodInfo> methods = selfMethods(); local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_common.c 524 u16 methods = 0; local
527 /* Default to enabling methods based on build configuration */
528 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
530 methods |= WPS_CONFIG_VIRT_DISPLAY;
533 methods |= WPS_CONFIG_NFC_INTERFACE;
537 methods |= WPS_CONFIG_ETHERNET;
539 methods |= WPS_CONFIG_LABEL;
541 methods |= WPS_CONFIG_DISPLAY;
543 methods |= WPS_CONFIG_EXT_NFC_TOKEN;
545 methods |= WPS_CONFIG_INT_NFC_TOKEN
    [all...]
  /dalvik/vm/native/
dalvik_system_VMStack.cpp 61 * Create an array of classes for the methods on the stack, skipping the
62 * first two and all reflection methods. If "stopAtPrivileged" is set,
78 UniquePtr<const Method*[]> methods(new const Method*[depth]);
79 dvmFillStackTraceArray(fp, methods.get(), depth);
85 const Method* meth = methods[i];
116 if (dvmIsReflectionMethod(methods[i])) {
119 Object* klass = (Object *)methods[i]->clazz;
  /external/chromium_org/remoting/protocol/
negotiating_client_authenticator.cc 28 const std::vector<AuthenticationMethod>& methods)
37 DCHECK(!methods.empty());
38 for (std::vector<AuthenticationMethod>::const_iterator it = methods.begin();
39 it != methods.end(); ++it) {
58 // and it must not change methods after it has picked one.
85 // This is the first message to the host, send a list of supported methods.
98 // Include a list of supported methods.
  /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
  /frameworks/base/core/tests/coretests/src/android/net/
UriMatcherTest.java 53 matcher.addURI("people", "#/contact-methods", PEOPLE_CONTACTMETH);
54 matcher.addURI("people", "#/contact-methods/#", PEOPLE_CONTACTMETH_ID);
74 matcher.addURI("people", "/#/contact-methods", PEOPLE_CONTACTMETH);
75 matcher.addURI("people", "/#/contact-methods/#", PEOPLE_CONTACTMETH_ID);
96 check("content://people/2/contact-methods", PEOPLE_CONTACTMETH, matcher);
97 check("content://people/2/contact-methods/3", PEOPLE_CONTACTMETH_ID, matcher);
98 check("content://people/2/contact-methods/asdf", UriMatcher.NO_MATCH, matcher);
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
TransformClassAdapter.java 28 * Class adapter that can stub some or all of the methods of the class.
32 /** True if all methods should be stubbed, false if only native ones must be stubbed. */
42 * Creates a new class adapter that will stub some or all methods.
45 * @param deleteReturns list of types that trigger the deletion of methods returning them.
48 * @param stubNativesOnly True if only native methods should be stubbed. False if all
49 * methods should be stubbed.
132 // and don't try to stub interfaces nor abstract non-native methods.
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_hierarchical_visitor.h 30 * Enumeration values returned by visit methods to guide processing
44 * subclass in the composite, there are three kinds of visit methods.
50 * In addition, each visit method and the \c accept methods in the composite
51 * have a return value which guides the navigation. Any of the visit methods
67 * \c visit_leave method can be provided. By default each of these methods
82 * \name Visit methods for leaf-node classes
101 * methods. Anything that could be done in the enter and leave methods
108 * \name Visit methods for internal-node classes
  /external/mesa3d/src/glsl/
ir_hierarchical_visitor.h 30 * Enumeration values returned by visit methods to guide processing
44 * subclass in the composite, there are three kinds of visit methods.
50 * In addition, each visit method and the \c accept methods in the composite
51 * have a return value which guides the navigation. Any of the visit methods
67 * \c visit_leave method can be provided. By default each of these methods
82 * \name Visit methods for leaf-node classes
101 * methods. Anything that could be done in the enter and leave methods
108 * \name Visit methods for internal-node classes
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/
optimizations.html 53 except the ones that propagate values between methods.
84 <dd>Propagates the values of fields across methods.</dd>
87 <dd>Marks methods as private, whenever possible (<i>devirtualization</i>).</dd>
91 <dd>Marks methods as static, whenever possible (<i>devirtualization</i>).</dd>
94 <dd>Marks methods as final, whenever possible.</dd>
103 the invoked methods.</dd>
107 <dd>Propagates the values of method return values from methods to their
111 <dd>Inlines short methods.</dd>
114 <dd>Inlines methods that are only called once.</dd>
  /build/core/
proguard_basic_keeps.flags 18 # For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
20 native <methods>;
23 # class$ methods are inserted by some compilers to implement .class construct,
  /cts/tests/tests/jni/src/android/jni/cts/
InstanceNonce.java 20 * Class with a bunch of native instance methods. These methods are called by
37 // See JniInstanceTest for the expected behavior of these methods.
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
RemoteControlHelper.java 25 * Contains methods to handle registering/unregistering remote control clients. These methods only
26 * run on ICS devices. On previous devices, all methods are no-ops.

Completed in 1547 milliseconds

<<11121314151617181920>>