HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 101 - 125 of 4017) sorted by null

1 2 3 45 6 7 8 91011>>

  /art/test/004-annotations/src/android/test/
package-info.java 2 package android.test;
  /dalvik/dx/tests/049-dex-instanceof/
Blort.java 19 public static boolean test(Object x) { method in class:Blort
  /dalvik/dx/tests/050-dex-checkcast/
Blort.java 19 public static Blort test(Object x) { method in class:Blort
  /dalvik/tests/004-annotations/src/android/test/
package-info.java 2 package android.test;
  /external/chromium/third_party/libevent/test/
test.sh 12 test () { function
13 if ./test-init 2>/dev/null ;
17 echo Skipping test
21 echo -n " test-eof: "
22 if ./test-eof >/dev/null ;
28 echo -n " test-weof: "
29 if ./test-weof >/dev/null ;
35 echo -n " test-time: "
36 if ./test-time >/dev/null ;
58 test
    [all...]
  /external/chromium_org/ash/test/
test_suite_init.h 6 namespace test { namespace in namespace:ash
10 } // namespace test
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_test_helpers.h 14 namespace test { namespace
31 // (Logically, we should use |string16|s, but it's more convenient for test
45 } // namespace test
  /external/chromium_org/content/test/data/fileapi/
create_test.js 11 function test() function
request_test.js 11 function test() function
  /external/chromium_org/content/test/data/indexeddb/
database_test.js 5 function test() { function
migration_test.js 5 function test() { function
  /external/chromium_org/third_party/icu/source/test/intltest/
itrbbi.cpp 12 * IntlTestRBBI is the medium level test class for RuleBasedBreakIterator
31 RBBIAPITest test; local
32 callTest( test, par );
40 RBBITest test; local
41 callTest( test, par );
  /external/chromium_org/third_party/libevent/test/
test.sh 12 test () { function
13 if ./test-init 2>/dev/null ;
17 echo Skipping test
21 echo -n " test-eof: "
22 if ./test-eof >/dev/null ;
28 echo -n " test-weof: "
29 if ./test-weof >/dev/null ;
35 echo -n " test-time: "
36 if ./test-time >/dev/null ;
58 test
    [all...]
  /external/chromium_org/tools/gyp/test/build-option/
gyptest-build.py 14 test = TestGyp.TestGyp(workdir='workarea_default') variable
16 test.run_gyp('hello.gyp', '--build=Default')
18 test.run_built_executable('hello', stdout="Hello, world!\n")
20 test.up_to_date('hello.gyp', test.DEFAULT)
22 test.pass_test()
  /external/chromium_org/tools/gyp/test/compilable/
gyptest-headers.py 14 test = TestGyp.TestGyp() variable
16 test.run_gyp('headers.gyp', chdir='src')
18 test.relocate('src', 'relocate/src')
20 test.build('headers.gyp', test.ALL, chdir='relocate/src')
26 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
29 test.pass_test()
  /external/chromium_org/tools/gyp/test/configurations/basics/
gyptest-configurations.py 13 test = TestGyp.TestGyp() variable
15 test.run_gyp('configurations.gyp')
17 test.set_configuration('Release')
18 test.build('configurations.gyp')
19 test.run_built_executable('configurations', stdout="Release configuration\n")
21 test.set_configuration('Debug')
22 test.build('configurations.gyp')
23 test.run_built_executable('configurations', stdout="Debug configuration\n")
25 test.set_configuration('Foo')
26 test.build('configurations.gyp'
    [all...]
  /external/chromium_org/tools/gyp/test/custom-generator/
gyptest-custom-generator.py 6 """Test that custom generators can be passed to --format
11 test = TestGyp.TestGypCustom(format='mygenerator.py') variable
12 test.run_gyp('test.gyp')
16 test.must_match('MyBuildFile', 'Testing...\n')
18 test.pass_test()
  /external/chromium_org/tools/gyp/test/dependencies/
gyptest-double-dependency.py 9 shared_library targets. Regression test for http://crbug.com/122588
14 test = TestGyp.TestGyp() variable
16 test.run_gyp('double_dependency.gyp')
19 test.pass_test()
gyptest-extra-targets.py 13 test = TestGyp.TestGyp() variable
15 test.run_gyp('extra_targets.gyp')
19 test.build('extra_targets.gyp', test.ALL)
21 test.pass_test()
  /external/chromium_org/tools/gyp/test/exclusion/
gyptest-exclusion.py 14 test = TestGyp.TestGyp() variable
16 test.run_gyp('exclusion.gyp')
17 test.build('exclusion.gyp')
20 test.built_file_must_exist('hello' + test._exe, test.EXECUTABLE, bare=True)
22 test.pass_test()
  /external/chromium_org/tools/gyp/test/external-cross-compile/
gyptest-cross.py 14 test = TestGyp.TestGyp() variable
16 test.run_gyp('cross.gyp', chdir='src')
18 test.relocate('src', 'relocate/src')
20 test.build('cross.gyp', test.ALL, chdir='relocate/src')
28 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
31 test.pass_test()
  /external/chromium_org/tools/gyp/test/hello/
gyptest-all.py 14 test = TestGyp.TestGyp(workdir='workarea_all') variable
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp', test.ALL)
20 test.run_built_executable('hello', stdout="Hello, world!\n")
22 test.up_to_date('hello.gyp', test.ALL)
24 test.pass_test()
gyptest-default.py 14 test = TestGyp.TestGyp(workdir='workarea_default') variable
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp')
20 test.run_built_executable('hello', stdout="Hello, world!\n")
22 test.up_to_date('hello.gyp', test.DEFAULT)
24 test.pass_test()
gyptest-disable-regyp.py 14 test = TestGyp.TestGyp() variable
16 test.run_gyp('hello.gyp', '-Gauto_regeneration=0')
18 test.build('hello.gyp', test.ALL)
20 test.run_built_executable('hello', stdout="Hello, world!\n")
24 test.sleep()
25 test.write('hello.gyp', test.read('hello2.gyp'))
27 test.build('hello.gyp', test.ALL
    [all...]
gyptest-regyp.py 15 test = TestGyp.TestGyp(formats=['make']) variable
17 test.run_gyp('hello.gyp')
19 test.build('hello.gyp', test.ALL)
21 test.run_built_executable('hello', stdout="Hello, world!\n")
25 test.sleep()
26 test.write('hello.gyp', test.read('hello2.gyp'))
28 test.build('hello.gyp', test.ALL
    [all...]

Completed in 225 milliseconds

1 2 3 45 6 7 8 91011>>