Searched refs:expect (Results 26 - 50 of 540) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gyp/test/actions/
H A Dgyptest-errors.py18 expect = [ variable
21 test.must_contain_all_lines(test.stderr(), expect)
/external/chromium_org/tools/gyp/test/defines/
H A Dgyptest-defines-env.py25 expect = """\
28 test.run_built_executable('defines', stdout=expect)
43 expect = """\
46 test.run_built_executable('defines', stdout=expect)
61 expect = """\
64 test.run_built_executable('defines', stdout=expect)
79 expect = """\
82 test.run_built_executable('defines', stdout=expect)
H A Dgyptest-defines-env-regyp.py31 expect = """\
37 test.run_built_executable('defines', stdout=expect)
46 expect = """\
49 test.run_built_executable('defines', stdout=expect)
H A Dgyptest-defines.py17 expect = """\
32 expect += """HASH_VALUE is a#1
37 test.run_built_executable('defines', stdout=expect)
/external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
H A Dmat2-spec.js42 it("should return a 4 element array initialized to a 2x2 identity matrix", function() { expect(result).toBeEqualish(identity); });
47 it("should return a 4 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); });
52 it("should place values into out", function() { expect(out).toBeEqualish(matA); });
53 it("should return out", function() { expect(result).toBe(out); });
58 it("should place values into out", function() { expect(result).toBeEqualish(identity); });
59 it("should return out", function() { expect(result).toBe(out); });
66 it("should place values into out", function() { expect(out).toBeEqualish([1, 3, 2, 4]); });
67 it("should return out", function() { expect(result).toBe(out); });
68 it("should not modify matA", function() { expect(matA).toBeEqualish([1, 2, 3, 4]); });
74 it("should place values into matA", function() { expect(mat
[all...]
/external/lldb/test/functionalities/command_script/
H A DTestCommandScript.py28 self.expect("file " + exe,
55 self.expect('welcome Enrico',
58 self.expect("help welcome",
62 self.expect("help",
66 self.expect("help -a",
70 self.expect("help -u", matching=False,
76 self.expect('welcome Enrico', matching=False, error=True,
79 self.expect('targetname',
82 self.expect('targetname fail', error=True,
85 self.expect('comman
[all...]
/external/lldb/test/lang/objc/objc-new-syntax/
H A DTestObjCNewSyntax.py53 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
58 self.expect("breakpoint list -f", BREAKPOINT_HIT_ONCE,
67 self.expect("expr --object-description -- immutable_array[0]", VARIABLES_DISPLAYED_CORRECTLY,
70 self.expect("expr --object-description -- mutable_array[0]", VARIABLES_DISPLAYED_CORRECTLY,
73 self.expect("expr --object-description -- mutable_array[0] = @\"bar\"", VARIABLES_DISPLAYED_CORRECTLY,
76 self.expect("expr --object-description -- mutable_array[0]", VARIABLES_DISPLAYED_CORRECTLY,
79 self.expect("expr --object-description -- immutable_dictionary[@\"key\"]", VARIABLES_DISPLAYED_CORRECTLY,
82 self.expect("expr --object-description -- mutable_dictionary[@\"key\"]", VARIABLES_DISPLAYED_CORRECTLY,
85 self.expect("expr --object-description -- mutable_dictionary[@\"key\"] = @\"object\"", VARIABLES_DISPLAYED_CORRECTLY,
88 self.expect("exp
[all...]
/external/chromium_org/tools/gyp/test/cxxflags/
H A Dgyptest-cxxflags.py28 expect = """\
31 test.run_built_executable('cxxflags', stdout=expect)
40 expect = """\
43 test.run_built_executable('cxxflags', stdout=expect)
/external/chromium_org/tools/gyp/test/include_dirs/
H A Dgyptest-all.py21 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)
H A Dgyptest-default.py21 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/lldb/test/lang/objc/rdar-11355592/
H A DTestRdar11355592.py50 self.expect("frame variable my_string", substrs = ['const char *'])
51 self.expect("frame variable my_string --dynamic-type run-target", substrs = ['const char *'])
53 self.expect("expr my_string", substrs = ['const char *'])
54 self.expect("expr -d run -- my_string", substrs = ['const char *'])
56 self.expect("frame variable my_foolie", substrs = ['FoolMeOnce *'])
57 self.expect("frame variable my_foolie --dynamic-type run-target", substrs = ['FoolMeOnce *'])
59 self.expect("expr my_foolie", substrs = ['FoolMeOnce *'])
60 self.expect("expr -d run -- my_foolie", substrs = ['FoolMeOnce *'])
64 self.expect("frame variable my_string", substrs = ['const char *'])
65 self.expect("fram
[all...]
/external/chromium_org/tools/gyp/test/configurations/inheritance/
H A Dgyptest-duplicates.py28 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/variables/filelist/
H A Dgyptest-filelist.py23 expect = 'John\nJacob\nJingleheimer\nSchmidt\n' variable
24 if not test.match(contents, expect):
26 test.diff(expect, contents, 'src/dummy_foo')
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/
H A DTestDataFormatterStdList.py46 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
66 self.expect("frame variable numbers_list --raw", matching=False,
69 self.expect("frame variable &numbers_list._M_impl._M_node --raw", matching=False,
73 self.expect("frame variable numbers_list",
77 self.expect("p numbers_list",
83 self.expect("frame variable numbers_list",
90 self.expect("frame variable numbers_list",
103 self.expect("frame variable numbers_list",
115 self.expect("p numbers_list",
128 self.expect("fram
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/
H A DTestDataFormatterLibcxxMultiSet.py42 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
58 self.expect('image list',substrs=['libc++.1.dylib','libc++abi.dylib'])
60 self.expect("frame variable ii",substrs = ["size=0","{}"])
62 self.expect("frame variable ii",substrs = ["size=6","[0] = 0","[1] = 1", "[2] = 2", "[3] = 3", "[4] = 4", "[5] = 5"])
64 self.expect("frame variable ii",substrs = ["size=7","[2] = 2", "[3] = 3", "[6] = 6"])
65 self.expect("p ii",substrs = ["size=7","[2] = 2", "[3] = 3", "[6] = 6"])
66 self.expect("frame variable ii[2]",substrs = [" = 2"])
68 self.expect("frame variable ii",substrs = ["size=0","{}"])
70 self.expect("frame variable ii",substrs = ["size=0","{}"])
71 self.expect("fram
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/
H A DTestDataFormatterLibcxxSet.py42 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
58 self.expect('image list',substrs=['libc++.1.dylib','libc++abi.dylib'])
60 self.expect("frame variable ii",substrs = ["size=0","{}"])
62 self.expect("frame variable ii",substrs = ["size=6","[0] = 0","[1] = 1", "[2] = 2", "[3] = 3", "[4] = 4", "[5] = 5"])
64 self.expect("frame variable ii",substrs = ["size=7","[2] = 2", "[3] = 3", "[6] = 6"])
65 self.expect("frame variable ii[2]",substrs = [" = 2"])
66 self.expect("p ii",substrs = ["size=7","[2] = 2", "[3] = 3", "[6] = 6"])
68 self.expect("frame variable ii",substrs = ["size=0","{}"])
70 self.expect("frame variable ii",substrs = ["size=0","{}"])
71 self.expect("fram
[all...]
/external/chromium_org/tools/gyp/test/variables/commands/
H A Dgyptest-commands-ignore-env.py23 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/mojo/apps/js/bindings/
H A Dsample_service_unittests.js8 "gin/test/expect",
12 ], function(console, hexdump, expect, sample, imported, imported2) {
61 expect(foo.name).toBe("foopy");
62 expect(foo.x).toBe(1);
63 expect(foo.y).toBe(2);
64 expect(foo.a).toBeFalsy();
65 expect(foo.b).toBeTruthy();
66 expect(foo.c).toBeFalsy();
67 expect(foo.bar.alpha).toBe(20);
68 expect(fo
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/
H A DTestDataFormatterStdMap.py49 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
69 self.expect('frame variable ii',
75 self.expect('frame variable ii',
86 self.expect('frame variable ii',
97 self.expect("frame variable ii",
106 self.expect("p ii",
116 self.expect("frame variable ii[0]",
119 self.expect("frame variable ii[3]",
123 self.expect("frame variable ii[8]", matching=True,
134 #self.expect("expressio
[all...]
/external/lldb/test/help/
H A DTestHelp.py18 self.expect("help",
21 self.expect("help", matching=False,
24 self.expect("help -a", matching=True,
29 self.expect("help help", matching=True,
70 self.expect("help arch",
75 self.expect("help version",
85 self.expect("version",
95 self.expect("settings set term-width 0",
99 self.expect("help",
105 self.expect("hel
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-categories/
H A DTestDataFormatterCategories.py43 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
67 self.expect("frame variable r1 r2 r3", matching=False,
74 self.expect("frame variable r1 r2 r3", matching=True,
82 self.expect("frame variable r1 r2 r3",
90 self.expect("frame variable r1 r2 r3",
98 self.expect("frame variable r1 r2 r3",
110 self.expect("frame variable r1 r2 r3",
117 self.expect("frame variable r1 r2 r3",
126 self.expect("frame variable r1 r2 r3",
135 self.expect("fram
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/
H A DTestDataFormatterLibccIterator.py44 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
60 self.expect('image list',substrs=['libc++.1.dylib','libc++abi.dylib'])
62 self.expect('frame variable ivI', substrs = ['item = 3'])
63 self.expect('expr ivI', substrs = ['item = 3'])
65 self.expect('frame variable iimI', substrs = ['first = 0','second = 12'])
66 self.expect('expr iimI', substrs = ['first = 0','second = 12'])
68 self.expect('frame variable simI', substrs = ['first = "world"','second = 42'])
69 self.expect('expr simI', substrs = ['first = "world"','second = 42'])
71 self.expect('frame variable svI', substrs = ['item = "hello"'])
72 self.expect('exp
[all...]
/external/lldb/test/functionalities/data-formatter/rdar-12529957/
H A DTestRdar12529957.py45 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
60 self.expect('frame variable set',
62 self.expect('frame variable mutable',
64 self.expect('frame variable set --ptr-depth 1 -d run -T',
66 self.expect('frame variable mutable --ptr-depth 1 -d run -T',
70 self.expect('frame variable mutable',
74 self.expect('frame variable mutable',
76 self.expect('frame variable mutable --ptr-depth 1 -d run -T',
80 self.expect('frame variable mutable',
82 self.expect('fram
[all...]
/external/lldb/test/lang/c/strings/
H A DTestCStrings.py40 self.expect("expression -- a[2]",
43 self.expect("expression -- z[2]",
47 self.expect("expression -- (int)strlen(\"hello\")",
50 self.expect("expression -- \"world\"[2]",
53 self.expect("expression -- \"\"[0]",
56 self.expect("expr --raw -- \"hello\"",
60 self.expect("p \"hello\"",
63 self.expect("p (char*)\"hello\"",
67 self.expect("p (int)strlen(\"\")",
70 self.expect("expressio
[all...]
/external/lldb/test/functionalities/command_history/
H A DTestCommandHistory.py28 self.expect ("command history -s 3 -c 3", inHistory=True,
31 self.expect ("command history -s 3 -e 3", inHistory=True,
34 self.expect ("command history -s 6 -e 7", inHistory=True,
37 self.expect ("command history -c 2", inHistory=True,
40 self.expect ("command history -e 3 -c 1", inHistory=True,
43 self.expect ("command history -e 2", inHistory=True,
46 self.expect ("command history -s 12", inHistory=True,
49 self.expect ("command history -s end -c 3", inHistory=True,
52 self.expect ("command history -s end -e 15", inHistory=True,
55 self.expect ("comman
[all...]

Completed in 384 milliseconds

1234567891011>>