/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
DeqpTestRunner.java | 29 import java.lang.reflect.Method; [all...] |
/external/guava/guava-testlib/test/com/google/common/testing/ |
FreshValueGeneratorTest.java | 77 import java.lang.reflect.Method; 675 .setDefault(Method.class, FreshValueGeneratorTest.class.getDeclaredMethod("testNulls")) [all...] |
/external/jcommander/src/main/java/com/beust/jcommander/ |
JCommander.java | 26 import java.lang.reflect.Method; 81 * This field/method will contain whatever command line parameter is not an option. 216 Method consoleMethod = System.class.getDeclaredMethod("console", new Class<?>[0]); 675 * Main method that parses the values and initializes the fields accordingly. [all...] |
/external/littlemock/tests/com/google/testing/littlemock/ |
LittleMockTest.java | 60 import java.lang.reflect.Method; 586 // We verify that there are zero matchers by using the check for programming errors method. 616 // createCapture().capture() into a method expecting an int, because the capture 617 // method returns null, and that gets auto-boxed to Integer on the way out of the 618 // capture method, then auto-unboxed into an int when being passed to the underlying 619 // method, which gives the NPE. How best can we fix this? 633 // variable, which will cause the tear down of this method to fail - we can clear them 661 // It can also be passed to a method that takes object. 751 // I want to specify that when hasCallback(Callback) method is called, the framework 818 // Then verifyNoMoreInteractions() will pass only if there are no "untagged" method calls [all...] |
/external/skia/platform_tools/android/apps/visualbenchsdl/src/main/java/org/libsdl/app/ |
SDLActivity.java | 32 import java.lang.reflect.Method; 86 * This method is called by SDL before loading the native shared libraries. 113 * This method is called by SDL before starting the native application thread. 359 * This method is called by SDL if SDL did not handle a message itself. 361 * Method can be overwritten to handle Messages in a different class. 364 * @return if the message was handled in overridden method. 461 * This method is called by SDL using JNI. 469 * This method is called by SDL using JNI. 476 * This method is called by SDL using JNI. 483 * This method is called by SDL using JNI [all...] |
/external/v8/test/mjsunit/ |
messages.js | 147 }, "Method Set.prototype.add called on incompatible receiver [object Array]",
|
/frameworks/base/core/java/android/app/ |
LoadedApk.java | 62 import java.lang.reflect.Method; [all...] |
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
WifiStateMachineTest.java | 84 import java.lang.reflect.Method; 250 Method method = StateMachine.class.getDeclaredMethod("getCurrentState"); local 251 method.setAccessible(true); 252 return (IState) method.invoke(mWsm); 728 * Helper method to retrieve WifiConfiguration by SSID. [all...] |
/frameworks/support/v4/java/android/support/v4/widget/ |
SlidingPaneLayout.java | 51 import java.lang.reflect.Method; [all...] |
/libcore/jsr166-tests/src/test/java/jsr166/ |
CompletableFutureTest.java | 15 import java.lang.reflect.Method; [all...] |
/external/clang/lib/Frontend/Rewrite/ |
RewriteModernObjC.cpp | 335 void RewriteMethodDeclaration(ObjCMethodDecl *Method); 423 ObjCMethodDecl *Method); [all...] |
/external/clang/lib/CodeGen/ |
CodeGenModule.cpp | [all...] |
ItaniumCXXABI.cpp | 382 const CXXMethodDecl *Method = VtableComponent.getFunctionDecl(); 383 if (Method->getCanonicalDecl()->isInlined()) 399 const CXXMethodDecl *Method = VtableComponent.getFunctionDecl(); 400 if (Method->getVisibility() == Visibility::HiddenVisibility && 401 !Method->isDefined()) 485 // For PNaCl, use ARM-style method pointers so that PNaCl code 506 /// In the Itanium and ARM ABIs, method pointers have the form: 510 /// - method pointers are virtual if (memptr.ptr & 1) is nonzero 515 /// - method pointers are virtual if (memptr.adj & 1) is nonzero [all...] |
/external/webrtc/talk/session/media/ |
channel_unittest.cc | 286 // Calling "_w" method here is ok since we only use one thread for this test 427 typedef bool (ChannelTest<T>::*Method)(); 428 CallThread(ChannelTest<T>* obj, Method method, bool* result) 430 method_(method), 442 Method method_; 445 void CallOnThread(typename CallThread::Method method, bool* result) { 446 CallThread* thread = new CallThread(this, method, result); 451 void CallOnThreadAndWaitForDone(typename CallThread::Method method [all...] |
/external/clang/lib/AST/ |
ASTContext.cpp | 410 // Add redeclared method here. [all...] |
/art/runtime/mirror/ |
class.h | 58 class Method; 69 // Interface method table size. Increasing this value reduces the chance of two interface methods 70 // colliding in the interface method table but increases the size of classes that implement 299 // Mutually exclusive from whether or not each method is allowed to skip access checks. 613 // method has been exposed by a public sub-class 648 // Can this class access a resolved method? 744 // Use only when we are allocating populating the method arrays. [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TransformerImpl.java | 52 import org.apache.xml.serializer.Method; 170 private OutputProperties m_textformat = new OutputProperties(Method.TEXT); 176 // * postExceptionFromThread method. This is needed if the transform is 274 * which is set by the TransformerFactory.setAttribut() method before a 282 * which is set by the TransformerFactory.setAttribut() method before a 290 * which is set by the TransformerFactory.setAttribut() method before a 311 * method to obtain the root of the source tree to be transformed. 508 * Return true if the transform was initiated from the transform method, 771 * This method is used to set or override the value 782 * <li>method 880 String method = (String) oformat.get(OutputKeys.METHOD); local 1014 String method = format.getProperty(OutputKeys.METHOD); local [all...] |
/external/clang/include/clang/Parse/ |
Parser.h | 356 /// ConsumeAnyToken - Dispatch to the right Consume* method based on the 374 /// ConsumeParen - This consume method keeps the paren count up-to-date. 377 assert(isTokenParen() && "wrong consume method"); 387 /// ConsumeBracket - This consume method keeps the bracket count up-to-date. 390 assert(isTokenBracket() && "wrong consume method"); 401 /// ConsumeBrace - This consume method keeps the brace count up-to-date. 404 assert(isTokenBrace() && "wrong consume method"); 416 /// and returning the token kind. This method is specific to strings, as it 421 "Should only consume string literals with this method"); 536 /// Note that this differs from the Preprocessor's LookAhead method, becaus [all...] |
/external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/ |
DeqpTestRunner.java | 55 import java.lang.reflect.Method; 95 // !NOTE: There's a static method copyOptions() for copying options during split. [all...] |
/external/doclava/src/com/google/doclava/ |
Doclava.java | 36 import java.lang.reflect.Method; [all...] |
/external/guice/extensions/multibindings/test/com/google/inject/multibindings/ |
MapBinderTest.java | 67 import java.lang.reflect.Method; [all...] |
MultibinderTest.java | 76 import java.lang.reflect.Method; 363 // A simple example of a type whose toString returns more information than its equals method [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
SerializationStressTest4.java | 25 import java.lang.reflect.Method; 64 // Test for method void 96 // Test for method void 129 // Test for method void 162 // Test for method void 191 // Test for method void 230 // Test for method void 281 // Test for method void 309 // Test for method void 351 // Test for method voi [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridModel.java | 66 import java.lang.reflect.Method; 603 Method getLayoutParams = null; [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | 715 if (ObjCMethodDecl *Method = Reader.GetLocalDeclAs<ObjCMethodDecl>( 717 Result.Instance.push_back(Method); 722 if (ObjCMethodDecl *Method = Reader.GetLocalDeclAs<ObjCMethodDecl>( 724 Result.Factory.push_back(Method); [all...] |