/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_imageop.py | 47 def check(self, name, *extra): member in class:InputValidationTests 55 self.check("grey2mono", 128) 56 self.check("grey2grey4") 57 self.check("grey2grey2") 58 self.check("dither2mono") 59 self.check("dither2grey2") 60 self.check("mono2grey", 0, 0) 61 self.check("grey22grey") 62 self.check("rgb2rgb8") # nlen*4 == len 63 self.check("rgb82rgb" [all...] |
test_rfc822.py | 37 def check(self, msg, results): member in class:MessageTestCase 38 """Check addresses and the date.""" 68 self.check( 78 self.check( 87 self.check( 98 self.check( 107 self.check( 124 self.check( 132 self.check( 138 self.check( [all...] |
/prebuilts/go/darwin-x86/test/bench/shootout/ |
binary-tree.c | 119 "stretch tree of depth %u\t check: %li\n", 130 long i, iterations, check; local 134 check = 0; 139 check += ItemCheck(tempTree); 143 check += ItemCheck(tempTree); 149 "%li\t trees of depth %u\t check: %li\n", 152 check 158 "long lived tree of depth %u\t check: %li\n",
|
/prebuilts/go/linux-x86/test/bench/shootout/ |
binary-tree.c | 119 "stretch tree of depth %u\t check: %li\n", 130 long i, iterations, check; local 134 check = 0; 139 check += ItemCheck(tempTree); 143 check += ItemCheck(tempTree); 149 "%li\t trees of depth %u\t check: %li\n", 152 check 158 "long lived tree of depth %u\t check: %li\n",
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
check.py | 1 """distutils.command.check 3 Implements the Distutils 'check' command. 38 class check(Command): class in inherits:Command 47 'Will exit with an error if a check fails')]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tabnanny.py | 9 check() described below. 30 __all__ = ["check", "NannyNag", "process_tokens"] 58 check(arg) 63 Captured and handled in check(). 74 def check(file): function 75 """check(file_or_dir) 93 check(fullname) 300 # there's nothing we need to check here! what's important is
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_imageop.py | 47 def check(self, name, *extra): member in class:InputValidationTests 55 self.check("grey2mono", 128) 56 self.check("grey2grey4") 57 self.check("grey2grey2") 58 self.check("dither2mono") 59 self.check("dither2grey2") 60 self.check("mono2grey", 0, 0) 61 self.check("grey22grey") 62 self.check("rgb2rgb8") # nlen*4 == len 63 self.check("rgb82rgb" [all...] |
test_rfc822.py | 37 def check(self, msg, results): member in class:MessageTestCase 38 """Check addresses and the date.""" 68 self.check( 78 self.check( 87 self.check( 98 self.check( 107 self.check( 124 self.check( 132 self.check( 138 self.check( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
check.py | 1 """distutils.command.check 3 Implements the Distutils 'check' command. 38 class check(Command): class in inherits:Command 47 'Will exit with an error if a check fails')]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tabnanny.py | 9 check() described below. 30 __all__ = ["check", "NannyNag", "process_tokens"] 58 check(arg) 63 Captured and handled in check(). 74 def check(file): function 75 """check(file_or_dir) 93 check(fullname) 300 # there's nothing we need to check here! what's important is
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_imageop.py | 47 def check(self, name, *extra): member in class:InputValidationTests 55 self.check("grey2mono", 128) 56 self.check("grey2grey4") 57 self.check("grey2grey2") 58 self.check("dither2mono") 59 self.check("dither2grey2") 60 self.check("mono2grey", 0, 0) 61 self.check("grey22grey") 62 self.check("rgb2rgb8") # nlen*4 == len 63 self.check("rgb82rgb" [all...] |
test_rfc822.py | 37 def check(self, msg, results): member in class:MessageTestCase 38 """Check addresses and the date.""" 68 self.check( 78 self.check( 87 self.check( 98 self.check( 107 self.check( 124 self.check( 132 self.check( 138 self.check( [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/formatting/ |
AndroidXmlFormattingStrategyTest.java | 31 private void check(String before, int replaceStart, int replaceEnd, String formatted, method in class:AndroidXmlFormattingStrategyTest 66 private void check( method in class:AndroidXmlFormattingStrategyTest 78 check(before, replaceStart, replaceEnd, insert, expected, prefs); method 82 check( 108 check( 137 check( 163 check( 209 check( 235 check( 264 check( [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/wizards/templates/ |
FmClassNameToResourceMethodTest.java | 29 private void check(String s, String expected) throws TemplateModelException { method in class:FmClassNameToResourceMethodTest 36 check("FooActivity", "foo"); 40 check("FooActiv", "foo"); 44 check("Foo", "foo"); 48 check("", ""); 52 check("FooFragment", "foo"); 56 check("FooService", "foo"); 60 check("FooProvider", "foo"); 64 check("FooBar", "foo_bar");
|
FmEscapeXmlStringMethodTest.java | 29 private void check(String s, String expected) throws TemplateModelException { method in class:FmEscapeXmlStringMethodTest 36 check("", ""); 40 check("foo", "foo"); 44 check(" Foo Bar ", "\" Foo Bar \""); 48 check("@foo", "\\@foo"); 52 check("Hello\nWorld", "Hello\\nWorld"); 56 check("A & B", "A & B"); 60 check("Foo's Bar", "Foo\\'s Bar"); 64 check("'\"\\", "\\'\\\"\\\\");
|
/build/tools/zipalign/ |
ZipAlign.cpp | 39 fprintf(stderr, " -c: check alignment only (does not modify file)\n"); 136 /* this mode isn't supported -- do a trivial check */ 226 bool check = false; local 249 check = true; 276 if (!((check && argc == 2) || (!check && argc == 3))) { 288 if (check) { 289 /* check existing archive for correct alignment */
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
ListenerTest.java | 47 * The received argument list before check() is called. 57 * Check the callback with the expected argument is invoked successfully within 65 public boolean check(ListenerArgument arg, long msec) throws InterruptedException { method in class:ListenerTest 68 return check(argList, msec); 72 * Check the callbacks with the expected argument are all invoked successfully 80 public synchronized boolean check(List<ListenerArgument> argList, long msec) method in class:ListenerTest
|
/cts/tests/app/app/src/android/app/stubs/ |
IntentServiceStub.java | 55 protected boolean check() { method
|
/cts/tests/app/src/android/app/cts/ |
IntentServiceTest.java | 62 PollingCheck.check("onHandleIntentCalled not called enough", TIMEOUT_MSEC, 70 PollingCheck.check("accumulator not correct", TIMEOUT_MSEC, new Callable<Boolean>() { 77 PollingCheck.check("onDestroyCalled not called", TIMEOUT_MSEC, new Callable<Boolean>() { 89 protected boolean check() { method 100 protected boolean check() { method
|
/cts/tests/tests/view/src/android/view/cts/ |
FrameMetricsListenerTest.java | 103 protected boolean check() { method 179 protected boolean check() { method 235 protected boolean check() { method
|
View_AnimationTest.java | 120 protected boolean check() { method
|
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
InputMethodManagerTest.java | 72 protected boolean check() { method 93 protected boolean check() { method
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
WebBackForwardListTest.java | 88 protected boolean check() { method
|
WebHistoryItemTest.java | 100 protected boolean check() { method
|
/cts/tests/tests/widget/src/android/widget/cts/ |
ExpandableListViewBasicTest.java | 51 protected boolean check() { method
|