HomeSort by relevance Sort by last modified time
    Searched refs:expect (Results 1 - 25 of 704) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/include_dirs/
gyptest-all.py 21 expect = """\
28 test.run_built_executable('includes', stdout=expect, chdir='relocate/src')
35 expect = """\
41 test.run_built_executable('subdir_includes', stdout=expect, chdir=chdir)
gyptest-default.py 21 expect = """\
28 test.run_built_executable('includes', stdout=expect, chdir='relocate/src')
35 expect = """\
41 test.run_built_executable('subdir_includes', stdout=expect, chdir=chdir)
  /external/chromium_org/tools/gyp/test/cflags/
gyptest-cflags.py 28 expect = """FOO not defined\n"""
29 test.run_built_executable('cflags', stdout=expect)
30 test.run_built_executable('cflags_host', stdout=expect)
39 expect = """FOO defined\n"""
40 test.run_built_executable('cflags', stdout=expect)
43 expect = """FOO not defined\n"""
44 test.run_built_executable('cflags_host', stdout=expect)
52 expect = """FOO not defined\n"""
53 test.run_built_executable('cflags', stdout=expect)
61 expect = """FOO defined\n""
    [all...]
  /system/security/keystore/
test-keystore 34 function expect() { function
72 expect "1 No error"
80 expect "6 Permission denied"
84 expect "3 Uninitialized"
89 expect "1 No error"
91 expect "-rw------- keystore keystore 84 .masterkey"
95 expect "1 No error"
99 expect "5 Protocol error"
103 expect "1 No error"
107 expect "1 No error
    [all...]
  /external/chromium_org/tools/gyp/test/variables/filelist/
gyptest-filelist-golden.py 18 expect = test.read('filelist.gyp.stdout') variable
20 expect = expect.replace('/', r'\\').replace('\r\n', '\n') variable
24 stdout=expect, ignore_line_numbers=True)
37 expect = test.read('filelist.gypd.golden').replace('\r', '') variable
38 if not test.match(contents, expect):
40 test.diff(expect, contents, 'src/filelist.gypd ')
44 expect = 'John\nJacob\nJingleheimer\nSchmidt\n' variable
45 if not test.match(contents, expect):
47 test.diff(expect, contents, 'src/names.txt '
    [all...]
  /bootable/recovery/edify/
main.c 26 int expect(const char* expr_str, const char* expected, int* errors) { function
74 expect("a", "a", &errors);
75 expect("\"a\"", "a", &errors);
76 expect("\"\\x61\"", "a", &errors);
77 expect("# this is a comment\n"
84 expect("a; b; c", "c", &errors);
87 expect("a + b", "ab", &errors);
88 expect("a + \n \"b\"", "ab", &errors);
89 expect("a + b +\nc\n", "abc", &errors);
92 expect("concat(a, b)", "ab", &errors)
    [all...]
  /external/chromium_org/tools/gyp/test/variables/commands/
gyptest-commands-repeated.py 16 expect = test.read('commands-repeated.gyp.stdout').replace('\r\n', '\n') variable
20 stdout=expect, ignore_line_numbers=True)
32 expect = test.read('commands-repeated.gypd.golden').replace('\r\n', '\n') variable
33 if not test.match(contents, expect):
35 test.diff(expect, contents, 'commands-repeated.gypd ')
gyptest-commands.py 17 expect = test.read('commands.gyp.stdout').replace('\r', '') variable
21 stdout=expect, ignore_line_numbers=True)
33 expect = test.read('commands.gypd.golden').replace('\r', '') variable
34 if not test.match(contents, expect):
36 test.diff(expect, contents, 'commands.gypd ')
gyptest-commands-ignore-env.py 23 expect = test.read('commands.gyp.ignore-env.stdout').replace('\r\n', '\n') variable
28 stdout=expect, ignore_line_numbers=True)
40 expect = test.read('commands.gypd.golden').replace('\r', '') variable
41 if not test.match(contents, expect):
43 test.diff(expect, contents, 'commands.gypd ')
  /external/chromium_org/tools/gyp/test/configurations/inheritance/
gyptest-duplicates.py 28 expect = test.read('duplicates.gypd.golden').replace('\r', '') variable
29 if not test.match(contents, expect):
31 test.diff(expect, contents, 'duplicates.gypd ')
  /external/chromium_org/tools/gyp/test/defines/
gyptest-defines.py 17 expect = """\
32 expect += """HASH_VALUE is a#1
37 test.run_built_executable('defines', stdout=expect)
gyptest-defines-env-regyp.py 31 expect = """\
37 test.run_built_executable('defines', stdout=expect)
46 expect = """\
49 test.run_built_executable('defines', stdout=expect)
  /system/extras/tests/bionic/libc/bionic/
test_mutex.c 46 #define expect(call,result) \ macro
62 expect( pthread_mutexattr_init( &attr ), 0 );
64 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_NORMAL ), 0 );
65 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
68 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_ERRORCHECK ), 0 );
69 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
72 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE ), 0 );
73 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
77 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_NORMAL ), 0 );
78 expect( pthread_mutex_init( &lock, &attr ), 0 )
    [all...]
  /external/chromium_org/tools/gyp/test/rules/
gyptest-all.py 24 expect = """\
34 test.run_built_executable('program', chdir=chdir, stdout=expect)
36 expect = """\
45 test.run_built_executable('program2', chdir=chdir, stdout=expect)
62 expect = """\
71 test.run_built_executable('program4', chdir=chdir, stdout=expect)
gyptest-input-root.py 21 expect = """\
25 test.run_built_executable('test', chdir='relocate/src', stdout=expect)
gyptest-default.py 21 expect = """\
31 test.run_built_executable('program', chdir=chdir, stdout=expect)
33 expect = """\
42 test.run_built_executable('program2', chdir=chdir, stdout=expect)
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
ReturnTest.java 61 String expect = retval.getText(); local
63 if ( expect.charAt(0)=='"' && expect.charAt(expect.length()-1)=='"' ) {
64 expect = expect.substring(1, expect.length()-1);
67 return expect;
  /external/chromium_org/tools/gyp/test/actions/
gyptest-errors.py 18 expect = [ variable
21 test.must_contain_all_lines(test.stderr(), expect)
  /external/chromium_org/tools/gyp/test/compilable/
gyptest-headers.py 22 expect = """\
26 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
  /external/chromium_org/tools/gyp/test/external-cross-compile/
