HomeSort by relevance Sort by last modified time
    Searched defs:methods (Results 101 - 125 of 639) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/openssh/
auth2.c 65 /* methods */
258 packet_disconnect("no authentication methods enabled");
295 char *methods; local
368 methods = authmethods_get(authctxt);
369 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
370 partial, methods);
372 packet_put_cstring(methods);
376 free(methods);
382 * methods list. Returns 1 if allowed, or no methods lists configured
459 char *methods, *omethods, *method, *p; local
    [all...]
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jcsample.c 65 downsample1_ptr methods[MAX_COMPONENTS]; member in struct:__anon17607
128 (*downsample->methods[ci]) (cinfo, compptr, in_ptr, out_ptr);
490 downsample->methods[ci] = fullsize_smooth_downsample;
494 downsample->methods[ci] = fullsize_downsample;
498 downsample->methods[ci] = h2v1_downsample;
503 downsample->methods[ci] = h2v2_smooth_downsample;
507 downsample->methods[ci] = h2v2_downsample;
511 downsample->methods[ci] = int_downsample;
fpdfapi_jdsample.c 47 upsample1_ptr methods[MAX_COMPONENTS]; member in struct:__anon17624
56 * recompute them each time. They are unused for other upsampling methods.
108 (*upsample->methods[ci]) (cinfo, compptr,
424 /* Verify we can handle the sampling factors, select per-component methods,
442 upsample->methods[ci] = noop_upsample;
446 upsample->methods[ci] = fullsize_upsample;
452 upsample->methods[ci] = h2v1_fancy_upsample;
454 upsample->methods[ci] = h2v1_upsample;
459 upsample->methods[ci] = h2v2_fancy_upsample;
462 upsample->methods[ci] = h2v2_upsample
    [all...]
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
LogTransformer.java 226 * the byte codes. If it is a class (i.e. not an interface) the methods
260 // then check every behaviour (which includes methods). We are
263 // NOTE: This will be changed, as empty methods should be
266 CtBehavior[] methods = cl.getDeclaredBehaviors(); local
267 for (int i = 0; i < methods.length; i++) {
268 if (methods[i].isEmpty() == false) {
269 doMethod(methods[i]);
287 * It is only called for methods with a body.
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DumpVtables.java 115 List<Method> methods = classProto.getVtable(); local
116 String className = "Class " + classDef.getType() + " extends " + classDef.getSuperclass() + " : " + methods.size() + " methods\n";
118 for (int i=0;i<methods.size();i++) {
119 Method method = methods.get(i);
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c 786 * EAP-TLS, EAP-PEAP, EAP-TTLS, and EAP-FAST methods are expected to use this
980 * @types: Buffer for returning allocated list of allowed EAP methods
981 * @num_types: Buffer for returning number of allocated EAP methods
984 * This function is used to parse EAP method list and select allowed methods
993 struct eap_method_type *methods = NULL, *_methods; local
1026 _methods = os_realloc_array(methods, num_methods,
1027 sizeof(*methods));
1029 os_free(methods);
1033 methods = _methods;
1034 methods[num_methods - 1].vendor = vendor
    [all...]
  /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;
169 methods |= WPS_CONFIG_P2PS;
172 methods |= p2p->cfg->config_methods &
176 methods |= WPS_CONFIG_PUSHBUTTON;
177 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
178 methods |= WPS_CONFIG_P2PS
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.h 27 /* list of methods, properties and signals registered with object */
28 const struct wpa_dbus_method_desc *methods; member in struct:wpa_dbus_object_desc
  /frameworks/base/core/java/android/text/method/
MultiTapKeyListener.java 33 * with hardware keyboards. Software input methods have no obligation to trigger
34 * the methods in this class.
219 KeyListener[] methods = content.getSpans(0, content.length(), local
221 for (Object method : methods) {
  /frameworks/base/core/jni/
BindTest.cpp 210 static VMMethod methods[] = { variable
229 jamvm_registerClass("BindTest", methods);
  /frameworks/base/core/jni/android/graphics/
Matrix.cpp 308 static JNINativeMethod methods[] = { member in namespace:android
357 int result = RegisterMethodsOrDie(env, "android/graphics/Matrix", methods, NELEM(methods));
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 41 * or entire packages. By default sub-packages are included recursively, but methods are
81 List<Method> methods = Arrays.asList(testCaseClass.getMethods()); local
82 return select(methods, new TestMethodPredicate());
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
ModelClass.java 232 * Returns an array containing all public methods on the type represented by this ModelClass
238 * @param staticOnly Whether only static methods should be returned or both instance methods
239 * and static methods are valid.
241 * @return An array containing all public methods with the name <code>name</code> and taking
245 ModelMethod[] methods = getDeclaredMethods(); local
247 for (ModelMethod method : methods) {
257 * Returns all public instance methods with the given name and number of parameters.
261 * @return An array containing all public methods with the given name and number of parameters.
264 ModelMethod[] methods = getDeclaredMethods() local
287 ModelMethod[] methods = getMethods(name, args, staticOnly); local
351 ModelMethod[] methods = getDeclaredMethods(); local
380 ModelMethod[] methods = getMethods(methodName, new ArrayList<ModelClass>(), staticOnly); local
453 ModelMethod[] methods = getDeclaredMethods(); local
    [all...]
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
JavaClass.java 238 Method[] methods = mClass.getDeclaredMethods(); local
239 if (methods == null) {
242 ModelMethod[] classMethods = new ModelMethod[methods.length];
243 for (int i = 0; i < methods.length; i++) {
244 classMethods[i] = new JavaMethod(methods[i]);
  /libcore/libart/src/main/java/java/lang/reflect/
Proxy.java 31 * {@code Proxy} defines methods for creating dynamic proxy classes and instances.
45 * Orders methods by their name, parameters, return type and inheritance relationship.
165 List<Method> methods = getMethods(interfaces); local
166 Collections.sort(methods, ORDER_BY_SIGNATURE_AND_SUBTYPE);
167 validateReturnTypes(methods);
168 List<Class<?>[]> exceptions = deduplicateAndGetExceptions(methods);
169 Method[] methodsArray = methods.toArray(new Method[methods.size()]);
293 * Fills {@code proxiedMethods} with the methods of {@code interfaces} and
296 private static void getMethodsRecursive(Class<?>[] interfaces, List<Method> methods) {
298 getMethodsRecursive(i.getInterfaces(), methods); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
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) {
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 133 * {@code null-ok;} the class file field {@code methods}; only ever
136 private MethodList methods; field in class:DirectClassFile
306 return methods;
542 methods = mlParser.getList();
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 240 * Processes the methods of the given class.
251 MethodList methods = cf.getMethods(); local
252 int sz = methods.size();
255 Method one = methods.get(i);
268 // There's no code for native or abstract methods.
280 RopMethod rmeth = Ropper.convert(concrete, advice, methods);
331 * ...but only native methods are actually allowed to be
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidMockGenerator.java 63 * subclass. The interface and subclass both define the same methods which
64 * comprise all of the mockable methods of the provided class. At present, for
183 "Cannot specify final or static methods in an interface");
329 Method[] methods = getAllMethods(originalClass); local
330 for (Method method : methods) {
347 Method[] methods = getAllMethods(superClass); local
352 for (Method method : methods) {
363 throw new RuntimeException("Internal Error while creating subclass methods for "
380 List<Method> methods = new ArrayList<Method>(Arrays.asList(clazz.getDeclaredMethods())); local
381 for (Method method : methods) {
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
JUnitCodeGen.java 77 Method[] methods = parserClass.getDeclaredMethods(); local
78 for(Method method : methods) {
gUnitBaseTest.java 46 * which implements the essential methods for triggering
221 Method[] methods = _return.getDeclaredMethods(); local
222 for(Method method : methods) {
393 Method[] methods = _treeReturn.getDeclaredMethods(); local
394 for(Method method : methods) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
LaunchedDebugger.java 233 if (!checkReplyPacketWithoutFail(reply, "ReferenceType::Methods command")) {
236 int methods = reply.getNextValueAsInt(); local
237 for (int i = 0; i < methods; i++) {
  /external/jetty/src/java/org/eclipse/jetty/util/ajax/
JSONPojoConvertor.java 112 Method[] methods = _pojoClass.getMethods(); local
113 for (int i=0;i<methods.length;i++)
115 Method m=methods[i];
  /external/jhead/
main.c 771 static JNINativeMethod methods[] = { variable
781 * Register several native methods for one class.
803 * Register native methods for all classes we know about.
808 methods, NELEM(methods));
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckClassAdapter.java 53 * A {@link ClassAdapter} that checks that its methods are properly used. More
187 List methods = cn.methods; local
188 for (int i = 0; i < methods.size(); ++i) {
189 MethodNode method = (MethodNode) methods.get(i);
437 // Utility methods

Completed in 986 milliseconds

1 2 3 45 6 7 8 91011>>