HomeSort by relevance Sort by last modified time
    Searched defs:method (Results 301 - 325 of 1414) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/text/src/android/text/method/cts/
BaseKeyListenerTest.java 17 package android.text.method.cts;
24 import android.text.method.BaseKeyListener;
25 import android.text.method.cts.KeyListenerTestCase;
32 * Test {@link android.text.method.BaseKeyListener}.
581 * A mocked {@link android.text.method.BaseKeyListener} for testing purposes.
CharacterPickerDialogTest.java 17 package android.text.method.cts;
27 import android.text.method.CharacterPickerDialog;
DigitsKeyListenerTest.java 17 package android.text.method.cts;
23 import android.text.method.cts.KeyListenerTestCase;
24 import android.text.method.DigitsKeyListener;
666 * A mocked {@link android.text.method.DigitsKeyListener} for testing purposes.
669 * {@link android.text.method.DigitsKeyListener#getAcceptedChars()}.
MultiTapKeyListenerTest.java 17 package android.text.method.cts;
23 import android.text.method.cts.KeyListenerTestCase;
24 import android.text.method.MultiTapKeyListener;
25 import android.text.method.TextKeyListener.Capitalize;
246 * A mocked {@link android.text.method.MultiTapKeyListener} for testing purposes.
NumberKeyListenerTest.java 17 package android.text.method.cts;
24 import android.text.method.cts.KeyListenerTestCase;
25 import android.text.method.NumberKeyListener;
165 * A mocked {@link android.text.method.NumberKeyListener} for testing purposes.
168 * {@link android.text.method.NumberKeyListener#getAcceptedChars()},
169 * {@link android.text.method.NumberKeyListener#lookup(KeyEvent, Spannable)}, and
170 * {@link android.text.method.NumberKeyListener@ok(char[], char)}.
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 38 /** {@code non-null;} method to build the list for */
39 private final RopMethod method; field in class:StdCatchBuilder
51 * @param method {@code non-null;} method to build the list for
55 public StdCatchBuilder(RopMethod method, int[] order,
57 if (method == null) {
58 throw new NullPointerException("method == null");
69 this.method = method;
76 return build(method, order, addresses)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
LocalVariableExtractor.java 24 * a method.
27 /** {@code non-null;} method being extracted from */
28 private final RopMethod method; field in class:LocalVariableExtractor
30 /** {@code non-null;} block list for the method */
40 * Extracts out all the local variable information from the given method.
42 * @param method {@code non-null;} the method to extract from
45 public static LocalVariableInfo extract(RopMethod method) {
46 LocalVariableExtractor lve = new LocalVariableExtractor(method);
51 * Constructs an instance. This method is private. Use {@link #extract}
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 32 /** {@code non-null;} method being converted */
33 private final ConcreteMethod method; field in class:BasicBlocker
71 * Identifies and enumerates the basic blocks in the given method,
75 * @param method {@code non-null;} method to convert
78 public static ByteBlockList identifyBlocks(ConcreteMethod method) {
79 BasicBlocker bb = new BasicBlocker(method);
89 * @param method {@code non-null;} method to convert
91 private BasicBlocker(ConcreteMethod method) {
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 37 /** {@code non-null;} method to build the list for */
38 private final RopMethod method; field in class:StdCatchBuilder
50 * @param method {@code non-null;} method to build the list for
54 public StdCatchBuilder(RopMethod method, int[] order,
56 if (method == null) {
57 throw new NullPointerException("method == null");
68 this.method = method;
75 return build(method, order, addresses)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableExtractor.java 24 * a method.
27 /** {@code non-null;} method being extracted from */
28 private final RopMethod method; field in class:LocalVariableExtractor
30 /** {@code non-null;} block list for the method */
40 * Extracts out all the local variable information from the given method.
42 * @param method {@code non-null;} the method to extract from
45 public static LocalVariableInfo extract(RopMethod method) {
46 LocalVariableExtractor lve = new LocalVariableExtractor(method);
51 * Constructs an instance. This method is private. Use {@link #extract}
    [all...]
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 28 import java.lang.reflect.Method;
69 tryCatchFinally.getDeclaredMethod("method").invoke(null);
105 Method method = annotated.getMethod("method", String.class, String.class); local
116 assertEquals("@testdata.Annotated$Marker(a=on method, b=[], "
118 method.getAnnotation(marker).toString());
124 method.getParameterAnnotations()[1][0].toString());
  /development/ndk/platforms/android-21/include/linux/
atmbr2684.h 59 int method; member in struct:br2684_if_spec
  /development/ndk/platforms/android-3/include/linux/
msm_audio.h 69 uint32_t method; member in struct:msm_snd_volume_config
  /external/aac/libAACdec/src/
conceal_types.h 138 CConcealmentMethod method; member in struct:__anon4400
  /external/android-mock/tests/com/google/android/testing/mocking/
ClassTypeTests.java 28 import java.lang.reflect.Method;
103 for (CtMethod method : methods) {
104 methodNames.add(method.getName());
109 private List<String> getMethodNames(Method[] methods, String[] exclusions) {
111 for (Method method : methods) {
112 if (!Arrays.asList(exclusions).contains(method.getName())) {
113 methodNames.add(method.getName());
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 212 * {@link Credentials}, method name and URI.
235 // Add method name and request-URI to the parameter map
270 String method = getParameter("methodname"); local
336 //TODO: add Method ":" digest-uri-value ":" H(entity-body)
338 a2 = method + ':' + uri;
  /external/clang/test/Analysis/inlining/
path-notes.cpp 40 void method(int *p) { function in class:__anon5815
46 anonymous.method(0);
48 // expected-note@-2 {{Calling 'method'}}
    [all...]
  /external/clang/test/SemaCXX/
ast-print.cpp 4 // CHECK-NEXT: (r->method());
7 void method() {} function in struct:MyClass
18 (r->method());
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
StdCatchBuilder.java 38 /** {@code non-null;} method to build the list for */
39 private final RopMethod method; field in class:StdCatchBuilder
51 * @param method {@code non-null;} method to build the list for
55 public StdCatchBuilder(RopMethod method, int[] order,
57 if (method == null) {
58 throw new NullPointerException("method == null");
69 this.method = method;
76 return build(method, order, addresses)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
LocalVariableExtractor.java 24 * a method.
27 /** {@code non-null;} method being extracted from */
28 private final RopMethod method; field in class:LocalVariableExtractor
30 /** {@code non-null;} block list for the method */
40 * Extracts out all the local variable information from the given method.
42 * @param method {@code non-null;} the method to extract from
45 public static LocalVariableInfo extract(RopMethod method) {
46 LocalVariableExtractor lve = new LocalVariableExtractor(method);
51 * Constructs an instance. This method is private. Use {@link #extract}
    [all...]
  /external/doclava/src/com/google/doclava/
LinkReference.java 288 // it's either a field or a method, prefer a field
300 MethodInfo method = result.classInfo.findMethod(mem, params, paramDimensions, varargs); local
301 if (method != null) {
302 result.classInfo = method.containingClass();
303 result.memberInfo = method;
340 + (f != null ? f.name() : "") + "/method=" + (m != null ? m.name() : "");
344 MethodInfo method = null; local
348 method = (MethodInfo) result.memberInfo;
395 result.referencedMemberName += method.flatSignature();
  /external/easymock/src/org/easymock/internal/
Invocation.java 23 import java.lang.reflect.Method;
35 private transient Method method; field in class:Invocation
42 public Invocation(Object mock, Method method, Object[] args) {
44 this.method = method;
45 this.arguments = expandVarArgs(method.isVarArgs(), args);
80 public Method getMethod() {
81 return method;
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ReflectionUtils.java 20 import java.lang.reflect.Method;
125 // Method
129 * @return all declared {@link Method}'s, including protected and private.
131 public static Map<String, Method> getMethods(Class<?> clazz) {
132 Map<String, Method> methods = Maps.newHashMap();
135 for (Method method : c.getDeclaredMethods()) {
136 String signature = getMethodSignature(method);
138 method.setAccessible(true);
139 methods.put(signature, method);
226 Method method = getMethodBySignature(refClass, signature); local
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
ClassItem.java 45 // TODO: SrcFileItem could benefit from this method for its own getFirstLine()
122 final MethodItem method = (MethodItem) methods.next (); local
123 final int methodID = method.getID ();
MethodItem.java 66 final MethodDescriptor method = parent.m_cls.getMethods () [m_ID]; local
67 final int status = method.getStatus ();
71 if ($assert.ENABLED) $assert.ASSERT (false, "excluded method in report data model");
80 final int totalBlockCount = method.getBlockCount ();
87 final int [] blockSizes = method.getBlockSizes ();
108 final IntObjectMap lineMap = method.getLineMap (); // TODO: expensive way to get totalLineCount
163 final IntObjectMap lineMap = method.getLineMap (); // TODO: expensive way to get totalLineCount
210 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_METHOD, "method",

Completed in 612 milliseconds

<<11121314151617181920>>