/bionic/libc/kernel/uapi/linux/ |
atmbr2684.h | 59 int method; member in struct:br2684_if_spec
|
/cts/tests/tests/jni/libjnitest/ |
macroized_tests.c | 23 * This file also defines a static method called runAllTests(), which 50 * how to call a method: (virtual, direct, static) x (standard, array of 132 * Looks up a static method on StaticFromNative. 140 *errorMsg = failure("could not find static test method %s:%s", 148 * Looks up an instance method on InstanceFromNative. 155 *errorMsg = failure("could not find instance test method %s:%s", 163 * Looks up either an instance method on InstanceFromNative or a 164 * static method on StaticFromNative, depending on the given 191 jmethodID method = findAppropriateMethod(env, &msg, ct, local 194 if (method == NULL) 294 jmethodID method = findAppropriateMethod(env, &msg, ct, local 397 jmethodID method = findAppropriateMethod(env, &msg, ct, local 500 jmethodID method = findAppropriateMethod(env, &msg, ct, local 603 jmethodID method = findAppropriateMethod(env, &msg, ct, local 706 jmethodID method = findAppropriateMethod(env, &msg, ct, local 809 jmethodID method = findAppropriateMethod(env, &msg, ct, local 912 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1015 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1118 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1239 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1359 jmethodID method = findAppropriateMethod(env, &msg, ct, local [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
BaseKeyListenerTest.java | 17 package android.text.method.cts; 25 import android.text.method.BaseKeyListener; 31 * Test {@link android.text.method.BaseKeyListener}. 579 * A mocked {@link android.text.method.BaseKeyListener} for testing purposes.
|
CharacterPickerDialogTest.java | 17 package android.text.method.cts; 25 import android.text.method.CharacterPickerDialog;
|
DigitsKeyListenerTest.java | 17 package android.text.method.cts; 24 import android.text.method.DigitsKeyListener; 675 * A mocked {@link android.text.method.DigitsKeyListener} for testing purposes. 678 * {@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; 25 import android.text.method.NumberKeyListener; 171 * A mocked {@link android.text.method.NumberKeyListener} for testing purposes. 174 * {@link android.text.method.NumberKeyListener#getAcceptedChars()}, 175 * {@link android.text.method.NumberKeyListener#lookup(KeyEvent, Spannable)}, and 176 * {@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
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
ForegroundService.java | 35 import java.lang.reflect.Method; 64 private Method mSetForeground; 65 private Method mStartForeground; 66 private Method mStopForeground; 71 void invokeMethod(Method method, Object[] args) { 73 method.invoke(this, args); 76 Log.w("ApiDemos", "Unable to invoke method", e); 79 Log.w("ApiDemos", "Unable to invoke method", e); 84 * This is a wrapper around the new startForeground method, using the olde [all...] |
/external/aac/libAACdec/src/ |
conceal_types.h | 138 CConcealmentMethod method; member in struct:__anon6200
|
/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/boringssl/src/crypto/ec/ |
internal.h | 143 /* The following members are handled by the method functions, 159 /* All members except 'meth' are handled by the method functions, 180 /* method functions in simple.c */ 230 /* method functions in montgomery.c */ 307 const EC_METHOD *(*method)(void); member in struct:built_in_curve
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
ExperimentingRunnerModule.java | 45 import java.lang.reflect.Method; 243 for (Method method : findAllBenchmarkMethods(benchmarkClass.benchmarkClass(), instrument)) { 244 if (benchmarkMethodNames.isEmpty() || benchmarkMethodNames.contains(method.getName())) { 245 builder.add(instrument.createInstrumentation(method)); 246 unusedBenchmarkNames.remove(method.getName()); 252 "Invalid benchmark method(s) specified in options: " + unusedBenchmarkNames); 257 private static ImmutableSortedSet<Method> findAllBenchmarkMethods(Class<?> benchmarkClass, 259 ImmutableSortedSet.Builder<Method> result = ImmutableSortedSet.orderedBy( 260 Ordering.natural().onResultOf(new Function<Method, String>() [all...] |
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
WorkerProcessTest.java | 40 import java.lang.reflect.Method; 75 Method method = TestBenchmark.class.getDeclaredMethods()[0]; local 84 allocationInstrument.createInstrumentation(method), 89 .methodName(method.getName())
|
/external/clang/test/Analysis/inlining/ |
path-notes.cpp | 40 void method(int *p) { function in class:__anon7793 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/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
BuilderValidator.java | 110 for (ExecutableElement method : Util.getUnimplementedMethods(elements, subject)) { 112 MoreTypes.asExecutable(types.asMemberOf(MoreTypes.asDeclared(subject.asType()), method)); 114 if (method.getParameters().size() == 0) { 115 // If this is potentially a build() method, validate it returns the correct type. 118 // If we found more than one build-like method, fail. 119 error(builder, method, msgs.twoBuildMethods(), msgs.inheritedTwoBuildMethods(), 123 error(builder, method, msgs.buildMustReturnComponentType(), 127 buildMethod = method; 128 } else if (method.getParameters().size() > 1) { 130 error(builder, method, msgs.methodsMustTakeOneArg(), msgs.inheritedMethodsMustTakeOneArg()) 141 method); local 195 builder.addError(String.format(enclosedError, extraArgs), method); local [all...] |
ComponentValidator.java | 153 // it can return a logical method multiple times (including overrides, etc.) 156 for (ExecutableElement method : ElementFilter.methodsIn(members)) { 157 if (method.getModifiers().contains(ABSTRACT)) { 159 MoreTypes.asExecutable(types.asMemberOf(subjectType, method)); 161 List<? extends VariableElement> parameters = method.getParameters(); 165 // first, check the return type. if it's a subcomponent, validate that method as such. 171 referencedSubcomponents.put(MoreTypes.asElement(returnType), method); local 173 method, 180 method); local 182 method, 318 ErrorMessages.SubcomponentBuilderMessages.INSTANCE.builderMethodRequiresNoArgs(), method); local [all...] |