HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 1351 - 1375 of 1620) sorted by null

<<51525354555657585960>>

  /art/runtime/
debugger.h 60 klass(invoke_class), method(invoke_method), arg_count(args_count), arg_values(args),
73 ArtMethod* const method; member in struct:art::DebugInvokeReq
93 int stack_depth, ArtMethod* method)
95 stack_depth_(stack_depth), method_(method) {
132 // A single-step is initiated in a suspended thread. We save here the current method and the
135 // causes the execution of an instruction in a different method or at a different line number.
152 kSelectiveDeoptimization, // deoptimize one method.
153 kSelectiveUndeoptimization // undeoptimize one method.
161 // Create a new JNI global reference for the method.
162 SetMethod(other.Method());
    [all...]
  /art/runtime/jdwp/
jdwp_event.cc 220 CHECK(req.Method() == nullptr);
295 CHECK(req.Method() == nullptr);
525 * rest of the arguments while holding the event list lock. This method
614 // Execute method.
639 * Determine if there is a method invocation in progress in the current
643 * state. If set, we're in the process of invoking a method.
805 Dbg::SetJdwpLocation(jdwp_location, event_location->method, event_location->dex_pc);
823 * - Put a breakpoint on a native method. Eclipse creates METHOD_ENTRY
824 * and METHOD_EXIT events with a ClassOnly mod on the method's class.
832 DCHECK(pLoc->method != nullptr)
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/
SplitAppTest.java 63 import java.lang.reflect.Method;
292 final Method method = logic.getDeclaredMethod("mult", new Class[] { local
294 assertEquals(72, (int) method.invoke(null, 12, 6));
  /cts/libs/deviceutil/src/android/cts/util/
MediaUtils.java 35 import java.lang.reflect.Method;
59 * Since it uses heuristics, this method has only been verified for media
69 * Since it uses heuristics, this method has only been verified for media
83 // method name must start with "test"
90 // see if there is a public non-static void method that takes no argument
95 for (final Method method : clazz.getDeclaredMethods()) {
96 if (method.getName().equals(methodName)
97 && isPublic(method.getModifiers())
98 && !isStatic(method.getModifiers()
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 19 import com.android.dx.cf.iface.Method;
58 * {@code non-null;} method constant for use in converting
70 /** {@code non-null;} method being converted */
71 private final ConcreteMethod method; field in class:RopperMachine
73 /** {@code non-null:} list of methods from the class whose method is being converted */
79 /** max locals of the method */
129 * @param method {@code non-null;} method being converted
132 * that defines {@code method}.
134 public RopperMachine(Ropper ropper, ConcreteMethod method,
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 24 import java.lang.reflect.Method;
277 /** Method name that objects may implement if they wish to have forein attributes set. */
428 * String that should represent the setter method which which
434 * Return a string that should represent the setter method.
435 * The setter method name will be created algorithmically the
436 * first time this method is accessed, and then cached for return
437 * by subsequent invocations of this method.
439 * @return String that should represent the setter method which which
441 * of null if no setter method should be called.
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp 167 // Objective-C method declarations in categories are not modelled as
204 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl);
206 if (Method && Method->isDeleted() && Method->isDefaulted()) {
207 // If the method was explicitly defaulted, point at that declaration.
208 if (!Method->isImplicit())
213 CXXSpecialMember CSM = getSpecialMember(Method);
215 ShouldDeleteSpecialMember(Method, CSM, /*Diagnose=*/true);
266 // Check if this is an inlined function or method
9418 ObjCMethodDecl *method = S.getCurMethodDecl(); local
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
TypeToken.java 39 import java.lang.reflect.Method;
61 * TypeToken.of(method.getGenericReturnType())}.
66 * of the {@code listType()} method signature; while {@code <String>} is lost in erasure:
164 * {@link java.lang.reflect.Method#getGenericReturnType}, the raw type is what's returned by
165 * {@link java.lang.reflect.Method#getReturnType} of the same method object. Specifically:
274 * {@link Object} or an interface. This method is similar but different from {@link
315 * Returns the generic interfaces that this type directly {@code implements}. This method is
490 * Returns the {@link Invokable} for {@code method}, which must be a member of {@code T}.
494 public final Invokable<T, Object> method(Method method) method in class:TypeToken
496 "%s not declared by %s", method, this); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapsCollectionTest.java 61 import java.lang.reflect.Method;
155 public Object invoke(Object proxy, Method method, Object[] args)
  /external/guava/guava-tests/test/com/google/common/reflect/
InvokableTest.java 29 import java.lang.reflect.Method;
118 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class);
123 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class);
128 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class);
135 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class);
149 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class);
157 Invokable<?, Iterable<String>> delegate = Prepender.method(
167 Invokable<?, Iterable> delegate = Prepender.method(
177 Invokable<?, Object> delegate = Prepender.method("prepend", String.class, Iterable.class);
185 Invokable<?, ?> delegate = Prepender.method("prepend", Iterable.class)
585 static Invokable<Prepender, Object> method(String name, Class<?>... parameterTypes) { method in class:InvokableTest.Prepender
587 Method method = Prepender.class.getDeclaredMethod(name, parameterTypes); local
    [all...]
  /external/guice/core/test/com/google/inject/spi/
ProviderMethodsTest.java 56 import java.lang.reflect.Method;
141 @Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })
340 Method method =
342 InjectionPoint point = new InjectionPoint(TypeLiteral.get(module.getClass()), method, false);
367 // Test the provider method object itself. This makes sure getInstance works, since GIN uses it
638 "@Provides method: " + SuperClassModule.class.getName() + ".providerMethod()",
655 "@Provides method: " + SuperClassModule.class.getName() + ".providerMethod()",
672 "@Provides method: " + SuperClassModule.class.getName() + ".providerMethod()",
688 "@Provides method: " + SuperClassModule.class.getName() + ".providerMethod()"
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedCollator.java 11 import java.lang.reflect.Method;
56 * Create a RuleBasedCollator from a locale by calling the getInstance(Locale) factory method in the base class
227 Method parseAndBuild = builderClass.getMethod("parseAndBuild", String.class);
538 * Method to set numeric collation to its default value.
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
RuleBasedCollator.java 10 import java.lang.reflect.Method;
55 * Create a RuleBasedCollator from a locale by calling the getInstance(Locale) factory method in the base class
228 Method parseAndBuild = builderClass.getMethod("parseAndBuild", String.class);
553 * Method to set numeric collation to its default value.
    [all...]
  /external/jarjar/lib/
asm-commons-4.0.jar 
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 76 import java.lang.reflect.Method;
112 private static final Method RENDER_METHOD;
133 * Parser node for the definition. Stored for evaluation after main render method is output.
176 throw new Error("Cannot find CompiledTemplate.render() method! " + "Has signature changed?",
198 // Implement render() method.
207 // The macros have to be defined outside of the render method.
646 * This is a special tree walker that's called after the render() method has been generated to
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-commons-3.3.jar 
  /external/testng/src/main/java/org/testng/reporters/
SuiteHTMLReporter.java 20 import java.lang.reflect.Method;
177 for (ITestNGMethod method : excluded) {
178 Method m = method.getMethod();
182 String description = method.getDescription();
217 .append("<th>Method name</th>\n")
356 bw.append("<small><i>(Hover the method name to see the test class name)</i></small><p/>\n");
385 .append("<th>Method<br>configuration</th>")
386 .append("<th>Test<br>method</th>")
445 * Generate a HTML color based on the class of the method
    [all...]
  /external/v8/test/mjsunit/
debug-stepin-positions.js 192 // Method calls.
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
DcTrackerTest.java 57 import java.lang.reflect.Method;
373 Method method = DcTracker.class.getDeclaredMethod("isDataAllowed", local
375 method.setAccessible(true);
376 return (boolean) method.invoke(mDct, dataAllowFailReasons);
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GsmInboundSmsHandlerTest.java 60 import java.lang.reflect.Method;
272 public Bundle call(String method, String request, Bundle args) {
293 Method method = StateMachine.class.getDeclaredMethod("getCurrentState"); local
294 method.setAccessible(true);
295 return (IState) method.invoke(mGsmInboundSmsHandler);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
HashMapTest.java 25 import java.lang.reflect.Method;
81 public Object invoke(Object proxy, Method m, Object[] args)
107 // Test for method java.util.HashMap()
118 // Test for method java.util.HashMap(int)
138 // Test for method java.util.HashMap(int, float)
158 // Test for method java.util.HashMap(java.util.Map)
198 // Test for method java.lang.Object java.util.HashMap.clone()
244 // Test for method boolean
261 // Test for method boolean
273 // Test for method java.util.Set java.util.HashMap.entrySet(
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TunableTvView.java 77 import java.lang.reflect.Method;
638 * Sets the current channel. Call this method only when setting the current channel without
714 Method method = TvView.class.getMethod("requestUnblockContent", local
716 method.invoke(mTvView, rating);
    [all...]
  /prebuilts/tools/common/asm-tools/
asm-commons-4.0.jar 
  /prebuilts/tools/common/m2/repository/asm/asm-commons/3.3/
asm-commons-3.3.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.2/
kotlin-annotation-processing-1.0.2.jar 

Completed in 1953 milliseconds

<<51525354555657585960>>