Searched refs:expect (Results 1 - 25 of 591) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/
H A Dmath-ceil.js9 function testCeil(expect, input) {
12 assertEquals(expect, test(input));
13 assertEquals(expect, test(input));
14 assertEquals(expect, test(input));
16 assertEquals(expect, test(input));
21 assertEquals(expect, test_double_input(input));
22 assertEquals(expect, test_double_input(input));
23 assertEquals(expect, test_double_input(input));
25 assertEquals(expect, test_double_input(input));
30 assertEquals(expect, test_double_outpu
[all...]
H A Dmath-floor-part2.js32 function testFloor(expect, input) {
35 assertEquals(expect, test(input));
36 assertEquals(expect, test(input));
37 assertEquals(expect, test(input));
39 assertEquals(expect, test(input));
44 assertEquals(expect, test_double_input(input));
45 assertEquals(expect, test_double_input(input));
46 assertEquals(expect, test_double_input(input));
48 assertEquals(expect, test_double_input(input));
53 assertEquals(expect, test_double_outpu
[all...]
H A Dmath-floor-part4.js32 function testFloor(expect, input) {
35 assertEquals(expect, test(input));
36 assertEquals(expect, test(input));
37 assertEquals(expect, test(input));
39 assertEquals(expect, test(input));
44 assertEquals(expect, test_double_input(input));
45 assertEquals(expect, test_double_input(input));
46 assertEquals(expect, test_double_input(input));
48 assertEquals(expect, test_double_input(input));
53 assertEquals(expect, test_double_outpu
[all...]
/external/v8/tools/gyp/test/cflags/
H A Dgyptest-cflags.py28 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)
54 expect = """FOO defined\n"""
55 test.run_built_executable('cflags_host', stdout=expect)
63 expect
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DReturnTest.java61 String expect = retval.getText();
63 if ( expect.charAt(0)=='"' && expect.charAt(expect.length()-1)=='"' ) {
64 expect = expect.substring(1, expect.length()-1);
67 return expect;
/external/chromium-trace/catapult/tracing/third_party/gl-matrix/spec/gl-matrix/
H A Dvec4-spec.js31 it("should return a 4 element array initialized to 0s", function() { expect(result).toBeEqualish([0, 0, 0, 0]); });
36 it("should return a 4 element array initialized to the values in vecA", function() { expect(result).toBeEqualish(vecA); });
41 it("should return a 4 element array initialized to the values passed", function() { expect(result).toBeEqualish([1, 2, 3, 4]); });
46 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); });
47 it("should return out", function() { expect(result).toBe(out); });
52 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); });
53 it("should return out", function() { expect(result).toBe(out); });
60 it("should place values into out", function() { expect(out).toBeEqualish([6, 8, 10, 12]); });
61 it("should return out", function() { expect(result).toBe(out); });
62 it("should not modify vecA", function() { expect(vec
[all...]
H A Dvec2-spec.js30 it("should return a 2 element array initialized to 0s", function() { expect(result).toBeEqualish([0, 0]); });
35 it("should return a 2 element array initialized to the values in vecA", function() { expect(result).toBeEqualish(vecA); });
40 it("should return a 2 element array initialized to the values passed", function() { expect(result).toBeEqualish([1, 2]); });
45 it("should place values into out", function() { expect(out).toBeEqualish([1, 2]); });
46 it("should return out", function() { expect(result).toBe(out); });
51 it("should place values into out", function() { expect(out).toBeEqualish([1, 2]); });
52 it("should return out", function() { expect(result).toBe(out); });
59 it("should place values into out", function() { expect(out).toBeEqualish([4, 6]); });
60 it("should return out", function() { expect(result).toBe(out); });
61 it("should not modify vecA", function() { expect(vec
[all...]
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...]
H A Dquat-spec.js45 it("should return out", function() { expect(result).toBe(out); });
47 expect(result).toBeEqualish([0, 0.707106, 0, 0.707106]);
56 it("should return out", function() { expect(result).toBe(out); });
58 expect(result).toBeEqualish([0, 0, 0, 1]);
69 expect(result).toBeEqualish([0,0,0,-1]);
78 it("should return out", function() { expect(result).toBe(out); });
80 expect(result).toBeEqualish([1, 0, 0, 0]);
90 it("should return out", function() { expect(result).toBe(out); });
93 expect(vec).toBeEqualish([0, 1, 0]);
102 it("should return out", function() { expect(resul
[all...]
/external/lldb/test/pexpect-2.4/examples/
H A Dftp.py13 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/v8/tools/gyp/test/variables/filelist/
H A Dgyptest-filelist-golden.py18 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, content
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-smart-array/
H A DTestDataFormatterSmartArray.py43 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("fram
[all...]
/external/v8/tools/gyp/test/variables/commands/
H A Dgyptest-commands-repeated.py16 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 ')
H A Dgyptest-commands.py17 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 ')
/external/lldb/test/functionalities/abbreviation/
H A DTestAbbreviations.py16 self.expect("ap script",
27 self.expect("gurp target create",
30 self.expect("gurp",
35 self.expect("h",
45 self.expect("t",
50 self.expect("com sou ./change_prompt.lldb",
53 self.expect("settings show prompt",
58 self.expect("settings show prompt",
62 self.expect("lo li",
66 self.expect("s
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/
H A DTestDataFormatterLibccMap.py42 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
58 self.expect('image list',substrs=['libc++.1.dylib','libc++abi.dylib'])
62 self.expect('frame variable ii',
68 self.expect('frame variable ii',
79 self.expect('frame variable ii',
90 self.expect("frame variable ii",
99 self.expect("p ii",
109 self.expect("frame variable ii[0]",
112 self.expect("frame variable ii[3]",
124 #self.expect("expressio
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/
H A DTestDataFormatterLibccMultiMap.py42 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
58 self.expect('image list',substrs=['libc++.1.dylib','libc++abi.dylib'])
62 self.expect('frame variable ii',
68 self.expect('frame variable ii',
79 self.expect('frame variable ii',
90 self.expect("frame variable ii",
99 self.expect("p ii",
109 self.expect("frame variable ii[0]",
112 self.expect("frame variable ii[3]",
124 #self.expect("expressio
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-synth/
H A DTestDataFormatterSynth.py43 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
59 self.expect("frame variable int_bag",
65 self.expect('frame variable int_bag',
69 self.expect("frame variable int_bag", matching=False,
74 self.expect("frame variable int_bag --synthetic-type false --no-summary-depth=1",
80 self.expect("frame variable int_bag --raw-output",
87 self.expect('frame variable int_bag',
94 self.expect('frame variable int_bag',
100 self.expect("frame variable int_bag --no-summary-depth=1",
106 self.expect("fram
[all...]
/external/lldb/test/functionalities/data-formatter/rdar-3534688/
H A DTestFormattersOneIsSingular.py45 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
60 self.expect('frame variable key',
62 self.expect('frame variable key', matching=False,
64 self.expect('frame variable value',
66 self.expect('frame variable value', matching=False,
68 self.expect('frame variable dict',
70 self.expect('frame variable dict', matching=False,
72 self.expect('frame variable mutable_bag_ref',
74 self.expect('frame variable mutable_bag_ref', matching=False,
76 self.expect('fram
[all...]
/external/lldb/test/expression_command/persistent_variables/
H A DTestPersistentVariables.py26 self.expect("expression $i == i",
29 self.expect("expression $i + 1",
32 self.expect("expression $i + 3",
35 self.expect("expression $2 + $1",
38 self.expect("expression $3",
41 self.expect("expression $2",
44 self.expect("expression (int)-2",
47 self.expect("expression $4 > (int)31",
50 self.expect("expression (long)$4",
/external/lldb/test/functionalities/data-formatter/data-formatter-script/
H A DTestDataFormatterScript.py43 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
61 self.expect("frame variable one",
65 self.expect("frame variable two",
71 self.expect("frame variable three",
77 self.expect("frame variable two",
86 self.expect("frame variable two",
89 self.expect("frame variable twoptr",
95 self.expect("frame variable two",
99 self.expect("frame variable twoptr",
106 self.expect("fram
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/
H A DTestDataFormatterStdVector.py47 self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
64 self.expect("frame variable numbers",
70 self.expect("frame variable numbers",
78 self.expect("frame variable numbers",
86 self.expect("p numbers",
97 self.expect('frame variable numbers',
103 self.expect('frame variable numbers',
112 self.expect("frame variable numbers",
123 self.expect("p numbers",
135 self.expect("fram
[all...]
/external/curl/lib/
H A Dobjnames-test08.sh85 expect=16AFKPQR
87 echo "result: $outstr expected: $expect input: $argstr"
90 expect=16AFKPQ
92 echo "result: $outstr expected: $expect input: $argstr"
95 expect=16ABC
97 echo "result: $outstr expected: $expect input: $argstr"
100 expect=16
102 echo "result: $outstr expected: $expect input: $argstr"
105 expect=123
107 echo "result: $outstr expected: $expect inpu
[all...]
H A Dobjnames-test10.sh85 expect=16AFKPQRST
87 echo "result: $outstr expected: $expect input: $argstr"
90 expect=16AFKPQ
92 echo "result: $outstr expected: $expect input: $argstr"
95 expect=16ABC
97 echo "result: $outstr expected: $expect input: $argstr"
100 expect=16
102 echo "result: $outstr expected: $expect input: $argstr"
105 expect=123
107 echo "result: $outstr expected: $expect inpu
[all...]
/external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/
H A DCoreTutorialTest.java31 console.expect(containsLine("0 of 3 methods missed"));
32 console.expect(containsLine("1 of 5 complexity missed"));
33 console.expect(containsLine("Line 46: "));
34 console.expect(containsLine("Line 47: green"));
35 console.expect(containsLine("Line 48: yellow"));
36 console.expect(containsLine("Line 49: red"));

Completed in 4232 milliseconds

1234567891011>>