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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
constFold_test.go 14 t.Errorf("0 %s 0 = %d, want 0", "+", r)
19 t.Errorf("0 %s 1 = %d, want 1", "+", r)
24 t.Errorf("0 %s 4294967296 = %d, want 4294967296", "+", r)
29 t.Errorf("0 %s 18446744073709551615 = %d, want 18446744073709551615", "+", r)
35 t.Errorf("1 %s 0 = %d, want 1", "+", r)
40 t.Errorf("1 %s 1 = %d, want 2", "+", r)
45 t.Errorf("1 %s 4294967296 = %d, want 4294967297", "+", r)
50 t.Errorf("1 %s 18446744073709551615 = %d, want 0", "+", r)
56 t.Errorf("4294967296 %s 0 = %d, want 4294967296", "+", r)
61 t.Errorf("4294967296 %s 1 = %d, want 4294967297", "+", r
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
constFold_test.go 14 t.Errorf("0 %s 0 = %d, want 0", "+", r)
19 t.Errorf("0 %s 1 = %d, want 1", "+", r)
24 t.Errorf("0 %s 4294967296 = %d, want 4294967296", "+", r)
29 t.Errorf("0 %s 18446744073709551615 = %d, want 18446744073709551615", "+", r)
35 t.Errorf("1 %s 0 = %d, want 1", "+", r)
40 t.Errorf("1 %s 1 = %d, want 2", "+", r)
45 t.Errorf("1 %s 4294967296 = %d, want 4294967297", "+", r)
50 t.Errorf("1 %s 18446744073709551615 = %d, want 0", "+", r)
56 t.Errorf("4294967296 %s 0 = %d, want 4294967296", "+", r)
61 t.Errorf("4294967296 %s 1 = %d, want 4294967297", "+", r
    [all...]
  /prebuilts/go/darwin-x86/src/unicode/
graphic_test.go 18 want := false
21 want = true
23 want = true
25 if got != want {
26 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
34 want := Is(Letter, i)
35 if got != want {
36 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
    [all...]
  /prebuilts/go/linux-x86/src/unicode/
graphic_test.go 18 want := false
21 want = true
23 want = true
25 if got != want {
26 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
34 want := Is(Letter, i)
35 if got != want {
36 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
compound.go 26 if want, got := a, string_ssa(a, b, true); got != want {
27 fmt.Printf("string_ssa(%v, %v, true) = %v, want %v\n", a, b, got, want)
30 if want, got := b, string_ssa(a, b, false); got != want {
31 fmt.Printf("string_ssa(%v, %v, false) = %v, want %v\n", a, b, got, want)
62 if want, got := a, complex64_ssa(a, b, true); got != want {
    [all...]
arith.go 61 if want, got := uint64(0x7ffffffffffffff), rshNop1(allSet); want != got {
62 println("testShiftRemoval rshNop1 failed, wanted", want, "got", got)
65 if want, got := uint64(0x3ffffffffffffff), rshNop2(allSet); want != got {
66 println("testShiftRemoval rshNop2 failed, wanted", want, "got", got)
69 if want, got := uint64(0x7fffffffffffff), rshNop3(allSet); want != got {
70 println("testShiftRemoval rshNop3 failed, wanted", want, "got", got)
73 if want, got := uint64(0xffffffffffffffe), rshNotNop(allSet); want != got
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
compound.go 26 if want, got := a, string_ssa(a, b, true); got != want {
27 fmt.Printf("string_ssa(%v, %v, true) = %v, want %v\n", a, b, got, want)
30 if want, got := b, string_ssa(a, b, false); got != want {
31 fmt.Printf("string_ssa(%v, %v, false) = %v, want %v\n", a, b, got, want)
62 if want, got := a, complex64_ssa(a, b, true); got != want {
    [all...]
arith.go 61 if want, got := uint64(0x7ffffffffffffff), rshNop1(allSet); want != got {
62 println("testShiftRemoval rshNop1 failed, wanted", want, "got", got)
65 if want, got := uint64(0x3ffffffffffffff), rshNop2(allSet); want != got {
66 println("testShiftRemoval rshNop2 failed, wanted", want, "got", got)
69 if want, got := uint64(0x7fffffffffffff), rshNop3(allSet); want != got {
70 println("testShiftRemoval rshNop3 failed, wanted", want, "got", got)
73 if want, got := uint64(0xffffffffffffffe), rshNotNop(allSet); want != got
    [all...]
  /prebuilts/go/darwin-x86/test/
armimm.go 119 var want, got uint32
120 if want, got = a+c32a, add32a(a); got != want {
121 panic(fmt.Sprintf("add32a(%x) = %x, want %x", a, got, want))
123 if want, got = a+c32s, add32s(a); got != want {
124 panic(fmt.Sprintf("add32s(%x) = %x, want %x", a, got, want))
126 if want, got = a-c32a, sub32a(a); got != want
    [all...]
convert.go 31 want := typeof(g)
32 if t := typeof(f); t != want {
33 println("type of f is", t, "want", want)
37 want = typeof(a)
38 if t := typeof(+a); t != want {
39 println("type of +a is", t, "want", want)
42 if t := typeof(a + 0); t != want {
43 println("type of a+0 is", t, "want", want
    [all...]
64bit.go 417 " if n, op, want := +a, `+`, plus; n != want { ok=false; println(`int64`, op, a, `=`, n, `should be`, want); }\n" +
418 " if n, op, want := ^a, `^`, xor; n != want { ok=false; println(`int64`, op, a, `=`, n, `should be`, want); }\n" +
419 " if n, op, want := -a, `-`, minus; n != want { ok=false; println(`int64`, op, a, `=`, n, `should be`, want); }\n" +
423 " if n, op, want := a + b, `+`, add; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); } (…)
    [all...]
  /prebuilts/go/linux-x86/test/
armimm.go 119 var want, got uint32
120 if want, got = a+c32a, add32a(a); got != want {
121 panic(fmt.Sprintf("add32a(%x) = %x, want %x", a, got, want))
123 if want, got = a+c32s, add32s(a); got != want {
124 panic(fmt.Sprintf("add32s(%x) = %x, want %x", a, got, want))
126 if want, got = a-c32a, sub32a(a); got != want
    [all...]
convert.go 31 want := typeof(g)
32 if t := typeof(f); t != want {
33 println("type of f is", t, "want", want)
37 want = typeof(a)
38 if t := typeof(+a); t != want {
39 println("type of +a is", t, "want", want)
42 if t := typeof(a + 0); t != want {
43 println("type of a+0 is", t, "want", want
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue18720.go 30 if got, want := C.HELLO_WORLD, "hello\000world"; got != want {
31 t.Errorf("C.HELLO_WORLD == %q, expected %q", got, want)
34 if got, want := C.VAR1, C.int(5); got != want {
35 t.Errorf("C.VAR1 == %v, expected %v", got, want)
38 if got, want := *C.ADDR, C.int(5); got != want {
39 t.Errorf("*C.ADDR == %v, expected %v", got, want)
42 if got, want := C.CALL, C.int(6); got != want
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/test/
issue18720.go 30 if got, want := C.HELLO_WORLD, "hello\000world"; got != want {
31 t.Errorf("C.HELLO_WORLD == %q, expected %q", got, want)
34 if got, want := C.VAR1, C.int(5); got != want {
35 t.Errorf("C.VAR1 == %v, expected %v", got, want)
38 if got, want := *C.ADDR, C.int(5); got != want {
39 t.Errorf("*C.ADDR == %v, expected %v", got, want)
42 if got, want := C.CALL, C.int(6); got != want
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
dlltool.exp 92 set want "00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
94 set want "00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
97 if [regexp $want $got] then {
104 set want "(Contents of section .idata\\\$6:.*\\.\\.symbol\\.\\..*){2,2}"
106 if [regexp $want $got] then {
126 set want "00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
128 set want "00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
131 if [regexp $want $got] then {
138 set want "(Contents of section .idata\\\$6:.*\\.\\.something\\..*){2,2}"
140 if [regexp $want $got] then
    [all...]
  /prebuilts/go/darwin-x86/src/math/bits/
bits_test.go 14 if want := unsafe.Sizeof(x) * 8; UintSize != want {
15 t.Fatalf("UintSize = %d; want %d", UintSize, want)
26 want := nlz - k + (8 - 8)
28 want = 8
30 if got != want {
31 t.Fatalf("LeadingZeros8(%#02x) == %d; want %d", x, got, want)
37 want := nlz - k + (16 - 8
    [all...]
  /prebuilts/go/linux-x86/src/math/bits/
bits_test.go 14 if want := unsafe.Sizeof(x) * 8; UintSize != want {
15 t.Fatalf("UintSize = %d; want %d", UintSize, want)
26 want := nlz - k + (8 - 8)
28 want = 8
30 if got != want {
31 t.Fatalf("LeadingZeros8(%#02x) == %d; want %d", x, got, want)
37 want := nlz - k + (16 - 8
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue13162.go 28 // "want" calculation below correct in all cases.
33 if want := n - 1; i != want {
34 fmt.Printf("index after range with side-effect = %d want %d\n", i, want)
43 if want := n - 1; i != want {
44 fmt.Printf("index after range with side-effect = %d want %d\n", i, want)
47 if want := rune(n); r != want
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue13162.go 28 // "want" calculation below correct in all cases.
33 if want := n - 1; i != want {
34 fmt.Printf("index after range with side-effect = %d want %d\n", i, want)
43 if want := n - 1; i != want {
44 fmt.Printf("index after range with side-effect = %d want %d\n", i, want)
47 if want := rune(n); r != want
    [all...]
  /prebuilts/go/darwin-x86/src/os/exec/
internal_test.go 16 want string
21 want: "",
26 want: "a",
31 want: "abcd",
36 want: "ab\n... omitting 1 bytes ...\nde",
41 want: "ab\n... omitting 22 bytes ...\nyz",
46 want: "ab\n... omitting 23 bytes ...\nyz",
54 t.Errorf("%d. WriteString(%q) = %v, %v; want %v, %v", i, s, n, err, len(s), nil)
57 if got := string(w.Bytes()); got != tt.want {
58 t.Errorf("%d. Bytes = %q; want %q", i, got, tt.want
    [all...]
  /prebuilts/go/linux-x86/src/os/exec/
internal_test.go 16 want string
21 want: "",
26 want: "a",
31 want: "abcd",
36 want: "ab\n... omitting 1 bytes ...\nde",
41 want: "ab\n... omitting 22 bytes ...\nyz",
46 want: "ab\n... omitting 23 bytes ...\nyz",
54 t.Errorf("%d. WriteString(%q) = %v, %v; want %v, %v", i, s, n, err, len(s), nil)
57 if got := string(w.Bytes()); got != tt.want {
58 t.Errorf("%d. Bytes = %q; want %q", i, got, tt.want
    [all...]
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
QuickDraw_Graphics_Suite.py 20 want = 'carc' variable in class:arc
24 want = 'fixd' variable in class:_Prop_arc_angle
28 want = 'qdrt' variable in class:_Prop_bounds
32 want = 'qdrt' variable in class:_Prop_definition_rect
36 want = 'cRGB' variable in class:_Prop_fill_color
40 want = 'cpix' variable in class:_Prop_fill_pattern
44 want = 'cRGB' variable in class:_Prop_pen_color
48 want = 'cpix' variable in class:_Prop_pen_pattern
52 want = 'shor' variable in class:_Prop_pen_width
56 want = 'fixd variable in class:_Prop_start_angle
60 want = 'tran' variable in class:_Prop_transfer_mode
66 want = 'cdrw' variable in class:drawing_area
70 want = 'cRGB' variable in class:_Prop_background_color
74 want = 'cpix' variable in class:_Prop_background_pattern
78 want = 'clrt' variable in class:_Prop_color_table
82 want = 'itxt' variable in class:_Prop_default_font
86 want = 'QDpt' variable in class:_Prop_default_location
90 want = 'fixd' variable in class:_Prop_default_size
94 want = 'itxt' variable in class:_Prop_name
98 want = 'obj ' variable in class:_Prop_ordering
102 want = 'shor' variable in class:_Prop_pixel_depth
106 want = 'tsty' variable in class:_Prop_style
110 want = 'cRGB' variable in class:_Prop_text_color
114 want = 'bool' variable in class:_Prop_update_on_change
118 want = 'intl' variable in class:_Prop_writing_code
124 want = 'cgob' variable in class:graphic_objects
130 want = 'cgsh' variable in class:graphic_shapes
136 want = 'cgtx' variable in class:graphic_text
140 want = 'cRGB' variable in class:_Prop_color
144 want = 'ctxt' variable in class:_Prop_font
148 want = 'fixd' variable in class:_Prop_size
152 want = 'tsty' variable in class:_Prop_uniform_styles
156 want = 'covl' variable in class:ovals
162 want = 'cpgn' variable in class:polygon
166 want = 'QDpt' variable in class:_Prop_point_list
172 want = 'cpic' variable in class:graphic_groups
178 want = 'cpix' variable in class:pixel_maps
184 want = 'cpxl' variable in class:pixel
190 want = 'crec' variable in class:rectangles
196 want = 'crrc' variable in class:rounded_rectangle
200 want = 'shor' variable in class:_Prop_corner_curve_height
204 want = 'shor' variable in class:_Prop_corner_curve_width
210 want = 'glin' variable in class:graphic_line
214 want = 'arro' variable in class:_Prop_arrow_style
218 want = 'tdas' variable in class:_Prop_dash_style
222 want = 'QDpt' variable in class:_Prop_end_point
226 want = 'QDpt' variable in class:_Prop_start_point
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
QuickDraw_Graphics_Suite.py 20 want = 'carc' variable in class:arc
24 want = 'fixd' variable in class:_Prop_arc_angle
28 want = 'qdrt' variable in class:_Prop_bounds
32 want = 'qdrt' variable in class:_Prop_definition_rect
36 want = 'cRGB' variable in class:_Prop_fill_color
40 want = 'cpix' variable in class:_Prop_fill_pattern
44 want = 'cRGB' variable in class:_Prop_pen_color
48 want = 'cpix' variable in class:_Prop_pen_pattern
52 want = 'shor' variable in class:_Prop_pen_width
56 want = 'fixd variable in class:_Prop_start_angle
60 want = 'tran' variable in class:_Prop_transfer_mode
66 want = 'cdrw' variable in class:drawing_area
70 want = 'cRGB' variable in class:_Prop_background_color
74 want = 'cpix' variable in class:_Prop_background_pattern
78 want = 'clrt' variable in class:_Prop_color_table
82 want = 'itxt' variable in class:_Prop_default_font
86 want = 'QDpt' variable in class:_Prop_default_location
90 want = 'fixd' variable in class:_Prop_default_size
94 want = 'itxt' variable in class:_Prop_name
98 want = 'obj ' variable in class:_Prop_ordering
102 want = 'shor' variable in class:_Prop_pixel_depth
106 want = 'tsty' variable in class:_Prop_style
110 want = 'cRGB' variable in class:_Prop_text_color
114 want = 'bool' variable in class:_Prop_update_on_change
118 want = 'intl' variable in class:_Prop_writing_code
124 want = 'cgob' variable in class:graphic_objects
130 want = 'cgsh' variable in class:graphic_shapes
136 want = 'cgtx' variable in class:graphic_text
140 want = 'cRGB' variable in class:_Prop_color
144 want = 'ctxt' variable in class:_Prop_font
148 want = 'fixd' variable in class:_Prop_size
152 want = 'tsty' variable in class:_Prop_uniform_styles
156 want = 'covl' variable in class:ovals
162 want = 'cpgn' variable in class:polygon
166 want = 'QDpt' variable in class:_Prop_point_list
172 want = 'cpic' variable in class:graphic_groups
178 want = 'cpix' variable in class:pixel_maps
184 want = 'cpxl' variable in class:pixel
190 want = 'crec' variable in class:rectangles
196 want = 'crrc' variable in class:rounded_rectangle
200 want = 'shor' variable in class:_Prop_corner_curve_height
204 want = 'shor' variable in class:_Prop_corner_curve_width
210 want = 'glin' variable in class:graphic_line
214 want = 'arro' variable in class:_Prop_arrow_style
218 want = 'tdas' variable in class:_Prop_dash_style
222 want = 'QDpt' variable in class:_Prop_end_point
226 want = 'QDpt' variable in class:_Prop_start_point
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
QuickDraw_Graphics_Suite.py 20 want = 'carc' variable in class:arc
24 want = 'fixd' variable in class:_Prop_arc_angle
28 want = 'qdrt' variable in class:_Prop_bounds
32 want = 'qdrt' variable in class:_Prop_definition_rect
36 want = 'cRGB' variable in class:_Prop_fill_color
40 want = 'cpix' variable in class:_Prop_fill_pattern
44 want = 'cRGB' variable in class:_Prop_pen_color
48 want = 'cpix' variable in class:_Prop_pen_pattern
52 want = 'shor' variable in class:_Prop_pen_width
56 want = 'fixd variable in class:_Prop_start_angle
60 want = 'tran' variable in class:_Prop_transfer_mode
66 want = 'cdrw' variable in class:drawing_area
70 want = 'cRGB' variable in class:_Prop_background_color
74 want = 'cpix' variable in class:_Prop_background_pattern
78 want = 'clrt' variable in class:_Prop_color_table
82 want = 'itxt' variable in class:_Prop_default_font
86 want = 'QDpt' variable in class:_Prop_default_location
90 want = 'fixd' variable in class:_Prop_default_size
94 want = 'itxt' variable in class:_Prop_name
98 want = 'obj ' variable in class:_Prop_ordering
102 want = 'shor' variable in class:_Prop_pixel_depth
106 want = 'tsty' variable in class:_Prop_style
110 want = 'cRGB' variable in class:_Prop_text_color
114 want = 'bool' variable in class:_Prop_update_on_change
118 want = 'intl' variable in class:_Prop_writing_code
124 want = 'cgob' variable in class:graphic_objects
130 want = 'cgsh' variable in class:graphic_shapes
136 want = 'cgtx' variable in class:graphic_text
140 want = 'cRGB' variable in class:_Prop_color
144 want = 'ctxt' variable in class:_Prop_font
148 want = 'fixd' variable in class:_Prop_size
152 want = 'tsty' variable in class:_Prop_uniform_styles
156 want = 'covl' variable in class:ovals
162 want = 'cpgn' variable in class:polygon
166 want = 'QDpt' variable in class:_Prop_point_list
172 want = 'cpic' variable in class:graphic_groups
178 want = 'cpix' variable in class:pixel_maps
184 want = 'cpxl' variable in class:pixel
190 want = 'crec' variable in class:rectangles
196 want = 'crrc' variable in class:rounded_rectangle
200 want = 'shor' variable in class:_Prop_corner_curve_height
204 want = 'shor' variable in class:_Prop_corner_curve_width
210 want = 'glin' variable in class:graphic_line
214 want = 'arro' variable in class:_Prop_arrow_style
218 want = 'tdas' variable in class:_Prop_dash_style
222 want = 'QDpt' variable in class:_Prop_end_point
226 want = 'QDpt' variable in class:_Prop_start_point
    [all...]

Completed in 550 milliseconds

1 2 3 4 5 6 7 8 91011>>