gyptest-cross.py 22 expect = """\
28 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
  /external/chromium_org/tools/gyp/test/rules-rebuild/
gyptest-default.py 23 expect = """\
29 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
41 expect = """\
47 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
59 expect = """\
65 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
80 expect = """\
86 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
  /external/chromium_org/tools/gyp/test/same-source-file-name/
gyptest-pass-executable.py 24 expect = """\
31 test.run_built_executable('prog3', chdir='relocate/src', stdout=expect)
  /external/chromium_org/tools/gyp/test/cxxflags/
gyptest-cxxflags.py 28 expect = """\
31 test.run_built_executable('cxxflags', stdout=expect)
40 expect = """\
43 test.run_built_executable('cxxflags', stdout=expect)
  /external/lldb/test/pexpect-2.4/examples/
ftp.py 13 child.expect('(?i)name .*: ')
15 child.expect('(?i)password')
17 child.expect('ftp> ')
19 child.expect('ftp> ')
21 child.expect('ftp> ')
23 child.expect('ftp> ')
25 child.expect('ftp> ')
  /external/lldb/test/functionalities/data-formatter/data-formatter-smart-array/
TestDataFormatterSmartArray.py 43 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
59 self.expect("frame variable data",
64 self.expect("frame variable strptr",
68 self.expect("frame variable other.strptr",
74 self.expect("frame variable strarr",
78 self.expect("frame variable other.strarr",
82 self.expect("p strarr",
86 self.expect("p other.strarr",
93 self.expect("frame variable strptr",
97 self.expect("frame variable other.strptr"
    [all...]

Completed in 847 milliseconds

1 2 3 4 5 6 7 8 91011>>