HomeSort by relevance Sort by last modified time
    Searched full:should (Results 201 - 225 of 61834) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/spec/gl-matrix/
quat-spec.js 45 it("should return out", function() { expect(result).toBe(out); });
46 it("should calculate proper quat", function() {
56 it("should return out", function() { expect(result).toBe(out); });
57 it("should calculate proper quat", function() {
68 it("should calculate proper quat", function() {
78 it("should return out", function() { expect(result).toBe(out); });
79 it("should calculate proper quat", function() {
90 it("should return out", function() { expect(result).toBe(out); });
91 it("should transform vec accordingly", function() {
102 it("should return out", function() { expect(result).toBe(out); })
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-template.rb 18 context.instance_variables.should be_empty
27 vars.should include( '@a' )
28 vars.should include( '@b' )
30 context.instance_variable_get( '@a' ).should == 1
31 context.instance_variable_get( '@b' ).should == 2
39 context[ :a ].should == 1
40 context[ 'a' ].should == 1
41 context[ :b ].should == 2
42 context[ 'b' ].should == 2
50 context.instance_variable_get( '@a' ).should ==
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/misc/
ANTLRIntArrayTest.m 18 STAssertTrue([intArray count] == 1, @"Int array should be of size 1");
19 STAssertTrue([intArray integerAtIndex:0] == 1, @"First item in int array should be 1");
32 STAssertTrue(popped == 10, @"Pop should pull the last element out, which should be 10 was: %d", popped);
40 STAssertTrue([intArray count] == 1, @"Int array should be of size 1");
41 STAssertTrue([intArray integerAtIndex:0] == 1, @"First item in int array should be 1");
43 STAssertTrue([intArray count] == 0, @"Array size should be 0");
IntArrayTest.m 18 STAssertTrue([intArray count] == 1, @"Int array should be of size 1");
19 STAssertTrue([intArray integerAtIndex:0] == 1, @"First item in int array should be 1");
32 STAssertTrue(popped == 10, @"Pop should pull the last element out, which should be 10 was: %d", popped);
40 STAssertTrue([intArray count] == 1, @"Int array should be of size 1");
41 STAssertTrue([intArray integerAtIndex:0] == 1, @"First item in int array should be 1");
43 STAssertTrue([intArray count] == 0, @"Array size should be 0");
  /external/clang/test/Sema/
builtins-arm64.c 21 __builtin_arm_dmb(16); // expected-error {{argument should be a value from 0 to 15}}
22 __builtin_arm_dsb(17); // expected-error {{argument should be a value from 0 to 15}}
23 __builtin_arm_isb(18); // expected-error {{argument should be a value from 0 to 15}}
27 __builtin_arm_prefetch(0, 2, 0, 0, 0); // expected-error {{argument should be a value from 0 to 1}}
28 __builtin_arm_prefetch(0, 0, 3, 0, 0); // expected-error {{argument should be a value from 0 to 2}}
29 __builtin_arm_prefetch(0, 0, 0, 2, 0); // expected-error {{argument should be a value from 0 to 1}}
30 __builtin_arm_prefetch(0, 0, 0, 0, 2); // expected-error {{argument should be a value from 0 to 1}}
  /external/clang/test/SemaCXX/
alignment-of-derived-class.cpp 10 static_assert(__alignof(A) == 16, "A should be aligned to 16 bytes");
15 static_assert(__alignof(B1) == 16, "B1 should be aligned to 16 bytes");
20 static_assert(__alignof(B2) == 16, "B2 should be aligned to 16 bytes");
25 static_assert(__alignof(B3) == 16, "B3 should be aligned to 16 bytes");
30 static_assert(__alignof(B4) == 16, "B4 should be aligned to 16 bytes");
35 static_assert(__alignof(B5) == 16, "B5 should be aligned to 16 bytes");
40 static_assert(__alignof(B6) == 32, "B6 should be aligned to 32 bytes");
  /external/curl/tests/data/
test1113 42 # THERE SHOULD NOT BE "SIZE"! and one "USER/PASS"
87 This file should have permissions 444
88 This file should have permissions 666
89 This file should have permissions 777
92 This file should have permissions 444
93 This file should have permissions 666
94 This file should have permissions 777
test574 41 # THERE SHOULD NOT BE "SIZE"! and one "USER/PASS"
86 This file should have permissions 444
87 This file should have permissions 666
88 This file should have permissions 777
91 This file should have permissions 444
92 This file should have permissions 666
93 This file should have permissions 777
test575 104 This file should have permissions 444
105 This file should have permissions 666
106 This file should have permissions 777
109 This file should have permissions 444
110 This file should have permissions 666
111 This file should have permissions 777
114 This file should have permissions 444
115 This file should have permissions 666
116 This file should have permissions 777
  /external/curl/tests/unit/
unit1304.c 11 * you should have received as part of this distribution. The terms
58 fail_unless(result == 1, "Host not found should return 1");
60 fail_unless(password[0] == 0, "password should not have been changed");
62 fail_unless(login[0] == 0, "login should not have been changed");
71 fail_unless(result == 0, "Host should be found");
73 fail_unless(password[0] == 0, "password should not have been changed");
75 fail_unless(strncmp(login, "me", 2) == 0, "login should not have been changed");
84 fail_unless(result == 1, "Host should be found");
86 fail_unless(password[0] == 0, "password should not have been changed");
88 fail_unless(strncmp(login, "me", 2) == 0, "login should not have been changed")
    [all...]
  /external/testng/src/test/java/test/access/
PrivateAccessConfigurationMethods.java 42 Assert.assertTrue(m_private, "private @Configuration should have been run");
43 Assert.assertTrue(m_default, "default @Configuration should have been run");
44 Assert.assertTrue(m_protected, "protected @Configuration should have been run");
45 Assert.assertTrue(m_public, "public @Configuration should have been run");
47 Assert.assertTrue(m_baseProtected, "protected base @Configuration should have been run");
48 Assert.assertTrue(m_baseDefault, "default base @Configuration should have been run");
49 Assert.assertTrue(m_basePrivate, "private base @Configuration should not have been run");
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
RewriteRuleXxxxStreamFixture.cs 102 "Description strings should be equal.");
103 Assert.AreEqual(0, tokenTest.Count, "The number of elements should be zero.");
107 "The number of elements should be still zero.");
121 "Description strings should be equal.");
122 Assert.AreEqual(0, subtreeTest.Count, "The number of elements should be zero.");
126 "The number of elements should be still zero.");
139 "Description strings should be equal.");
140 Assert.AreEqual(0, nodeTest.Count, "The number of elements should be zero.");
144 "The number of elements should be still zero.");
198 Assert.AreEqual(1, tokenTest.Count, "tokenTest should have the size 1 (1).")
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
e.0.golden 21 // T2.M should appear as method of T2.
29 // T3.M should appear as method of T3.
35 // T4.M should appear as method of T5 only if AllMethods is set.
48 // U1.M should appear as method of U1.
56 // U2.M should appear as method of U2 and as method of U3 only if ...
64 // U3.N should appear as method of U3 and as method of U2 only if ...
72 // U4.M should appear as method of U4.
96 // V4.M should appear as method of V2 and V3 if AllMethods is set.
107 // V6.M should appear as method of V1 and V5 if AllMethods is set.
  /prebuilts/go/linux-x86/src/go/doc/testdata/
e.0.golden 21 // T2.M should appear as method of T2.
29 // T3.M should appear as method of T3.
35 // T4.M should appear as method of T5 only if AllMethods is set.
48 // U1.M should appear as method of U1.
56 // U2.M should appear as method of U2 and as method of U3 only if ...
64 // U3.N should appear as method of U3 and as method of U2 only if ...
72 // U4.M should appear as method of U4.
96 // V4.M should appear as method of V2 and V3 if AllMethods is set.
107 // V6.M should appear as method of V1 and V5 if AllMethods is set.
  /external/clang/test/CodeGen/
builtins-systemz-vector-error.c 30 __builtin_s390_lcbb(cptr, -1); // expected-error {{argument should be a value from 0 to 15}}
31 __builtin_s390_lcbb(cptr, 16); // expected-error {{argument should be a value from 0 to 15}}
34 __builtin_s390_vlbb(cptr, -1); // expected-error {{argument should be a value from 0 to 15}}
35 __builtin_s390_vlbb(cptr, 16); // expected-error {{argument should be a value from 0 to 15}}
38 __builtin_s390_vpdi(vul, vul, -1); // expected-error {{argument should be a value from 0 to 15}}
39 __builtin_s390_vpdi(vul, vul, 16); // expected-error {{argument should be a value from 0 to 15}}
44 __builtin_s390_verimb(vuc, vuc, vuc, -1); // expected-error {{argument should be a value from 0 to 255}}
45 __builtin_s390_verimb(vuc, vuc, vuc, 256); // expected-error {{argument should be a value from 0 to 255}}
48 __builtin_s390_verimh(vus, vus, vus, -1); // expected-error {{argument should be a value from 0 to 255}}
49 __builtin_s390_verimh(vus, vus, vus, 256); // expected-error {{argument should be a value from 0 to 255}
    [all...]
  /external/autotest/client/bin/self-test/
test_redirect 11 print "This should go into the stdout logfile 1"
12 os.system ("echo This should go into the stdout logfile 2")
14 sys.stderr.write ("This should go into the stdout logfile 1\n")
  /external/autotest/client/site_tests/security_AltSyscall/
control 13 Syscalls which are allowed by the alt_syscall table should succeed, syscalls
14 blocked by the alt_syscall table should fail, and attempts to change the
15 alt_syscall table once it has been set should fail.
  /external/clang/test/ARCMT/
verify.m 5 // expected-error {{should be ignored}}
8 #error should not be ignored
9 // expected-error@-1 {{should not be ignored}}
  /external/clang/test/Preprocessor/
c90.c 12 /* CHECK-NOT: this comment should be missing
13 * CHECK: {{^}}// this comment should be present{{$}}
15 // this comment should be present
  /frameworks/base/core/tests/coretests/src/android/widget/touchmode/
TouchModeFocusableTest.java 52 assertFalse("should not be in touch mode to start off", mButton.isInTouchMode());
53 assertTrue("edit text should have focus", mEditText.isFocused());
54 assertTrue("edit text should be focusable in touch mode", mEditText.isFocusableInTouchMode());
60 assertTrue("should be in touch mode", mButton.isInTouchMode());
61 assertTrue("edit text should still have focus", mEditText.isFocused());
68 assertTrue("button should have focus", mButton.isFocused());
71 assertTrue("clicking edit text should have entered touch mode", mButton.isInTouchMode());
72 assertTrue("clicking edit text should have given it focus", mEditText.isFocused());
82 assertTrue("button should have focus",
86 assertTrue("should be in touch mode", mButton.isInTouchMode())
    [all...]
  /packages/apps/Email/res/xml/
senders_product.xml 4 platform devices should be defined in senders.xml.
6 Entries that are device, product or carrier-specific should be added as overlays
16 <!-- Actual entries should be in the overlay files found elsewhere -->
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
separator.s 1 ; Testing separators. This file should only have nops. See
6 ; Note that the next line is a syntax error. Should it be?
8 ; The next line is *not* a syntax error. Should it?
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
section-match-1.t 3 /* .secA should collect all sections with a prefix of ".sec."
7 /* .secB should be empty because .secA will have taken all of
11 /* .secC should match any sections with a ".sec.." prefix. */
  /frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
ItemTest.java 55 assertEquals("Title should be \"TestTitle\"", "TestTitle", mTitleView.getText().toString());
56 assertEquals("Summary should be \"TestSummary\"", "TestSummary",
58 assertSame("Icon should be the icon shape drawable", icon, mIconView.getDrawable());
59 assertEquals("Recycled icon level should not change", 1, recycledIcon.getLevel());
60 assertEquals("Icon should be level 4", 4, icon.getLevel());
71 assertEquals("Title should be \"TestTitle\"", "TestTitle", mTitleView.getText().toString());
72 assertEquals("Summary should be gone", View.GONE, mSummaryView.getVisibility());
73 assertEquals("IconContainer should be gone", View.GONE, mIconContainer.getVisibility());
87 assertEquals("Title should be \"TestTitle\"", "TestTitle", item.getTitle());
88 assertEquals("Summary should be \"TestSummary\"", "TestSummary", item.getSummary())
    [all...]
  /frameworks/native/cmds/installd/tests/
installd_utils_test.cpp 88 << badprefix1 << " should be allowed as a valid path";
92 << badprefix2 << " should be allowed as a valid path";
96 << badprefix3 << " should be allowed as a valid path";
100 << badprefix4 << " should be allowed as a valid path";
107 << internal1 << " should be allowed as a valid path";
112 << path2 << " should be allowed as a valid path";
116 << badint1 << " should be rejected as a invalid path";
120 << badint2 << " should be rejected as a invalid path";
122 // Only one subdir should be allowed.
125 << bad_path3 << " should be rejected as a invalid path"
    [all...]

Completed in 962 milliseconds

1 2 3 4 5 6 7 891011>>