HomeSort by relevance Sort by last modified time
    Searched defs:methods (Results 51 - 75 of 404) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 168 * Returns the methods with {@code memberNameIndex} declared by {@code
174 Set<Integer> methods = new HashSet<Integer>(); local
179 methods.add(methodIndex);
183 return methods;
  /external/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpRequestBase.java $
32 package org.apache.http.client.methods;
  /external/chromium_org/dbus/
object_manager_unittest.cc 36 Property<std::vector<std::string> > methods; member in struct:dbus::ObjectManagerTest::Properties
45 RegisterProperty("Methods", &methods);
206 std::vector<std::string> methods = properties->methods.value(); local
207 ASSERT_EQ(4U, methods.size());
208 EXPECT_EQ("Echo", methods[0]);
209 EXPECT_EQ("SlowEcho", methods[1]);
210 EXPECT_EQ("AsyncEcho", methods[2]);
211 EXPECT_EQ("BrokenMethod", methods[3])
    [all...]
  /external/chromium_org/remoting/protocol/
negotiating_authenticator_unittest.cc 66 std::vector<AuthenticationMethod> methods; local
67 methods.push_back(AuthenticationMethod::Spake2Pair());
68 methods.push_back(AuthenticationMethod::Spake2(
71 methods.push_back(AuthenticationMethod::Spake2(
82 scoped_ptr<ThirdPartyClientAuthenticator::TokenFetcher>(), methods);
  /external/chromium_org/third_party/hwcplus/include/hardware/
hardware.h 141 /** Modules methods */
142 struct hw_module_methods_t* methods; member in struct:hw_module_t
161 * followed by module specific public methods and attributes.
  /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...]
  /external/emma/core/java12/com/vladium/emma/report/
ReportDataModel.java 104 final MethodDescriptor [] methods = cls.getMethods (); local
106 // TODO: handle edge case when all methods of a class have METHOD_NO_BLOCK_DATA set
107 for (int m = 0; m < methods.length; ++ m)
109 final MethodDescriptor method = methods [m];
  /external/javassist/src/main/javassist/
SerialVersionUID.java 85 CtMethod[] methods = clazz.getDeclaredMethods(); local
90 if (methods.length > 0)
156 // methods.
157 Arrays.sort(methods, new Comparator() {
170 for (int i = 0; i < methods.length; i++) {
171 CtMethod method = methods[i];
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 108 CtMethod methods[] = clazz.getDeclaredMethods(); local
109 if (methods.length > 0) {
113 for (int i = 0; i < methods.length; i++) {
114 CtClass returnType = methods[i].getReturnType();
115 addMemberValue(methods[i].getName(),
  /external/javassist/src/main/javassist/tools/reflect/
Metaobject.java 48 protected Method[] methods; field in class:Metaobject
62 methods = classmetaobject.getReflectiveMethods();
73 methods = null;
85 methods = classmetaobject.getReflectiveMethods();
112 methods = classmetaobject.getReflectiveMethods();
123 String mname = methods[identifier].getName();
140 return methods[identifier].getParameterTypes();
148 return methods[identifier].getReturnType();
227 return methods[identifier].invoke(getObject(), args);
  /external/junit/src/org/junit/runners/
ParentRunner.java 46 * {@code @BeforeClass} and {@code @AfterClass} methods,
128 List<FrameworkMethod> methods= getTestClass().getAnnotatedMethods(annotation); local
130 for (FrameworkMethod eachTestMethod : methods)
143 * <li>ALWAYS run all non-overridden {@code @BeforeClass} methods on this class
146 * <li>ALWAYS run all non-overridden {@code @AfterClass} methods on this class
147 * and superclasses before any of the previous steps; all AfterClass methods are
149 * necessary, with exceptions from AfterClass methods into a
164 * Returns a {@link Statement}: run all non-overridden {@code @BeforeClass} methods on this class
176 * Returns a {@link Statement}: run all non-overridden {@code @AfterClass} methods on this class
177 * and superclasses before executing {@code statement}; all AfterClass methods ar
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
InterfaceMaker.java 58 * since interface methods are by definition abstract and public.
67 * Add all the public methods in the specified class.
68 * Methods from superclasses are included, except for methods declared in the base
70 * @param class the class containing the methods to add to the interface
73 Method[] methods = clazz.getMethods(); local
74 for (int i = 0; i < methods.length; i++) {
75 Method m = methods[i];
MixinEmitter.java 63 Method[] methods = getMethods(classes[i]); local
64 for (int j = 0; j < methods.length; j++) {
65 if (unique.add(MethodWrapper.create(methods[j]))) {
66 MethodInfo method = ReflectUtils.getMethodInfo(methods[j]);
  /external/wpa_supplicant_8/src/p2p/
p2p_build.c 151 u16 methods; local
161 /* Config Methods */
162 methods = 0;
165 methods |= WPS_CONFIG_PUSHBUTTON;
168 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
170 methods |= p2p->cfg->config_methods &
174 methods |= WPS_CONFIG_PUSHBUTTON;
175 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
177 wpabuf_put_be16(buf, methods);
  /frameworks/base/cmds/ime/src/com/android/commands/ime/
Ime.java 105 List<InputMethodInfo> methods; local
108 methods = mImm.getEnabledInputMethodList();
116 methods = mImm.getInputMethodList();
124 if (methods != null) {
126 for (int i=0; i<methods.size(); i++) {
127 InputMethodInfo imi = methods.get(i);
238 System.err.println("The list command prints all enabled input methods. Use");
239 System.err.println("the -a option to see all input methods. Use");
  /frameworks/base/core/jni/
android_opengl_EGLExt.cpp 152 static JNINativeMethod methods[] = { variable
160 err = android::AndroidRuntime::registerNativeMethods(_env, classPathName, methods, NELEM(methods));
  /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
57 final String[] methods = CreateInfo.DELEGATE_METHODS; local
59 for (String methodName : methods) {
87 // loop on the methods of the original class, and for the ones that are annotated
93 // look for methods that are delegated: they have the LayoutlibDelegate annotation
126 // check the return type of the methods match.
164 // This looks for all methods in the delegate class, and if they have the
171 // look for methods that are delegates: they have the LayoutlibDelegate annotatio
    [all...]
  /hardware/libhardware/include/hardware/
hardware.h 141 /** Modules methods */
142 struct hw_module_methods_t* methods; member in struct:hw_module_t
165 * followed by module specific public methods and attributes.
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
methodobject.h 11 not Python methods in user-defined classes. See classobject.h
61 the construction of methods for a class. These cannot be used for
74 PyMethodDef *methods; /* Methods of this type */ member in struct:PyMethodChain
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
methodobject.h 11 not Python methods in user-defined classes. See classobject.h
61 the construction of methods for a class. These cannot be used for
74 PyMethodDef *methods; /* Methods of this type */ member in struct:PyMethodChain
  /external/dexmaker/src/main/java/com/google/dexmaker/
DexMaker.java 50 * including their member methods and fields, executable code, and debugging
136 * getParameter()}. For non-static methods the {@code this} pointer is exposed
250 if (typeDeclaration.methods.containsKey(method)) {
271 typeDeclaration.methods.put(method, methodDeclaration);
410 private final Map<MethodId, MethodDeclaration> methods field in class:DexMaker.TypeDeclaration
420 + fields.keySet() + " " + methods.keySet());
431 for (MethodDeclaration method : methods.values()) {
  /external/javassist/src/main/javassist/bytecode/
ClassFileWriter.java 79 private MethodWriter methods; field in class:ClassFileWriter
95 methods = new MethodWriter(constPool);
112 public MethodWriter getMethodWriter() { return methods; }
142 output.enlarge(fields.dataSize() + methods.dataSize() + 6);
147 output.writeShort(methods.size());
148 methods.write(output);
192 out.writeShort(methods.size());
193 methods.write(out);
510 * Writes the added methods.
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastClassEmitter.java 68 List methods = ReflectUtils.addAllMethods(type, new ArrayList()); local
69 CollectionUtils.filter(methods, vp);
70 CollectionUtils.filter(methods, new DuplicatesPredicate());
75 emitIndexBySignature(methods);
78 emitIndexByClassArray(methods);
92 invokeSwitchHelper(e, methods, 2, base);
105 e.push(methods.size() - 1);
113 private void emitIndexBySignature(List methods) {
115 List signatures = CollectionUtils.transform(methods, new Transformer() {
127 private void emitIndexByClassArray(List methods) {
    [all...]
  /art/test/044-proxy/src/
BasicTest.java 75 Method[] methods = proxy.getClass().getDeclaredMethods(); local
76 Arrays.sort(methods, new Comparator<Method>() {
87 System.out.println("Proxy methods: " + Arrays.deepToString(methods));
88 Method meth = methods[methods.length -1];
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_StaticNonce.c 324 static JNINativeMethod methods[] = { variable
367 methods, sizeof(methods) / sizeof(JNINativeMethod));

Completed in 1629 milliseconds

1 23 4 5 6 7 8 91011>>