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

<<21222324252627282930>>

  /packages/apps/Dialer/src/com/android/dialer/util/
OrientationUtil.java 23 * Static methods related to device orientation.
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
RestrictedActivity.java 39 * {@link RestrictedActivity} gives access to a subset of {@link Activity} methods. These methods
44 * All methods are from android.app.Activity, and the doc strings need to point to the
45 * underlying methods.
  /packages/inputmethods/LatinIME/native/jni/
jni_common.h 23 int registerNativeMethods(JNIEnv *env, const char *const className, const JNINativeMethod *methods,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
CloseUtils.java 21 * Utility methods for closing database cursors.
  /sdk/testapps/
proguard.config 16 native <methods>;
  /external/javassist/src/main/javassist/tools/reflect/
ClassMetaobject.java 43 * The base-level methods controlled by a metaobject
52 private Method[] methods; field in class:ClassMetaobject
82 methods = null;
94 methods = null;
223 * Is invoked when <code>static</code> methods of the base-level
246 * Returns an array of the methods defined on the given reflective
250 if (methods != null)
251 return methods;
277 methods = new Method[max];
280 methods[index[i] - 1] = allmethods[i]
    [all...]
  /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/libexif/libexif/canon/
exif-mnote-data-canon.c 374 d->methods.free = exif_mnote_data_canon_free;
375 d->methods.set_byte_order = exif_mnote_data_canon_set_byte_order;
376 d->methods.set_offset = exif_mnote_data_canon_set_offset;
377 d->methods.load = exif_mnote_data_canon_load;
378 d->methods.save = exif_mnote_data_canon_save;
379 d->methods.count = exif_mnote_data_canon_count;
380 d->methods.get_id = exif_mnote_data_canon_get_id;
381 d->methods.get_name = exif_mnote_data_canon_get_name;
382 d->methods.get_title = exif_mnote_data_canon_get_title;
383 d->methods.get_description = exif_mnote_data_canon_get_description
    [all...]
  /external/libexif/libexif/fuji/
exif-mnote-data-fuji.c 336 d->methods.free = exif_mnote_data_fuji_free;
337 d->methods.set_byte_order = exif_mnote_data_fuji_set_byte_order;
338 d->methods.set_offset = exif_mnote_data_fuji_set_offset;
339 d->methods.load = exif_mnote_data_fuji_load;
340 d->methods.save = exif_mnote_data_fuji_save;
341 d->methods.count = exif_mnote_data_fuji_count;
342 d->methods.get_id = exif_mnote_data_fuji_get_id;
343 d->methods.get_name = exif_mnote_data_fuji_get_name;
344 d->methods.get_title = exif_mnote_data_fuji_get_title;
345 d->methods.get_description = exif_mnote_data_fuji_get_description
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_methods.c 46 * EAP methods included in the build.
69 * EAP methods included in the build.
85 * eap_get_names - Get space separated list of names for supported EAP methods
117 * eap_get_names_as_string_array - Get supported EAP methods as string array
122 * This function returns the list of names for all supported EAP methods as an
159 * eap_peer_get_methods - Get a list of enabled EAP peer methods
160 * @count: Set to number of available methods
161 * Returns: List of enabled EAP peer methods
226 * This function can be used to unload EAP methods that have been previously
339 * eap_peer_unregister_methods - Unregister EAP peer methods
    [all...]
  /frameworks/base/docs/html/tools/help/uiautomator/
UiObjectNotFoundException.jd 105 <div style="clear:left;">Inherited Methods</div></th></tr>
112 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Throwable" class="jd-expando-trigger closed"
113 ><img id="inherited-methods-java.lang.Throwable-trigger"
120 <div id="inherited-methods-java.lang.Throwable">
121 <div id="inherited-methods-java.lang.Throwable-list"
124 <div id="inherited-methods-java.lang.Throwable-summary" style="display: none;">
314 <a href="#" onclick="return toggleInherited(this, null)" id="inherited-methods-java.lang.Object" class="jd-expando-trigger closed"
315 ><img id="inherited-methods-java.lang.Object-trigger"
322 <div id="inherited-methods-java.lang.Object">
323 <div id="inherited-methods-java.lang.Object-list
    [all...]
  /art/runtime/native/
java_lang_reflect_Proxy.cc 34 mirror::ObjectArray<mirror::ArtMethod>* methods = local
39 mirror::Class* result = class_linker->CreateProxyClass(name, interfaces, loader, methods, throws);
  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/data/
NormalClass.java 24 * any of these methods.
33 // Methods to test.
  /dalvik/vm/analysis/
DexVerify.h 37 size_t methodsExamined; /* number of methods examined */
38 size_t monEnterMethods; /* number of methods with monitor-enter */
  /dalvik/vm/reflect/
Proxy.cpp 138 * Generate a temporary list of virtual methods.
141 Method **methods; local
142 if (!gatherMethods(interfaces, &methods, &throws, &methodCount)) {
150 createHandlerMethod(newClass, &newClass->virtualMethods[i], methods[i]);
152 free(methods);
230 * Generate a list of methods. The Method pointers returned point to the
243 Method** methods = NULL; local
251 * methods declared by each interface and all of its superinterfaces.
253 maxCount = 3; // 3 methods in java.lang.Object
274 methods = (Method**) malloc(maxCount * sizeof(*methods))
    [all...]
  /development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
Utils.java 33 * @param viewMethods TextView to list out the lifecycle methods called
40 // Get the stack of Activity lifecycle methods called and print to TextView
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
AbstractTParser.java 14 * runtime methods, such as an implementation of a custom error reporting
15 * method, symbol table populating methods and so on.
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-template.rb 142 | % if @methods
143 | % for method in ( @methods || [] )
178 methods = [
187 :methods => methods
222 methods = [
231 :methods => methods
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CRLTest.java 31 * Tests for <code>java.security.cert.CRL</code> fields and methods
67 // the following tests just call methods
  /external/chromium/base/i18n/
time_formatting.h 5 // Basic time formatting methods. These methods use the current locale
  /external/chromium/chrome/browser/policy/
configuration_policy_pref_store.h 37 // PrefStore methods:
44 // ConfigurationPolicyProvider::Observer methods:
configuration_policy_store_interface.h 62 // ConfigurationPolicyStoreInterface methods:
85 // ConfigurationPolicyStoreInterface methods:
profile_policy_connector.h 69 // ConfigurationPolicyProvider methods:
76 // ConfigurationPolicyProvider::Observer methods:
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
cros_language_options_handler.h 27 // The following static methods are public for ease of testing.
29 // Gets the list of input methods from the given input descriptors.
  /external/chromium/net/disk_cache/
eviction.h 55 // We'll just keep for a while a separate set of methods that implement the
56 // new eviction algorithm. This code will replace the original methods when

Completed in 1488 milliseconds

<<21222324252627282930>>