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

1 2 34 5 6 7 8 91011>>

  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/
TestDataFormatterLibcxxList.py 46 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
66 self.expect("frame variable numbers_list --raw", matching=False,
70 self.expect("frame variable numbers_list",
74 self.expect("p numbers_list",
80 self.expect("frame variable numbers_list",
87 self.expect("frame variable numbers_list",
100 self.expect("frame variable numbers_list",
112 self.expect("p numbers_list",
125 self.expect("frame variable numbers_list[0]",
127 self.expect("frame variable numbers_list[1]"
    [all...]
  /external/lldb/test/lang/objc/rdar-11355592/
TestRdar11355592.py 50 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("frame variable my_string --dynamic-type run-target", substrs = ['const char *']
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_eof.py 9 expect = "EOL while scanning string literal (<string>, line 1)"
14 self.assertEqual(str(msg), expect)
19 expect = ("EOF while scanning triple-quoted string literal "
24 self.assertEqual(str(msg), expect)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_eof.py 9 expect = "EOL while scanning string literal (<string>, line 1)"
14 self.assertEqual(str(msg), expect)
19 expect = ("EOF while scanning triple-quoted string literal "
24 self.assertEqual(str(msg), expect)
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
mat4-spec.js 51 it("should return a 16 element array initialized to a 4x4 identity matrix", function() { expect(result).toBeEqualish(identity); });
56 it("should return a 16 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); });
61 it("should place values into out", function() { expect(out).toBeEqualish(matA); });
62 it("should return out", function() { expect(result).toBe(out); });
67 it("should place values into out", function() { expect(result).toBeEqualish(identity); });
68 it("should return out", function() { expect(result).toBe(out); });
76 expect(out).toBeEqualish([
83 it("should return out", function() { expect(result).toBe(out); });
85 expect(matA).toBeEqualish([
98 expect(matA).toBeEqualish(
    [all...]
  /external/lldb/test/functionalities/breakpoint/breakpoint_locations/
TestBreakpointLocations.py 43 self.expect("breakpoint list -f", "Breakpoint locations shown correctly",
49 self.expect("breakpoint disable 3.*",
55 self.expect("breakpoint disable 1.*", "All 3 breakpoint locatons disabled correctly",
62 self.expect("process status", "No stopping on any disabled breakpoint",
66 self.expect("breakpoint enable 1.*", "All 3 breakpoint locatons enabled correctly",
70 self.expect("breakpoint disable 1.1", "1 breakpoint locatons disabled correctly",
77 self.expect("thread backtrace", STOPPED_DUE_TO_BREAKPOINT,
84 self.expect("thread backtrace", STOPPED_DUE_TO_BREAKPOINT,
88 self.expect("breakpoint list -f", "The breakpoints should report correct hit counts",
  /external/lldb/test/functionalities/data-formatter/rdar-9974002/
Test-rdar-9974002.py 47 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
61 self.expect('frame variable mine',
67 self.expect('frame variable mine',
73 self.expect('frame variable mine',
79 self.expect('frame variable mine',
85 self.expect('frame variable mine',
91 self.expect('frame variable mine',
97 self.expect('frame variable mine',
104 self.expect('frame variable mine',
110 self.expect('frame variable mine'
    [all...]
  /external/lldb/test/functionalities/target_command/
TestTargetCommand.py 101 self.expect("thread backtrace", STOPPED_DUE_TO_BREAKPOINT,
106 self.expect("thread backtrace", STOPPED_DUE_TO_BREAKPOINT,
116 self.expect("target variable my_global_char", VARIABLES_DISPLAYED_CORRECTLY,
118 self.expect("target variable my_global_str", VARIABLES_DISPLAYED_CORRECTLY,
120 self.expect("target variable my_static_int", VARIABLES_DISPLAYED_CORRECTLY,
122 self.expect("target variable my_global_str_ptr", matching=False,
124 self.expect("target variable *my_global_str_ptr", matching=True,
126 self.expect("target variable *my_global_str", VARIABLES_DISPLAYED_CORRECTLY,
132 self.expect("target variable my_global_str", VARIABLES_DISPLAYED_CORRECTLY,
134 self.expect("target variable my_static_int", VARIABLES_DISPLAYED_CORRECTLY
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
MatrixTest.java 73 String expect = "[1.0, 0.0, 0.0][0.0, 2.0, -4.0][0.0, 0.0, 1.0]"; local
74 assertEquals(expect, mMatrix.toShortString());
76 expect = "[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]";
77 assertEquals(expect, mMatrix.toShortString());
81 String expect = "[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]"; local
82 assertEquals(expect, mMatrix.toShortString());
84 expect = "[1.0, 0.0, 0.0][0.0, 2.0, 0.0][0.0, 0.0, 1.0]";
85 assertEquals(expect, mMatrix.toShortString());
89 String expect = "[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]"; local
90 assertEquals(expect, mMatrix.toShortString())
99 String expect = "[0.9998477, -0.017452406, 0.0]" local
106 String expect = "[0.9998477, -0.017452406, 0.0526618]" local
113 String expect = "[2.0, -1.0, 0.0][1.0, 2.0, 0.0][0.0, 0.0, 1.0]"; local
119 String expect = "[2.0, -1.0, 1.0][1.0, 2.0, -7.0][0.0, 0.0, 1.0]"; local
125 String expect = "[1.0, 1.0, 0.0][2.0, 1.0, 0.0][0.0, 0.0, 1.0]"; local
131 String expect = "[1.0, 1.0, -4.0][2.0, 1.0, -6.0][0.0, 0.0, 1.0]"; local
139 String expect = "[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]"; local
156 String expect = "[1.0, 0.0, 1.0][0.0, 1.0, 2.0][0.0, 0.0, 1.0]"; local
162 String expect = "[1.0, 0.0, 0.0][0.0, 2.0, 0.0][0.0, 0.0, 1.0]"; local
168 String expect = "[1.0, 0.0, 0.0][0.0, 2.0, -4.0][0.0, 0.0, 1.0]"; local
174 String expect = "[0.9998477, -0.017452406, 0.0][0.017452406, 0.9998477, " local
183 String expect = "[0.9998477, -0.017452406, 0.0526618][0.017452406, 0.9998477," local
190 String expect = "[1.0, 1.0, 0.0][2.0, 1.0, 0.0][0.0, 0.0, 1.0]"; local
196 String expect = "[1.0, 1.0, -4.0][2.0, 1.0, -6.0][0.0, 0.0, 1.0]"; local
206 String expect = "[1000.0, 0.0, 0.0][0.0, 0.0, 0.0][0.0, 0.0, 0.0]"; local
212 String expect = "[1.0, 0.0, 1.0][0.0, 1.0, 2.0][0.0, 0.0, 1.0]"; local
218 String expect = "[1.0, 0.0, 0.0][0.0, 2.0, 0.0][0.0, 0.0, 1.0]"; local
224 String expect = "[1.0, 0.0, 0.0][0.0, 2.0, -4.0][0.0, 0.0, 1.0]"; local
230 String expect = "[0.9998477, -0.017452406, 0.0]" + local
237 String expect = "[0.9998477, -0.017452406, 0.0526618]" + local
244 String expect = "[1.0, 1.0, 0.0][2.0, 1.0, 0.0][0.0, 0.0, 1.0]"; local
250 String expect = "[1.0, 1.0, -4.0][2.0, 1.0, -6.0][0.0, 0.0, 1.0]"; local
261 String expect = "[1000.0, 0.0, 0.0][0.0, 0.0, 0.0][0.0, 0.0, 0.0]"; local
271 String expect = "[0.0, 0.0, 0.0][0.0, 0.0, 0.0][0.0, 0.0, 1.0]"; local
305 String expect = "[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]"; local
325 String expect = "[1.0, 0.0, 100.0][0.0, 1.0, 300.0][0.0, 0.0, 1.0]"; local
471 String expect = "[9.0, 100.0, 0.0][0.0, 0.0, 0.0][0.0, 0.0, 0.0]"; local
486 String expect = "[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]"; local
492 String expect = "[1.0, 0.0, 2.0][0.0, 1.0, 3.0][0.0, 0.0, 1.0]"; local
    [all...]
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/
TestDataFormatterStdList.py 46 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("frame variable numbers_list[0]"
    [all...]
  /external/chromium_org/tools/gyp/test/assembly/
gyptest-override.py 19 expect = """\
23 test.run_built_executable('program', chdir=CHDIR, stdout=expect)
  /external/lldb/test/functionalities/abbreviation/
TestCommonShortSpellings.py 29 self.expect("file " + exe,
42 self.expect("disp a",
44 self.expect("disp b",
48 self.expect("help di",
50 self.expect("help dis",
54 self.expect("help ta st a",
58 self.expect("help fr v",
62 self.expect("ta st li",
  /external/lldb/test/lang/cpp/static_members/
TestCPPStaticMembers.py 41 self.expect("expression my_a.access()",
44 self.expect("expression my_a.m_a",
48 self.expect("expression my_a.s_d",
51 self.expect("expression my_a.s_b",
54 self.expect("expression A::s_b",
58 self.expect("expression s_d",
62 self.expect("expression m_c",
65 self.expect("expression s_b",
  /external/lldb/test/functionalities/data-formatter/data-formatter-skip-summary/
TestDataFormatterSkipSummary.py 45 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
67 self.expect('frame variable',
77 self.expect('frame variable --no-summary-depth',
89 self.expect('frame variable --no-summary-depth=2',
102 self.expect('frame variable data1.m_child1 --no-summary-depth=2', matching=False,
106 self.expect('frame variable data1.m_child1 --no-summary-depth=2',
110 self.expect('frame variable *data1.m_child1 --no-summary-depth=2',
118 self.expect('frame variable data1.m_child1->m_child2 --no-summary-depth=2',
127 self.expect('frame variable data1.m_child1->m_child2 --no-summary-depth=1',
151 self.expect('frame variable data1.m_child1->m_child2 --show-types --no-summary-depth=3'
    [all...]
  /external/lldb/test/lang/objc/hidden-ivars/
TestHiddenIvars.py 63 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
68 self.expect("breakpoint list -f", BREAKPOINT_HIT_ONCE,
75 self.expect("expression (j->_definer->foo)", VARIABLES_DISPLAYED_CORRECTLY,
78 self.expect("expression (j->_definer->bar)", VARIABLES_DISPLAYED_CORRECTLY,
81 self.expect("expression *(j->_definer)", VARIABLES_DISPLAYED_CORRECTLY,
84 self.expect("expression (k->foo)", VARIABLES_DISPLAYED_CORRECTLY,
87 self.expect("expression (k->bar)", VARIABLES_DISPLAYED_CORRECTLY,
90 self.expect("expression *(k)", VARIABLES_DISPLAYED_CORRECTLY,
97 self.expect("frame variable j->_definer->foo", VARIABLES_DISPLAYED_CORRECTLY,
100 self.expect("frame variable j->_definer->bar", VARIABLES_DISPLAYED_CORRECTLY
    [all...]
  /external/lldb/test/expression_command/persistent_types/
TestPersistentTypes.py 26 self.expect("expression struct $foo $my_foo; $my_foo.a = 2; $my_foo.b = 3;",
29 self.expect("expression $my_foo",
34 self.expect("expression $bar i = 5; i",
40 self.expect("memory read foo -t $foobar",
43 self.expect("memory read foo -t foobar",
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/
TestDataFormatterLibccIterator.py 44 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('expr svI', substrs = ['item = "hello"']
    [all...]
  /external/lldb/test/functionalities/data-formatter/rdar-12529957/
TestRdar12529957.py 45 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('frame variable mutable --ptr-depth 1 -d run -T'
    [all...]
  /external/lldb/test/settings/
TestSettings.py 25 self.expect("apropos 'environment variable'",
39 self.expect('settings show target.env-vars',
55 self.expect('settings show target.run-args',
74 self.expect('settings show target.run-args',
87 self.expect("settings show prompt", SETTING_MSG("prompt"),
91 self.expect("settings show", SETTING_MSG("prompt"),
103 self.expect("settings show term-width", SETTING_MSG("term-width"),
107 self.expect("settings show", SETTING_MSG("term-width"),
129 self.expect("settings show frame-format", SETTING_MSG("frame-format"),
134 self.expect("thread backtrace"
    [all...]
  /external/lldb/test/expression_command/formatters/
TestFormatters.py 59 self.expect("expression --show-types -- *(new foo(47))",
64 self.expect("expression new int(12)",
69 self.expect("expression new int(12)",
72 self.expect("expression foo1.a_ptr",
75 self.expect("expression foo1",
78 self.expect("expression new foo(47)",
81 self.expect("expression foo2",
88 self.expect("frame variable foo2",
91 self.expect("expression $" + object_name,
97 self.expect("expression --show-types -- $" + object_name
    [all...]
  /external/lldb/test/functionalities/data-formatter/rdar-11773899/
TestFormattersBoolRefPtr.py 45 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
60 self.expect('frame variable yes_ref',
62 self.expect('frame variable no_ref',
67 self.expect('frame variable yes_ptr',
69 self.expect('frame variable no_ptr',
74 self.expect('frame variable yes',
76 self.expect('frame variable no',
  /external/lldb/test/functionalities/data-formatter/rdar-9973992/
Test-rdar-9973992.py 44 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
58 self.expect('frame variable mine_ptr',
61 self.expect('frame variable *mine_ptr',
66 self.expect('frame variable mine_ptr',
69 self.expect('frame variable *mine_ptr',
75 self.expect('frame variable',
81 self.expect('frame variable',
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/
TestDataFormatterStdIterator.py 45 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
61 self.expect('frame variable ivI', substrs = ['item = 3'])
62 self.expect('expr ivI', substrs = ['item = 3'])
64 self.expect('frame variable iimI', substrs = ['first = 0','second = 12'])
65 self.expect('expr iimI', substrs = ['first = 0','second = 12'])
67 self.expect('frame variable simI', substrs = ['first = "world"','second = 42'])
68 self.expect('expr simI', substrs = ['first = "world"','second = 42'])
70 self.expect('frame variable svI', substrs = ['item = "hello"'])
71 self.expect('expr svI', substrs = ['item = "hello"'])
  /external/lldb/test/functionalities/data-formatter/rdar-11988289/
TestRdar 11988289.py 45 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
60 self.expect('frame variable dictionary',
62 self.expect('frame variable mutabledict',
64 self.expect('frame variable dictionary --ptr-depth 1',
66 self.expect('frame variable mutabledict --ptr-depth 1',
68 self.expect('frame variable dictionary --ptr-depth 1 --dynamic-type no-run-target',
70 self.expect('frame variable mutabledict --ptr-depth 1 --dynamic-type no-run-target',
72 self.expect('frame variable mutabledict --ptr-depth 2 --dynamic-type no-run-target',
74 self.expect('frame variable mutabledict --ptr-depth 3 --dynamic-type no-run-target',
  /external/lldb/test/functionalities/watchpoint/watchpoint_commands/
TestWatchpointCommands.py 32 """Test read_write watchpoint and expect to stop two times."""
40 """Test read_write watchpoint and expect to stop two times."""
48 """Test delete watchpoint and expect not to stop for watchpoint."""
56 """Test delete watchpoint and expect not to stop for watchpoint."""
64 """Test watchpoint ignore count and expect to not to stop at all."""
72 """Test watchpoint ignore count and expect to not to stop at all."""
110 """Do read_write watchpoint and expect to stop two times."""
122 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
128 self.expect("watchpoint set variable -w read_write global", WATCHPOINT_CREATED,
134 self.expect("watchpoint list -v"
    [all...]

Completed in 754 milliseconds

1 2 34 5 6 7 8 91011>>