/external/llvm/lib/DebugInfo/PDB/DIA/ |
DIARawSymbol.cpp | 77 HRESULT (__stdcall IDiaSymbol::*Method)(ArgType *)) { 79 if (S_OK == (Symbol->*Method)(&Value)) 87 HRESULT (__stdcall IDiaSymbol::*Method)(ArgType *)) { 89 if (S_OK == (Symbol->*Method)(&Value)) 97 HRESULT (__stdcall IDiaSymbol::*Method)(BSTR *)) { 99 if (S_OK != (Symbol->*Method)(&Result16)) 112 HRESULT (__stdcall IDiaSymbol::*Method)(GUID *)) { 114 if (S_OK != (Symbol->*Method)(&Result)) 127 HRESULT (__stdcall IDiaSymbol::*Method)(ArgType *)) { 129 if (S_OK == (Symbol->*Method)(&Value)) [all...] |
/art/test/577-profile-foreign-dex/src/ |
Main.java | 21 import java.lang.reflect.Method; 125 private static final Method registerAppInfoMethod;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
ConnectReqTestCase.java | 28 import java.lang.reflect.Method; 50 Method[] methods = WifiP2pManager.class.getMethods(); 83 * @param wpsConfig wps configuration method.
|
/cts/hostsidetests/appsecurity/test-apps/UsesLibraryApp/src/com/android/cts/useslibrary/ |
UsesLibraryTest.java | 32 import java.lang.reflect.Method; 104 Method isBackedByOatFileMethod = DexFile.class.getDeclaredMethod("isBackedByOatFile");
|
/cts/tests/core/runner/src/com/android/cts/core/runner/support/ |
TestNgRunner.java | 30 import java.lang.reflect.Method; 50 /** Don't include the same method names twice. */ 128 // Avoid looking at all the methods by just using the string method name. 177 // Add each test method as a child. 178 for (Method m : cls.getDeclaredMethods()) {
|
/cts/tools/vm-tests-tf/src/dot/junit/ |
DxAbstractMain.java | 66 * Try to load the class with the given name, find the "run" method and run it. 73 java.lang.reflect.Method method = null; local 74 // We expect only ever one declared method named run, but don't know the arguments. So 76 for (java.lang.reflect.Method m : c.getDeclaredMethods()) { 78 method = m; 82 if (method == null) { 83 fail("Could not find method 'run'"); 96 method.invoke(receiver, args);
|
/external/clang/test/SemaCXX/ |
virtual-override.cpp | 171 virtual void f(int) = 0; // expected-note{{unimplemented pure virtual method}} 193 virtual Base* Method(); 198 virtual Derived<int>* Method();
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
adaptor_generator.cc | 156 for (const auto& method : interface.methods) { 158 switch (method.kind) { 159 case Interface::Method::Kind::kSimple: 162 case Interface::Method::Kind::kNormal: 163 if (method.include_dbus_message) 168 case Interface::Method::Kind::kAsync: 169 if (method.include_dbus_message) 174 case Interface::Method::Kind::kRaw: 181 text->AddLine(StringPrintf("\"%s\",", method.name.c_str())); 184 method.name.c_str())) [all...] |
/external/dexmaker/src/test/java/com/google/dexmaker/examples/ |
FibonacciMaker.java | 28 import java.lang.reflect.Method; 68 Method fibMethod = fibonacciClass.getMethod("fib", int.class);
|
/external/droiddriver/src/io/appium/droiddriver/helpers/ |
BaseDroidDriverTest.java | 28 import java.lang.reflect.Method; 91 * behavior - if multiple subclasses override this method, only the first override is executed. 93 * or override this method, which is a simpler alternative with the aforementioned catch. 138 // This method is for troubleshooting. Do not throw new error; we'll 220 Method method = null; local 226 method = getClass().getMethod(fName, (Class[]) null); 228 fail("Method \"" + fName + "\" not found"); 231 if (!Modifier.isPublic(method.getModifiers())) { 232 fail("Method \"" + fName + "\" should be public") [all...] |
/external/easymock/src/org/easymock/internal/ |
ExpectedInvocation.java | 19 import java.lang.reflect.Method;
127 public Method getMethod() {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
PerCollectionSizeTestSuiteBuilder.java | 25 import java.lang.reflect.Method; 98 Set<Method> oneSizeSuppressedTests = getSuppressedTests();
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MultisetIteratorTester.java | 27 import java.lang.reflect.Method; 95 * Returns {@link Method} instances for the tests that assume multisets support duplicates so that 99 public static List<Method> getIteratorDuplicateInitializingMethods() {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
CollectionIteratorTester.java | 32 import java.lang.reflect.Method; 122 * Returns the {@link Method} instance for 130 public static Method getIteratorKnownOrderRemoveUnsupportedMethod() {
|
ListAddAtIndexTester.java | 32 import java.lang.reflect.Method; 57 * throw regardless, but it keeps the method name accurate. 155 * Returns the {@link Method} instance for 160 public static Method getAddNullSupportedMethod() {
|
ListSetTester.java | 30 import java.lang.reflect.Method; 139 * Returns the {@link java.lang.reflect.Method} instance for 151 public static Method getSetNullSupportedMethod() {
|
MapCreationTester.java | 32 import java.lang.reflect.Method; 39 * static factory method) of a map. Can't be invoked directly; please see 146 * Returns the {@link Method} instance for {@link 153 public static Method getCreateWithNullKeyUnsupportedMethod() {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MutableClassToInstanceMapTest.java | 30 import java.lang.reflect.Method; 46 Method remapTest = null;
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
AbstractInvocationHandlerTest.java | 28 import java.lang.reflect.Method; 122 @Override protected Object handleInvocation(Object proxy, Method method, Object[] args) 124 return method.invoke(delegate, args);
|
/external/guice/core/src/com/google/inject/ |
AbstractModule.java | 32 import java.lang.reflect.Method; 169 Matcher<? super Method> methodMatcher,
|
PrivateModule.java | 32 import java.lang.reflect.Method; 227 Matcher<? super Method> methodMatcher,
|
/external/guice/core/src/com/google/inject/internal/ |
EncounterImpl.java | 34 import java.lang.reflect.Method; 67 public void bindInterceptor(Matcher<? super Method> methodMatcher,
|
TypeConverterBindingProcessor.java | 28 import java.lang.reflect.Method; 108 final Method parser = wrapperType.getMethod(
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
OfflineInstrumentationAccessGeneratorTest.java | 28 import org.objectweb.asm.commons.Method; 107 gen.invokeConstructor(Type.getType(Object.class), new Method("<init>",
|
/external/junit/src/org/junit/experimental/theories/internal/ |
Assignments.java | 6 import java.lang.reflect.Method; 18 * A potentially incomplete list of value assignments for a method's formal 39 public static Assignments allUnassigned(Method testMethod,
|