HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 626 - 650 of 8284) sorted by null

<<21222324252627282930>>

  /external/proguard/src/proguard/optimize/evaluation/
StoringInvocationUnit.java 112 generalizeMethodParameterValue((Method)referencedMember,
121 Method method,
126 generalizeMethodReturnValue(method, value);
171 private static void generalizeMethodParameterValue(Method method, int parameterIndex, Value value)
173 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
181 public static Value getMethodParameterValue(Method method, int parameterIndex)
183 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
    [all...]
  /external/proguard/src/proguard/optimize/info/
ExceptionInstructionChecker.java 45 * Returns whether the specified method may throw exceptions.
48 Method method,
52 method,
63 Method method,
79 method,
99 Method method,
106 method,
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_operator.py 29 method=('isCallable'|'sequenceIncludes'
42 method = self._check_method(node, results)
43 if method is not None:
44 return method(node, results)
77 method = results["method"][0]
78 method.value = name
79 method.changed()
88 method = getattr(self, "_" + results["method"][0].value.encode("ascii")
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_operator.py 29 method=('isCallable'|'sequenceIncludes'
42 method = self._check_method(node, results)
43 if method is not None:
44 return method(node, results)
77 method = results["method"][0]
78 method.value = name
79 method.changed()
88 method = getattr(self, "_" + results["method"][0].value.encode("ascii")
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
e.go 13 // t1.M should not appear as method in a Tx type.
18 // t2.M should not appear as method in a Tx type.
21 // T1 has no embedded (level 1) M method due to conflict.
28 // Higher-level method M wins over lower-level method M.
30 // T2 has only M as top-level method.
35 // T2.M should appear as method of T2.
39 // Higher-level method M wins over lower-level conflicting methods M.
49 // T3 has only M as top-level method.
55 // T3.M should appear as method of T3
    [all...]
  /prebuilts/go/linux-x86/src/go/doc/testdata/
e.go 13 // t1.M should not appear as method in a Tx type.
18 // t2.M should not appear as method in a Tx type.
21 // T1 has no embedded (level 1) M method due to conflict.
28 // Higher-level method M wins over lower-level method M.
30 // T2 has only M as top-level method.
35 // T2.M should appear as method of T2.
39 // Higher-level method M wins over lower-level conflicting methods M.
49 // T3 has only M as top-level method.
55 // T3.M should appear as method of T3
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_operator.py 29 method=('isCallable'|'sequenceIncludes'
42 method = self._check_method(node, results)
43 if method is not None:
44 return method(node, results)
77 method = results["method"][0]
78 method.value = name
79 method.changed()
88 method = getattr(self, "_" + results["method"][0].value.encode("ascii")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_operator.py 29 method=('isCallable'|'sequenceIncludes'
42 method = self._check_method(node, results)
43 if method is not None:
44 return method(node, results)
77 method = results["method"][0]
78 method.value = name
79 method.changed()
88 method = getattr(self, "_" + results["method"][0].value.encode("ascii")
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
LinkMovementMethodTest.java 17 package android.text.method.cts;
42 import android.text.method.LinkMovementMethod;
43 import android.text.method.MovementMethod;
117 LinkMovementMethod method = new LinkMovementMethod(); local
124 method.onTakeFocus(null, spannable, View.FOCUS_UP);
137 method.onTakeFocus(null, spannable, View.FOCUS_RIGHT);
142 method.onTakeFocus(null, spannable, View.FOCUS_UP);
148 method.onTakeFocus(null, spannable, 0);
156 LinkMovementMethod method = new LinkMovementMethod(); local
157 method.onTakeFocus(new TextViewNoIme(mActivity), null, View.FOCUS_RIGHT)
248 LinkMovementMethod method = new LinkMovementMethod(); local
320 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
336 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
343 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
350 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
366 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
373 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
380 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
396 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
403 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
410 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
426 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
433 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
440 final MyLinkMovementMethod method = new MyLinkMovementMethod(); local
460 LinkMovementMethod method = new LinkMovementMethod(); local
475 final LinkMovementMethod method = new LinkMovementMethod(); local
    [all...]
SingleLineTransformationMethodTest.java 17 package android.text.method.cts;
31 import android.text.method.SingleLineTransformationMethod;
61 MySingleLineTranformationMethod method = new MySingleLineTranformationMethod(); local
62 assertArrayEquals(new char[] { ' ', '\uFEFF' }, method.getReplacement());
63 assertArrayEquals(new char[] { '\n', '\r' }, method.getOriginal());
69 SingleLineTransformationMethod method = SingleLineTransformationMethod.getInstance(); local
70 CharSequence result = method.getTransformation("hello\nworld\r", null);
81 final SingleLineTransformationMethod method = SingleLineTransformationMethod.getInstance(); local
87 final CharSequence transformed = method.getTransformation(original, null);
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 25 import com.android.dx.cf.iface.Method;
34 * Container for all the giblets that make up a concrete Java bytecode method.
35 * It implements {@link Method}, so it provides all the original access
37 * stuff extracted from the method's {@code Code} attribute.
39 public final class ConcreteMethod implements Method {
40 /** {@code non-null;} method being wrapped */
41 private final Method method; field in class:ConcreteMethod
61 * @param method {@code non-null;} the method to be based o
    [all...]
  /system/tpm/tpm_manager/client/
tpm_nvram_binder_proxy.cc 64 auto method = base::Bind(&ITpmNvram::DefineSpace, base::Unretained(binder_)); local
67 method, callback, get_error);
73 auto method = base::Bind(&ITpmNvram::DestroySpace, base::Unretained(binder_)); local
76 method, callback, get_error);
82 auto method = base::Bind(&ITpmNvram::WriteSpace, base::Unretained(binder_)); local
84 BinderProxyHelper<WriteSpaceRequest, WriteSpaceReply> helper(method, callback,
91 auto method = base::Bind(&ITpmNvram::ReadSpace, base::Unretained(binder_)); local
93 BinderProxyHelper<ReadSpaceRequest, ReadSpaceReply> helper(method, callback,
100 auto method = base::Bind(&ITpmNvram::LockSpace, base::Unretained(binder_)); local
102 BinderProxyHelper<LockSpaceRequest, LockSpaceReply> helper(method, callback
109 auto method = base::Bind(&ITpmNvram::ListSpaces, base::Unretained(binder_)); local
118 auto method = base::Bind(&ITpmNvram::GetSpaceInfo, base::Unretained(binder_)); local
    [all...]
  /art/runtime/
imtable-inl.h 36 inline void ImTable::GetImtHashComponents(ArtMethod* method,
41 if (method->IsProxyMethod()) {
48 const DexFile* dex_file = method->GetDexFile();
49 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex());
54 // Method name for the method component.
78 *class_hash = method->GetDexMethodIndex();
85 inline uint32_t ImTable::GetImtIndex(ArtMethod* method) {
87 GetImtHashComponents(method, &class_hash, &name_hash, &signature_hash);
oat_quick_method_header.cc 38 uint32_t OatQuickMethodHeader::ToDexPc(ArtMethod* method,
51 DCHECK(method->IsNative());
59 << " current entry_point=" << method->GetEntryPointFromQuickCompiledCode()
60 << ") in " << method->PrettyMethod();
65 uintptr_t OatQuickMethodHeader::ToNativeQuickPc(ArtMethod* method,
70 DCHECK(!method->IsNative());
89 << " in " << method->PrettyMethod();
  /external/guice/core/src/com/google/inject/internal/
ProviderMethod.java 40 import java.lang.reflect.Method;
46 * A provider that invokes a method and returns its result.
57 * {@link net.sf.cglib.reflect.FastClass} to invoke the actual method, since it is significantly
58 * faster. However, this will fail if the method is {@code private} or {@code protected}, since
61 static <T> ProviderMethod<T> create(Key<T> key, Method method, Object instance,
65 int modifiers = method.getModifiers();
72 method,
83 !Modifier.isPublic(method.getDeclaringClass().getModifiers())) {
84 method.setAccessible(true)
97 protected final Method method; field in class:ProviderMethod
    [all...]
  /external/ltp/include/old/
tlibio.h 98 * This bit provides a way to randomly pick an io type and wait method.
100 * lio_random_methods() with the given method.
108 * method is LIO_WAIT_SIGPAUSE or LIO_WAIT_SIGACTIVE.
128 int lio_write_buffer(int fd, int method, char *buffer, int size,
131 int lio_read_buffer(int fd, int method, char *buffer, int size,
137 int lio_wait4asyncio(int method, int fd, struct iosw **statptr);
142 int lio_wait4asyncio(int method, int fd, aiocb_t *aiocbp);
143 int lio_check_asyncio(char *io_type, int size, aiocb_t *aiocbp, int method);
147 int lio_wait4asyncio(int method, int fd, struct aiocb *aiocbp);
148 int lio_check_asyncio(char *io_type, int size, struct aiocb *aiocbp, int method);
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
AccessDescription.java 103 String method = null; local
105 method = "caIssuers";
107 method = "caRepository";
109 method = "timeStamping";
111 method = "ocsp";
113 method = accessMethod.toString();
115 return ("\n accessMethod: " + method +
  /external/libchrome/dbus/
dbus_statistics.cc 22 // then method (using std::string <).
26 const std::string& method)
29 method(method),
36 std::string method; member in struct:dbus::__anon22780::Stat
46 return method < other.method;
82 // Add a call to |method| for |interface|. See also MethodCall in message.h.
85 const std::string& method,
92 Stat* stat = GetStat(service, interface, method, true)
    [all...]
  /external/mockito/src/test/java/org/mockito/internal/stubbing/answers/
ReturnsArgumentAtTest.java 46 new ReturnsArgumentAt(1).validateFor(new InvocationBuilder().method("varargsReturningString")
53 new ReturnsArgumentAt(0).validateFor(new InvocationBuilder().method("oneArray")
60 new ReturnsArgumentAt(0).validateFor(new InvocationBuilder().method("mixedVarargsReturningString")
70 new ReturnsArgumentAt(1).validateFor(new InvocationBuilder().method("mixedVarargsReturningString")
78 Invocation mixedVarargsReturningStringArray = new InvocationBuilder().method("mixedVarargsReturningStringArray")
85 Invocation mixedVarargsReturningObjectArray = new InvocationBuilder().method("mixedVarargsReturningStringArray")
109 new InvocationBuilder().method("intArgumentReturningInt")
115 new InvocationBuilder().method("toString")
121 new InvocationBuilder().method("varargsObject")
127 new InvocationBuilder().method("threeArgumentMethod"
    [all...]
  /frameworks/av/media/libmedia/include/media/
LinearMap.h 39 The method findX() can be used to retrieve an x value from a given y value and is
226 T findX(T y, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const {
227 return findU(y, mX, mY, method, extrapolation, startValue);
233 T findY(T x, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const {
234 return findU(x, mY, mX, method, extrapolation, startValue);
289 // method: [out] how the returned value was computed.
298 // whether there are samples in history by the method hasData().
301 T findU(T v, T *uArray, T *vArray, FindMethod *method,
304 if (method != NULL) {
305 *method = FIND_METHOD_START_VALUE
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
FramePrinter.java 33 * instructions of a method.
64 private String getMethodString(CtMethod method) {
66 return Modifier.toString(method.getModifiers()) + " "
67 + method.getReturnType().getName() + " " + method.getName()
68 + Descriptor.toString(method.getSignature()) + ";";
75 * Prints the instructions and the frame states of the given method.
77 public void print(CtMethod method) {
78 stream.println("\n" + getMethodString(method));
79 MethodInfo info = method.getMethodInfo2()
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
MethodUtil.java 36 import org.jf.dexlib2.iface.Method;
48 public static Predicate<Method> METHOD_IS_DIRECT = new Predicate<Method>() {
49 @Override public boolean apply(@Nullable Method input) {
54 public static Predicate<Method> METHOD_IS_VIRTUAL = new Predicate<Method>() {
55 @Override public boolean apply(@Nullable Method input) {
60 public static boolean isDirect(@Nonnull Method method) {
61 return (method.getAccessFlags() & directMask) != 0
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
AsyncHttpURLConnection.java 27 private final String method; field in class:AsyncHttpURLConnection
41 public AsyncHttpURLConnection(String method, String url, String message,
43 this.method = method;
70 connection.setRequestMethod(method);
78 if (method.equals("POST")) {
99 events.onHttpError("Non-200 response to " + method + " to URL: "
110 events.onHttpError("HTTP " + method + " to " + url + " timeout");
112 events.onHttpError("HTTP " + method + " to " + url + " error: "
  /packages/apps/Contacts/tests/src/com/android/contacts/
RunMethodInstrumentation.java 27 import java.lang.reflect.Method;
30 * Runs a single static method specified via the arguments.
33 * this class will attempt to invoke a method in
39 * $ adb shell am instrument -e class com.android.contacts.Foo -e method bar -e someArg someValue\
60 methodName = arguments.getString("method");
82 Log.e(TAG, "Must supply class and method");
104 // Maybe should let the method determine when this is called.
124 Method method = null; local
127 method = clazz.getMethod(methodName, Context.class, Bundle.class)
    [all...]
  /art/runtime/native/
java_lang_reflect_Parameter.cc 44 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); local
45 if (method->IsProxyMethod()) {
49 uint32_t parameter_count = method->GetParameterTypeList()->Size();
54 method->PrettyMethod().c_str(),
62 annotations::GetAnnotationForMethodParameter(method, parameterIndex, klass));

Completed in 1808 milliseconds

<<21222324252627282930>>