Home
last modified time | relevance | path

Searched refs:methods (Results 1 – 25 of 961) sorted by relevance

12345678910>>...39

/external/libexif/libexif/
Dexif-mnote-data.c61 if (d->methods.free) d->methods.free (d); in exif_mnote_data_free()
83 if (!d || !d->methods.load) return; in exif_mnote_data_load()
84 d->methods.load (d, buf, buf_size); in exif_mnote_data_load()
91 if (!d || !d->methods.save) return; in exif_mnote_data_save()
92 d->methods.save (d, buf, buf_size); in exif_mnote_data_save()
98 if (!d || !d->methods.set_byte_order) return; in exif_mnote_data_set_byte_order()
99 d->methods.set_byte_order (d, o); in exif_mnote_data_set_byte_order()
105 if (!d || !d->methods.set_offset) return; in exif_mnote_data_set_offset()
106 d->methods.set_offset (d, o); in exif_mnote_data_set_offset()
112 if (!d || !d->methods.count) return 0; in exif_mnote_data_count()
[all …]
/external/proguard/src/proguard/classfile/editor/
DClassEditor.java193 Method[] methods = targetClass.methods; in addMethod() local
196 if (methods.length <= methodsCount) in addMethod()
198 targetClass.methods = new ProgramMethod[methodsCount+1]; in addMethod()
199 System.arraycopy(methods, 0, in addMethod()
200 targetClass.methods, 0, in addMethod()
202 methods = targetClass.methods; in addMethod()
211 methods[targetClass.u2methodsCount++] = method; in addMethod()
222 Method[] methods = targetClass.methods; in removeMethod() local
227 System.arraycopy(methods, methodIndex+1, in removeMethod()
228 methods, methodIndex, in removeMethod()
[all …]
/external/emma/core/java12/com/vladium/emma/data/
DClassDescriptor.java31 final MethodDescriptor [] methods) in ClassDescriptor() argument
37 if (methods == null) in ClassDescriptor()
42 for (int m = 0; m < methods.length; ++ m) in ClassDescriptor()
44 …$assert.ASSERT (methods [m] != null, "methods [" + m + "] = null (length = " + methods.length + ")… in ClassDescriptor()
52 m_methods = methods; // TODO: defensive copy? in ClassDescriptor()
57 final MethodDescriptor method = methods [m]; in ClassDescriptor()
180 final MethodDescriptor [] methods = new MethodDescriptor [length]; in readExternal() local
183 methods [i] = MethodDescriptor.readExternal (in); in readExternal()
186 return new ClassDescriptor (packageVMName, name, stamp, srcFileName, methods); in readExternal()
207 final MethodDescriptor [] methods = cls.m_methods; in writeExternal() local
[all …]
/external/chromium_org/dbus/
Dproperty_unittest.cc35 Property<std::vector<std::string> > methods; member
46 RegisterProperty("Methods", &methods); in Properties()
166 std::vector<std::string> methods = properties_->methods.value(); in TEST_F() local
167 ASSERT_EQ(4U, methods.size()); in TEST_F()
168 EXPECT_EQ("Echo", methods[0]); in TEST_F()
169 EXPECT_EQ("SlowEcho", methods[1]); in TEST_F()
170 EXPECT_EQ("AsyncEcho", methods[2]); in TEST_F()
171 EXPECT_EQ("BrokenMethod", methods[3]); in TEST_F()
208 properties_->methods.Get(base::Bind(&PropertyTest::PropertyCallback, in TEST_F()
214 std::vector<std::string> methods = properties_->methods.value(); in TEST_F() local
[all …]
/external/javassist/src/main/javassist/tools/reflect/
DMetaobject.java48 protected Method[] methods; field in Metaobject
62 methods = classmetaobject.getReflectiveMethods(); in Metaobject()
73 methods = null; in Metaobject()
85 methods = classmetaobject.getReflectiveMethods(); in readObject()
112 methods = classmetaobject.getReflectiveMethods(); in setObject()
123 String mname = methods[identifier].getName(); in getMethodName()
140 return methods[identifier].getParameterTypes(); in getParameterTypes()
148 return methods[identifier].getReturnType(); in getReturnType()
227 return methods[identifier].invoke(getObject(), args); in trapMethodcall()
DClassMetaobject.java52 private Method[] methods; field in ClassMetaobject
82 methods = null; in ClassMetaobject()
94 methods = null; in readObject()
250 if (methods != null) in getReflectiveMethods()
251 return methods; in getReflectiveMethods()
277 methods = new Method[max]; in getReflectiveMethods()
280 methods[index[i] - 1] = allmethods[i]; in getReflectiveMethods()
282 return methods; in getReflectiveMethods()
/external/wpa_supplicant_8/src/ap/
Deap_user_db.c23 static void set_user_methods(struct hostapd_eap_user *user, const char *methods) in set_user_methods() argument
28 buf = os_strdup(methods); in set_user_methods()
32 os_memset(&user->methods, 0, sizeof(user->methods)); in set_user_methods()
39 user->methods[num_methods].method = in set_user_methods()
41 &user->methods[num_methods].vendor); in set_user_methods()
42 if (user->methods[num_methods].vendor == EAP_VENDOR_IETF && in set_user_methods()
43 user->methods[num_methods].method == EAP_TYPE_NONE) { in set_user_methods()
104 int i, id = -1, methods = -1; in get_wildcard_cb() local
111 methods = i; in get_wildcard_cb()
114 if (id < 0 || methods < 0) in get_wildcard_cb()
[all …]
/external/chromium_org/net/third_party/nss/ssl/
Dssldef.c25 rv = lower->methods->connect(lower, sa, ss->cTimeout); in ssl_DefConnect()
34 rv = lower->methods->bind(lower, addr); in ssl_DefBind()
43 rv = lower->methods->listen(lower, backlog); in ssl_DefListen()
52 rv = lower->methods->shutdown(lower, how); in ssl_DefShutdown()
61 rv = lower->methods->recv(lower, (void *)buf, len, flags, ss->rTimeout); in ssl_DefRecv()
94 int rv = lower->methods->send(lower, (const void *)(buf + sent), in ssl_DefSend()
123 rv = lower->methods->read(lower, (void *)buf, len); in ssl_DefRead()
137 int rv = lower->methods->write(lower, (const void *)(buf + sent), in ssl_DefWrite()
161 rv = lower->methods->getpeername(lower, name); in ssl_DefGetpeername()
170 rv = lower->methods->getsockname(lower, name); in ssl_DefGetsockname()
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
DFastClassEmitter.java68 List methods = ReflectUtils.addAllMethods(type, new ArrayList()); in FastClassEmitter() local
69 CollectionUtils.filter(methods, vp); in FastClassEmitter()
70 CollectionUtils.filter(methods, new DuplicatesPredicate()); in FastClassEmitter()
75 emitIndexBySignature(methods); in FastClassEmitter()
78 emitIndexByClassArray(methods); in FastClassEmitter()
92 invokeSwitchHelper(e, methods, 2, base); in FastClassEmitter()
105 e.push(methods.size() - 1); in FastClassEmitter()
113 private void emitIndexBySignature(List methods) { in emitIndexBySignature() argument
115 List signatures = CollectionUtils.transform(methods, new Transformer() { in emitIndexBySignature()
127 private void emitIndexByClassArray(List methods) { in emitIndexByClassArray() argument
[all …]
/external/wpa_supplicant_8/hostapd/
Dhostapd.eap_user_sqlite3 methods TEXT,
11 methods TEXT
14 INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1);
15 INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2',…
17 INSERT INTO wildcards(identity,methods) VALUES ('','TTLS,TLS');
18 INSERT INTO wildcards(identity,methods) VALUES ('0','AKA');
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
Dtest_support.py83 len(interface1.methods) != len(interface2.methods):
85 for i in range(len(interface1.methods)):
86 if not MethodsAreEqual(interface1.methods[i], interface2.methods[i]):
141 errors += EXPECT_EQ(1, len(module.interfaces[0].methods))
142 errors += EXPECT_EQ('Foo', module.interfaces[0].methods[0].name)
143 errors += EXPECT_EQ(2, len(module.interfaces[0].methods[0].parameters))
144 errors += EXPECT_EQ('foo', module.interfaces[0].methods[0].parameters[0].name)
146 module.interfaces[0].methods[0].parameters[0].kind)
147 errors += EXPECT_EQ('bar', module.interfaces[0].methods[0].parameters[1].name)
150 module.interfaces[0].methods[0].parameters[1].kind.__class__)
[all …]
/external/javassist/src/main/javassist/util/proxy/
DRuntimeSupport.java50 String desc, java.lang.reflect.Method[] methods) in find2Methods() argument
52 synchronized (methods) { in find2Methods()
53 if (methods[index] == null) { in find2Methods()
54 methods[index + 1] = thisMethod == null ? null in find2Methods()
56 methods[index] = findSuperMethod(self, superMethod, desc); in find2Methods()
126 Method[] methods = SecurityActions.getDeclaredMethods(clazz); in findMethod2() local
127 int n = methods.length; in findMethod2()
129 if (methods[i].getName().equals(name) in findMethod2()
130 && makeDescriptor(methods[i]).equals(desc)) in findMethod2()
131 return methods[i]; in findMethod2()
/external/javassist/src/main/javassist/bytecode/annotation/
DAnnotationImpl.java190 Method[] methods = annotationType.getDeclaredMethods(); in hashCode() local
191 for (int i = 0; i < methods.length; ++ i) { in hashCode()
192 String name = methods[i].getName(); in hashCode()
200 value = mv.getValue(classLoader, pool, methods[i]); in hashCode()
202 value = getDefault(name, methods[i]); in hashCode()
250 Method[] methods = annotationType.getDeclaredMethods(); in checkEquals()
251 for (int i = 0; i < methods.length; ++ i) { in checkEquals()
252 String name = methods[i].getName(); in checkEquals()
260 value = mv.getValue(classLoader, pool, methods[i]); in checkEquals()
262 value = getDefault(name, methods[i]); in checkEquals()
[all …]
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
Dv8_interface.py295 methods = [v8_methods.method_context(interface, method)
298 compute_method_overloads_context(methods)
311 methods.append(v8_methods.method_context(interface, method))
317 for method in methods:
343 for method in methods:
363 for method in methods),
365 any(method['is_implemented_in_private_script'] for method in methods),
367 'methods': methods,
403 def compute_method_overloads_context(methods): argument
405 compute_method_overloads_context_by_type([method for method in methods
[all …]
/external/chromium_org/third_party/libjpeg_turbo/
Djdsample.c51 upsample1_ptr methods[MAX_COMPONENTS]; member
112 (*upsample->methods[ci]) (cinfo, compptr, in sep_upsample()
446 upsample->methods[ci] = noop_upsample; in jinit_upsampler()
450 upsample->methods[ci] = fullsize_upsample; in jinit_upsampler()
457 upsample->methods[ci] = jsimd_h2v1_fancy_upsample; in jinit_upsampler()
459 upsample->methods[ci] = h2v1_fancy_upsample; in jinit_upsampler()
462 upsample->methods[ci] = jsimd_h2v1_upsample; in jinit_upsampler()
464 upsample->methods[ci] = h2v1_upsample; in jinit_upsampler()
471 upsample->methods[ci] = jsimd_h2v2_fancy_upsample; in jinit_upsampler()
473 upsample->methods[ci] = h2v2_fancy_upsample; in jinit_upsampler()
[all …]
/external/apache-http/src/org/apache/http/client/methods/
DHttpOptions.java32 package org.apache.http.client.methods;
99 Set<String> methods = new HashSet<String>(); in getAllowedMethods() local
104 methods.add(element.getName()); in getAllowedMethods()
107 return methods; in getAllowedMethods()
/external/libexif/libexif/fuji/
Dexif-mnote-data-fuji.c336 d->methods.free = exif_mnote_data_fuji_free; in exif_mnote_data_fuji_new()
337 d->methods.set_byte_order = exif_mnote_data_fuji_set_byte_order; in exif_mnote_data_fuji_new()
338 d->methods.set_offset = exif_mnote_data_fuji_set_offset; in exif_mnote_data_fuji_new()
339 d->methods.load = exif_mnote_data_fuji_load; in exif_mnote_data_fuji_new()
340 d->methods.save = exif_mnote_data_fuji_save; in exif_mnote_data_fuji_new()
341 d->methods.count = exif_mnote_data_fuji_count; in exif_mnote_data_fuji_new()
342 d->methods.get_id = exif_mnote_data_fuji_get_id; in exif_mnote_data_fuji_new()
343 d->methods.get_name = exif_mnote_data_fuji_get_name; in exif_mnote_data_fuji_new()
344 d->methods.get_title = exif_mnote_data_fuji_get_title; in exif_mnote_data_fuji_new()
345 d->methods.get_description = exif_mnote_data_fuji_get_description; in exif_mnote_data_fuji_new()
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
DMixinEverythingEmitter.java46 List methods = new ArrayList(Arrays.asList(type.getMethods())); in getMethods() local
47 … CollectionUtils.filter(methods, new RejectModifierPredicate(Modifier.FINAL | Modifier.STATIC)); in getMethods()
48 return (Method[])methods.toArray(new Method[methods.size()]); in getMethods()
DInvocationHandlerGenerator.java37 public void generate(ClassEmitter ce, Context context, List methods) { in generate() argument
38 for (Iterator it = methods.iterator(); it.hasNext();) { in generate()
58 public void generateStatic(CodeEmitter e, Context context, List methods) { in generateStatic() argument
59 for (Iterator it = methods.iterator(); it.hasNext();) { in generateStatic()
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
DHttpClient4.java28 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;
/external/libexif/libexif/canon/
Dexif-mnote-data-canon.c374 d->methods.free = exif_mnote_data_canon_free; in exif_mnote_data_canon_new()
375 d->methods.set_byte_order = exif_mnote_data_canon_set_byte_order; in exif_mnote_data_canon_new()
376 d->methods.set_offset = exif_mnote_data_canon_set_offset; in exif_mnote_data_canon_new()
377 d->methods.load = exif_mnote_data_canon_load; in exif_mnote_data_canon_new()
378 d->methods.save = exif_mnote_data_canon_save; in exif_mnote_data_canon_new()
379 d->methods.count = exif_mnote_data_canon_count; in exif_mnote_data_canon_new()
380 d->methods.get_id = exif_mnote_data_canon_get_id; in exif_mnote_data_canon_new()
381 d->methods.get_name = exif_mnote_data_canon_get_name; in exif_mnote_data_canon_new()
382 d->methods.get_title = exif_mnote_data_canon_get_title; in exif_mnote_data_canon_new()
383 d->methods.get_description = exif_mnote_data_canon_get_description; in exif_mnote_data_canon_new()
[all …]
/external/emma/core/java12/com/vladium/emma/report/
DClassItem.java52 final MethodDescriptor [] methods = m_cls.getMethods (); in getFirstLine() local
55 for (int m = 0, mLimit = methods.length; m < mLimit; ++ m) in getFirstLine()
57 final int mFirstLine = methods [m].getFirstLine (); in getFirstLine()
120 for (Iterator methods = getChildren (); methods.hasNext (); ) in getAggregate()
122 final MethodItem method = (MethodItem) methods.next (); in getAggregate()
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
Dgenerate_injected_script_externs.py147 def __init__(self, name, methods, attributes): argument
149 self.methods = methods
161 methods = []
169 methods.append(Method(return_type, name, parse_args(match.group(5))))
180 return Interface(interface_name, methods, attributes)
192 for method in ifc.methods:
/external/libexif/libexif/pentax/
Dexif-mnote-data-pentax.c436 d->methods.free = exif_mnote_data_pentax_free; in exif_mnote_data_pentax_new()
437 d->methods.set_byte_order = exif_mnote_data_pentax_set_byte_order; in exif_mnote_data_pentax_new()
438 d->methods.set_offset = exif_mnote_data_pentax_set_offset; in exif_mnote_data_pentax_new()
439 d->methods.load = exif_mnote_data_pentax_load; in exif_mnote_data_pentax_new()
440 d->methods.save = exif_mnote_data_pentax_save; in exif_mnote_data_pentax_new()
441 d->methods.count = exif_mnote_data_pentax_count; in exif_mnote_data_pentax_new()
442 d->methods.get_id = exif_mnote_data_pentax_get_id; in exif_mnote_data_pentax_new()
443 d->methods.get_name = exif_mnote_data_pentax_get_name; in exif_mnote_data_pentax_new()
444 d->methods.get_title = exif_mnote_data_pentax_get_title; in exif_mnote_data_pentax_new()
445 d->methods.get_description = exif_mnote_data_pentax_get_description; in exif_mnote_data_pentax_new()
[all …]
/external/proguard/src/proguard/gui/
DGUIResources.properties32 assumeNoSideEffectsAdditional = Assume no side effects for additional methods
41 If required, keep additional classes, fields, and methods as entry points.
43 If required, keep the names of additional classes, fields, and methods.
45 <html>Optionally specify additional methods that don't have any side effects.<br>\
48 Ask ProGuard why it is keeping certain classes, fields, or methods.
148 Remove unused classes, fields, and methods from the output.
150 Print out the list of unused classes, fields, and methods.
155 Allow the optimization step to modify the access modifiers of classes, fields, and methods.
158 …interface methods. This is not allowed in the Java language, but it is allowed in bytecode.</html>
169 Obfuscate the names of the processed classes, fields, and methods.
[all …]

12345678910>>...39