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

1 2 3 4 5 6 7 891011>>

  /external/emma/core/java12/com/vladium/emma/data/
ClassDescriptor.java 31 final MethodDescriptor [] methods)
37 if (methods == null)
38 throw new IllegalArgumentException ("null input: methods");
42 for (int m = 0; m < methods.length; ++ m)
44 $assert.ASSERT (methods [m] != null, "methods [" + m + "] = null (length = " + methods.length + ")");
52 m_methods = methods; // TODO: defensive copy?
57 final MethodDescriptor method = methods [m];
180 final MethodDescriptor [] methods = new MethodDescriptor [length] local
207 final MethodDescriptor [] methods = cls.m_methods; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
MethodListParser.java 28 * Parser for lists of methods in a class file.
32 final private StdMethodList methods; field in class:MethodListParser
45 methods = new StdMethodList(getCount());
55 return methods;
83 methods.set(n, meth);
  /external/chromium_org/third_party/icu/source/test/intltest/
loctest.h 21 * Test methods to set and get data fields
25 * Test methods to set and get data fields
37 * Test methods for basic object behaviour
41 * Test methods for POSIX parsing behavior
49 * Test methods to set and access a custom data directory
  /external/icu4c/test/intltest/
loctest.h 21 * Test methods to set and get data fields
25 * Test methods to set and get data fields
37 * Test methods for basic object behaviour
41 * Test methods for POSIX parsing behavior
49 * Test methods to set and access a custom data directory
  /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) {
  /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...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateClassAdapter.java 26 * A {@link DelegateClassAdapter} can transform some methods from a class into
29 * This is used to override specific methods and or all native methods in classes.
33 /** Suffix added to original methods. */
45 * Creates a new {@link DelegateClassAdapter} that can transform some methods
48 * This is used to override specific methods and or all native methods in classes.
55 * special constant {@link #ALL_NATIVES} to convert all native methods.
68 // Methods from the ClassAdapter
110 // Given a non-native SomeClass.MethodName(), we want to generate 2 methods
    [all...]
CreateInfo.java 41 * Returns the list of methods to rewrite as delegates.
50 * Returns the list of classes on which to delegate all native methods.
59 * Returns The list of methods to stub out. Each entry must be in the form
81 * Returns the list of classes for which the methods returning them should be deleted.
83 * to rename in which the methods are deleted, followed by a list of return types identifying
84 * the methods to delete.
122 * The list of methods to rewrite as delegates.
147 * The list of classes on which to delegate all native methods.
198 * The list of methods to stub out. Each entry must be in the form
234 * List of classes for which the methods returning them should be deleted
    [all...]
AsmGenerator.java 50 /** The set of methods to stub out. */
52 /** All classes to output as-is, except if they have native methods. */
68 /** A map { FQCN => set { method names } } of methods to rewrite as delegates.
88 // Create the map/set of methods to change to delegates
97 Set<String> methods = mDelegateMethods.get(className); local
98 if (methods == null) {
99 methods = new HashSet<String>();
100 mDelegateMethods.put(className, methods);
102 methods.add(methodName);
106 Set<String> methods = mDelegateMethods.get(className) local
    [all...]
  /external/chromium_org/mojo/public/bindings/generators/
mojom_test.py 82 len(interface1.methods) != len(interface2.methods):
84 for i in range(len(interface1.methods)):
85 if not MethodsAreEqual(interface1.methods[i], interface2.methods[i]):
140 errors += EXPECT_EQ(1, len(module.interfaces[0].methods))
141 errors += EXPECT_EQ('Foo', module.interfaces[0].methods[0].name)
142 errors += EXPECT_EQ(2, len(module.interfaces[0].methods[0].parameters))
143 errors += EXPECT_EQ('foo', module.interfaces[0].methods[0].parameters[0].name)
145 module.interfaces[0].methods[0].parameters[0].kind
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/
pylintrc 7 # * handle some basic but necessary stats'data (number of classes, methods...)
61 # R0904: Too many public methods
67 # R0903: To few public methods
148 # * modules / classes / functions / methods / arguments / variables name
150 # functions, methods
204 # * number of methods, attributes, local variables...
205 # * size, complexity of functions, methods
230 # Minimum number of public methods for a class (see R0903).
231 min-public-methods=2
233 # Maximum number of public methods for a class (see R0904)
    [all...]
  /dalvik/tools/
deadcode.py 54 methods = []
61 return methods
64 methods.append(result.group(1))
112 methods = FindMethods(sections['method code index'])
116 print "Dead Methods:"
119 for method in methods:
  /external/chromium/webkit/glue/
cpp_binding_example.h 7 This provides an example of how to use the CppBoundClass to create methods
12 constructor, any methods and properties to be exposed, and optionally a
45 // These public member variables and methods implement the methods and
47 // also contain other methods or variables, which will be hidden from JS
51 // The signatures of any methods to be bound must match
  /external/chromium_org/content/browser/renderer_host/java/
java_bound_object.h 26 // the Java object and provides the ability to invoke methods on it.
27 // Interrogation of the Java object for its methods is done lazily. This class
33 // |require_annotation| flag specifies whether or not only methods with the
52 // Methods to implement the NPObject callbacks.
75 // Map of public methods, from method name to Method instance. Multiple
76 // entries will be present for overloaded methods. Note that we can't use
  /external/chromium_org/content/test/
cpp_binding_example.h 10 This provides an example of how to use the CppBoundClass to create methods
15 constructor, any methods and properties to be exposed, and optionally a
47 // These public member variables and methods implement the methods and
49 // also contain other methods or variables, which will be hidden from JS
53 // The signatures of any methods to be bound must match
  /external/chromium_org/mojo/public/bindings/parse/
mojo_translate.py 69 def MapMethods(methods):
71 for method in methods:
99 def AddInterface(self, name, attributes, methods):
103 interface['methods'] = MapMethods(methods)
124 self.AddInterface(name=item[1], attributes=item[2], methods=item[3])
  /external/guava/guava/src/com/google/common/collect/
ForwardingSet.java 28 * override one or more methods to modify the behavior of the backing set as
32 * <p><b>Warning:</b> The methods of {@code ForwardingSet} forward
33 * <b>indiscriminately</b> to the methods of the delegate. For example,
39 * <p>The {@code standard} methods are not guaranteed to be thread-safe, even
40 * when all of the methods that they depend on are thread-safe.
66 * {@link #containsAll}. If you override either of those methods, you may wish
  /external/guava/guava/src/com/google/common/eventbus/
package-info.java 40 * <p>To register your listener methods with the event producers...
44 * methods are rarely defined in common interfaces, so in addition to
96 * EventBus, so that its <em>handler methods</em> will receive events.</dd>
98 * <em>handler methods</em>.</dt>
100 * deliver <em>posted</em> events. Handler methods are marked by the
136 * <h3>Why use an annotation to mark handler methods, rather than requiring the
140 * so), while leaving you free to place event handler methods wherever you wish
144 * only a handful of methods -- typically one. This has a number of
148 * <li>Listener interface methods may conflict.
195 * methods!
    [all...]
  /external/proguard/src/proguard/optimize/info/
SideEffectMethodMarker.java 31 * This ClassPoolVisitor marks all methods that have side effects.
47 // Parameters and values for visitor methods.
56 // Go over all classes and their methods, marking if they have side
62 // Go over all classes and their methods once.
73 // Go over all methods.
121 // Small utility methods.
  /frameworks/base/tools/layoutlib/bridge/src/android/app/
Fragment_Delegate.java 26 * Delegate used to provide new implementation of a select few methods of {@link Fragment}
28 * Through the layoutlib_create tool, the original methods of Fragment have been replaced
29 * by calls to methods of the same name in this delegate class.
31 * The methods being re-implemented are the ones responsible for instantiating Fragment objects.
32 * Because the classes of these objects are found in the project, these methods need access to
33 * {@link IProjectCallback} object. They are however static methods, so the callback is set
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
PorterDuffXfermode_Delegate.java 28 * Delegate implementing the native methods of android.graphics.PorterDuffXfermode
30 * Through the layoutlib_create tool, the original native methods of PorterDuffXfermode have been
31 * replaced by calls to methods of the same name in this delegate class.
48 // ---- Public Helper methods ----
127 // ---- native methods ----
135 // ---- Private delegate/helper methods ----
Shader_Delegate.java 25 * Delegate implementing the native methods of android.graphics.Shader
27 * Through the layoutlib_create tool, the original native methods of Shader have been replaced
28 * by calls to methods of the same name in this delegate class.
50 // ---- Public Helper methods ----
76 // ---- native methods ----
95 // ---- Private delegate/helper methods ----
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
MethodTest.java 509 assertEquals("Methods with same name did not return same hashCode.",
522 Method[] methods = null; local
547 // Test same method. but this time pull it from the list of methods
549 methods = cl.getDeclaredMethods();
552 for (i = 0; i < methods.length; i++)
553 if (methods[i].getName().equals("parmTest")) {
554 mth = methods[i];
555 i = methods.length + 1;
557 if (i < methods.length) {
707 Method methods[] = cl.getMethods() local
    [all...]
  /art/test/044-proxy/src/
NarrowingTest.java 49 Method[] methods = proxy.getClass().getDeclaredMethods(); local
50 System.out.println("Proxy methods: " + Arrays.deepToString(methods));
  /external/chromium/chrome/browser/
plugin_exceptions_table_model.h 31 // RemoveRowsTableModel methods:
36 // TableModel methods:
44 // NotificationObserver methods:

Completed in 2359 milliseconds

1 2 3 4 5 6 7 891011>>