HomeSort by relevance Sort by last modified time
    Searched refs:should (Results 176 - 200 of 2970) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug225.go 13 panic("BUG: recv should not");
20 panic("BUG: recv should");
bug148.go 40 panic("function should panic")
52 but it should crash: The type assertion on line 18 should fail
bug285.go 23 mb[false] = 42 // this should work: false is assignment compatible with B
66 m0[z] = 42 // this should work: z is assignment-compatible with interface{}
69 })] = 42 // this should work: *struct{x int} is assignment-compatible with interface{}
70 m0[p] = 42 // this should work: p is assignment-compatible with interface{}
71 m0[false] = 42 // this should work: false is assignment-compatible with interface{}
72 m0[17] = 42 // this should work: 17 is assignment-compatible with interface{}
73 m0["foo"] = 42 // this should work: "foo" is assignment-compatible with interface{}
79 })] = 42 // this should work: *struct{x int} is assignment-compatible with I1
80 m1[false] = 42 // this should work: false is assignment-compatible with I1
81 m1[17] = 42 // this should work: 17 is assignment-compatible with I
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/bug367.dir/
prog.go 22 panic("should not satisfy main.I")
26 panic("should satisfy p.I")
  /prebuilts/go/linux-x86/test/fixedbugs/
bug002.go 10 if ; false {} // compiles; should be an error (should be simplevardecl before ;)
bug004.go 10 switch ; { case false: return; } // compiles; should be an error (should be simplevardecl before ;)
bug225.go 13 panic("BUG: recv should not");
20 panic("BUG: recv should");
bug148.go 40 panic("function should panic")
52 but it should crash: The type assertion on line 18 should fail
bug285.go 23 mb[false] = 42 // this should work: false is assignment compatible with B
66 m0[z] = 42 // this should work: z is assignment-compatible with interface{}
69 })] = 42 // this should work: *struct{x int} is assignment-compatible with interface{}
70 m0[p] = 42 // this should work: p is assignment-compatible with interface{}
71 m0[false] = 42 // this should work: false is assignment-compatible with interface{}
72 m0[17] = 42 // this should work: 17 is assignment-compatible with interface{}
73 m0["foo"] = 42 // this should work: "foo" is assignment-compatible with interface{}
79 })] = 42 // this should work: *struct{x int} is assignment-compatible with I1
80 m1[false] = 42 // this should work: false is assignment-compatible with I1
81 m1[17] = 42 // this should work: 17 is assignment-compatible with I
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/bug133.dir/
bug2.go 13 // This reference should be invalid, because bug0.T.i is local
14 // to package bug0 and should not be visible in package bug1.
  /prebuilts/go/linux-x86/test/fixedbugs/bug367.dir/
prog.go 22 panic("should not satisfy main.I")
26 panic("should satisfy p.I")
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
nosep.s 2 ; This one should not treat a ";" as a line separator, not even
string-2.s 2 ; FIXME: This should be a generic test.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/
label-debug.s 1 # labels should be aligned on 8-byte boundries
label.s 1 # labels should be aligned on 8-byte boundries
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
divide.s 3 / This comment should still be allowed with --divide,
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips32r2-ill.l 14 .*:54: Warning: float register should be even, was 1
15 .*:57: Warning: float register should be even, was 1
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
macro1.s 11 ADDX *AR1 ; should produce an error msg
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/sh64/
shcmp-1.s 1 ! A single SHcompact file, that should link correctly.
  /external/compiler-rt/make/
options.mk 3 # This list of such variables should be kept up to date with AvailableOptions in
15 # Whether optimized function implementations should be used.
18 # Whether function definitions should use hidden visibility. This adds the
22 # FIXME: Make this more portable. When that is done, it should probably be the
29 # Whether the library should be built as a shared object.
  /prebuilts/go/darwin-x86/test/
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); }\n" +
424 " if n, op, want := a - b, `-`, sub; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
425 " if n, op, want := a * b, `*`, mul; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
427 " if n, op, want := a / b, `/`, div; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
428 " if n, op, want := a % b, `%`, mod; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
430 " if n, op, want := a & b, `&`, and; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
431 " if n, op, want := a | b, `|`, or; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n"
    [all...]
  /prebuilts/go/linux-x86/test/
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); }\n" +
424 " if n, op, want := a - b, `-`, sub; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
425 " if n, op, want := a * b, `*`, mul; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
427 " if n, op, want := a / b, `/`, div; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
428 " if n, op, want := a % b, `%`, mod; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
430 " if n, op, want := a & b, `&`, and; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
431 " if n, op, want := a | b, `|`, or; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n"
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
basic.rb 44 parser.reported_errors.should be_empty
45 parser.identifiers.should == %w(blah_de_blah)
55 parser.reported_errors.should have( 1 ).thing
68 parser.reported_errors.should be_empty
69 parser.identifiers.should == %w(blah_de_blah)
121 parser.reported_errors.should be_empty
122 parser.events.should == [
136 parser.reported_errors.should have( 1 ).thing
137 parser.events.should be_empty
146 parser.reported_errors.should have( 1 ).thin
    [all...]
rule-methods.rb 49 r.should == %w(foo bar)
104 ret.foo.should == 'foo'
105 ret.bar.should == 'bar'
128 RuleVisibility::Parser.public_instance_methods.should include( mname[ 'a' ] )
129 RuleVisibility::Parser.protected_instance_methods.should include( mname[ 'c' ] )
130 RuleVisibility::Parser.private_instance_methods.should include( mname[ 'b' ] )
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
got-page-3.d 9 # got-page-3a.s and got-page-3b.s should get assigned the same GOT,
14 # got-page-3c.s should get its own GOT, and needs no page entries.
15 # The first global symbol should therefore be at offset -32744.

Completed in 698 milliseconds

1 2 3 4 5 6 78 91011>>