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

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/base/strings/
pattern_unittest.cc 12 EXPECT_TRUE(MatchPattern("www.google.com", "*.com"));
13 EXPECT_TRUE(MatchPattern("www.google.com", "*"));
15 EXPECT_TRUE(MatchPattern("Hello", "H?l?o"));
18 EXPECT_TRUE(MatchPattern("Hello*1234", "He??o\\*1*"));
20 EXPECT_TRUE(MatchPattern("", "*"));
21 EXPECT_TRUE(MatchPattern("", "?"));
22 EXPECT_TRUE(MatchPattern("", ""));
24 EXPECT_TRUE(MatchPattern("Hello*", "Hello*"));
29 EXPECT_TRUE(MatchPattern("heart: \xe2\x99\xa0", "*\xe2\x99\xa0"));
30 EXPECT_TRUE(MatchPattern("heart: \xe2\x99\xa0.", "heart: ?."))
    [all...]
  /bootable/recovery/tests/unit/
locale_test.cpp 22 EXPECT_TRUE(matches_locale("zh_CN", "zh_CN_#Hans"));
23 EXPECT_TRUE(matches_locale("zh", "zh_CN_#Hans"));
25 EXPECT_TRUE(matches_locale("en_GB", "en_GB"));
26 EXPECT_TRUE(matches_locale("en", "en_GB"));
  /external/v8/test/unittests/
char-predicates-unittest.cc 15 EXPECT_TRUE(WhiteSpace::Is(0x0009));
16 EXPECT_TRUE(WhiteSpace::Is(0x000B));
17 EXPECT_TRUE(WhiteSpace::Is(0x000C));
18 EXPECT_TRUE(WhiteSpace::Is(' '));
19 EXPECT_TRUE(WhiteSpace::Is(0x00A0));
20 EXPECT_TRUE(WhiteSpace::Is(0x180E));
21 EXPECT_TRUE(WhiteSpace::Is(0xFEFF));
29 EXPECT_TRUE(WhiteSpaceOrLineTerminator::Is(0x0009));
30 EXPECT_TRUE(WhiteSpaceOrLineTerminator::Is(0x000B));
31 EXPECT_TRUE(WhiteSpaceOrLineTerminator::Is(0x000C))
    [all...]
  /system/tools/aidl/
type_cpp_unittest.cpp 36 EXPECT_TRUE(types_.HasTypeByCanonicalName("byte"));
37 EXPECT_TRUE(types_.HasTypeByCanonicalName("int"));
38 EXPECT_TRUE(types_.HasTypeByCanonicalName("long"));
39 EXPECT_TRUE(types_.HasTypeByCanonicalName("float"));
40 EXPECT_TRUE(types_.HasTypeByCanonicalName("double"));
41 EXPECT_TRUE(types_.HasTypeByCanonicalName("boolean"));
42 EXPECT_TRUE(types_.HasTypeByCanonicalName("char"));
43 EXPECT_TRUE(types_.HasTypeByCanonicalName("String"));
47 EXPECT_TRUE(
  /art/compiler/utils/arm/
managed_register_arm_test.cc 26 EXPECT_TRUE(reg.IsNoRegister());
27 EXPECT_TRUE(!reg.Overlaps(reg));
32 EXPECT_TRUE(!reg.IsNoRegister());
33 EXPECT_TRUE(reg.IsCoreRegister());
34 EXPECT_TRUE(!reg.IsSRegister());
35 EXPECT_TRUE(!reg.IsDRegister());
36 EXPECT_TRUE(!reg.IsRegisterPair());
40 EXPECT_TRUE(!reg.IsNoRegister());
41 EXPECT_TRUE(reg.IsCoreRegister());
42 EXPECT_TRUE(!reg.IsSRegister())
    [all...]
  /art/compiler/utils/arm64/
managed_register_arm64_test.cc 27 EXPECT_TRUE(reg.IsNoRegister());
28 EXPECT_TRUE(!reg.Overlaps(reg));
35 EXPECT_TRUE(!reg.IsNoRegister());
36 EXPECT_TRUE(reg.IsXRegister());
37 EXPECT_TRUE(!reg.IsWRegister());
38 EXPECT_TRUE(!reg.IsDRegister());
39 EXPECT_TRUE(!reg.IsSRegister());
40 EXPECT_TRUE(reg.Overlaps(wreg));
45 EXPECT_TRUE(!reg.IsNoRegister());
46 EXPECT_TRUE(reg.IsXRegister())
    [all...]
  /external/v8/test/unittests/base/
cpu-unittest.cc 15 EXPECT_TRUE(!cpu.has_sse() || cpu.has_mmx());
16 EXPECT_TRUE(!cpu.has_sse2() || cpu.has_sse());
17 EXPECT_TRUE(!cpu.has_sse3() || cpu.has_sse2());
18 EXPECT_TRUE(!cpu.has_ssse3() || cpu.has_sse3());
19 EXPECT_TRUE(!cpu.has_sse41() || cpu.has_sse3());
20 EXPECT_TRUE(!cpu.has_sse42() || cpu.has_sse41());
21 EXPECT_TRUE(!cpu.has_avx() || cpu.has_sse2());
22 EXPECT_TRUE(!cpu.has_fma3() || cpu.has_avx());
25 EXPECT_TRUE(!cpu.has_vfp3_d32() || cpu.has_vfp3());
33 EXPECT_TRUE(cpu.has_fpu())
    [all...]
  /bionic/tests/
ctype_test.cpp 22 EXPECT_TRUE(isalnum('1'));
23 EXPECT_TRUE(isalnum('a'));
24 EXPECT_TRUE(isalnum('A'));
31 EXPECT_TRUE(isalpha('a'));
32 EXPECT_TRUE(isalpha('A'));
38 EXPECT_TRUE(isascii('\x7f'));
44 EXPECT_TRUE(isblank(' '));
45 EXPECT_TRUE(isblank('\t'));
50 EXPECT_TRUE(iscntrl('\b'));
54 EXPECT_TRUE(isdigit('1'))
    [all...]
  /frameworks/minikin/tests/
GraphemeBreakTests.cpp 36 EXPECT_TRUE(IsBreak("U+D800 | U+D800")); // two leading surrogates
37 EXPECT_TRUE(IsBreak("U+DC00 | U+DC00")); // two trailing surrogates
38 EXPECT_TRUE(IsBreak("'a' | U+D800")); // lonely leading surrogate
39 EXPECT_TRUE(IsBreak("U+DC00 | 'a'")); // lonely trailing surrogate
40 EXPECT_TRUE(IsBreak("U+D800 | 'a'")); // leading surrogate followed by non-surrogate
41 EXPECT_TRUE(IsBreak("'a' | U+DC00")); // non-surrogate followed by trailing surrogate
46 EXPECT_TRUE(IsBreak("| 'a'"));
47 EXPECT_TRUE(IsBreak("'a' |"));
53 EXPECT_TRUE(IsBreak("'a' | U+2028")); // Line separator
54 EXPECT_TRUE(IsBreak("'a' | U+000D")); // L
    [all...]
MinikinInternalTest.cpp 24 EXPECT_TRUE(isEmoji(0x0023)); // NUMBER SIGN
25 EXPECT_TRUE(isEmoji(0x0035)); // DIGIT FIVE
26 EXPECT_TRUE(isEmoji(0x1F0CF)); // PLAYING CARD BLACK JOKER
27 EXPECT_TRUE(isEmoji(0x1F1E9)); // REGIONAL INDICATOR SYMBOL LETTER D
  /external/protobuf/src/google/protobuf/stubs/
type_traits_unittest.cc 172 EXPECT_TRUE(is_integral<bool>::value);
173 EXPECT_TRUE(is_integral<char>::value);
174 EXPECT_TRUE(is_integral<unsigned char>::value);
175 EXPECT_TRUE(is_integral<signed char>::value);
176 EXPECT_TRUE(is_integral<wchar_t>::value);
177 EXPECT_TRUE(is_integral<int>::value);
178 EXPECT_TRUE(is_integral<unsigned int>::value);
179 EXPECT_TRUE(is_integral<short>::value);
180 EXPECT_TRUE(is_integral<unsigned short>::value);
181 EXPECT_TRUE(is_integral<long>::value)
    [all...]
  /external/libyuv/files/unit_test/
video_common_test.cc 65 EXPECT_TRUE(TestValidFourCC(FOURCC_I420, FOURCC_BPP_I420));
66 EXPECT_TRUE(TestValidFourCC(FOURCC_I420, FOURCC_BPP_I420));
67 EXPECT_TRUE(TestValidFourCC(FOURCC_I422, FOURCC_BPP_I422));
68 EXPECT_TRUE(TestValidFourCC(FOURCC_I444, FOURCC_BPP_I444));
69 EXPECT_TRUE(TestValidFourCC(FOURCC_I411, FOURCC_BPP_I411));
70 EXPECT_TRUE(TestValidFourCC(FOURCC_I400, FOURCC_BPP_I400));
71 EXPECT_TRUE(TestValidFourCC(FOURCC_NV21, FOURCC_BPP_NV21));
72 EXPECT_TRUE(TestValidFourCC(FOURCC_NV12, FOURCC_BPP_NV12));
73 EXPECT_TRUE(TestValidFourCC(FOURCC_YUY2, FOURCC_BPP_YUY2));
74 EXPECT_TRUE(TestValidFourCC(FOURCC_UYVY, FOURCC_BPP_UYVY))
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdfsave_embeddertest.cpp 19 EXPECT_TRUE(OpenDocument("hello_world.pdf"));
20 EXPECT_TRUE(FPDF_SaveAsCopy(document(), this, 0));
26 EXPECT_TRUE(OpenDocument("hello_world.pdf"));
27 EXPECT_TRUE(FPDF_SaveWithVersion(document(), this, 0, 14));
33 EXPECT_TRUE(OpenDocument("hello_world.pdf"));
34 EXPECT_TRUE(FPDF_SaveWithVersion(document(), this, 0, -1));
38 EXPECT_TRUE(FPDF_SaveWithVersion(document(), this, 0, 0));
42 EXPECT_TRUE(FPDF_SaveWithVersion(document(), this, 0, 18));
47 EXPECT_TRUE(OpenDocument("hello_world.pdf"));
48 EXPECT_TRUE(FPDF_SaveAsCopy(document(), this, 0))
    [all...]
  /external/llvm/unittests/ADT/
APSIntTest.cpp 19 EXPECT_TRUE(A.isUnsigned());
31 EXPECT_TRUE(D.isUnsigned());
35 EXPECT_TRUE(A.isUnsigned());
40 EXPECT_TRUE(A.isUnsigned());
45 EXPECT_TRUE(APSInt::get(7).isSigned());
49 EXPECT_TRUE(APSInt::get(-7).isSigned());
56 EXPECT_TRUE(APSInt::getUnsigned(7).isUnsigned());
60 EXPECT_TRUE(APSInt::getUnsigned(-7).isUnsigned());
67 EXPECT_TRUE(APSInt(APInt(3, 7), true).isUnsigned());
68 EXPECT_TRUE(APSInt(APInt(3, 7), false).isSigned())
    [all...]
  /external/clang/unittests/Basic/
CharInfoTest.cpp 44 EXPECT_TRUE(isASCII('\0'));
45 EXPECT_TRUE(isASCII('\n'));
46 EXPECT_TRUE(isASCII(' '));
47 EXPECT_TRUE(isASCII('a'));
48 EXPECT_TRUE(isASCII('\x7f'));
55 EXPECT_TRUE(isIdentifierHead('a'));
56 EXPECT_TRUE(isIdentifierHead('A'));
57 EXPECT_TRUE(isIdentifierHead('z'));
58 EXPECT_TRUE(isIdentifierHead('Z'));
59 EXPECT_TRUE(isIdentifierHead('_'))
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_suppressions_test.cc 27 EXPECT_TRUE(MyMatch("foobar$", "foobar"));
29 EXPECT_TRUE(MyMatch("foobar", "foobar"));
30 EXPECT_TRUE(MyMatch("*foobar*", "foobar"));
31 EXPECT_TRUE(MyMatch("foobar", "prefix_foobar_postfix"));
32 EXPECT_TRUE(MyMatch("*foobar*", "prefix_foobar_postfix"));
33 EXPECT_TRUE(MyMatch("foo*bar", "foo_middle_bar"));
34 EXPECT_TRUE(MyMatch("foo*bar", "foobar"));
35 EXPECT_TRUE(MyMatch("foo*bar*baz", "foo_middle_bar_another_baz"));
36 EXPECT_TRUE(MyMatch("foo*bar*baz", "foo_middle_barbaz"));
37 EXPECT_TRUE(MyMatch("^foobar", "foobar"))
    [all...]
  /external/webrtc/webrtc/base/
optionsfile_unittest.cc 58 EXPECT_TRUE(store_->Save());
62 EXPECT_TRUE(store_->SetStringValue(kTestOptionA, kTestString1));
63 EXPECT_TRUE(store_->Save());
64 EXPECT_TRUE(store_->Load());
65 EXPECT_TRUE(store_->SetStringValue(kTestOptionB, kTestString2));
66 EXPECT_TRUE(store_->Save());
67 EXPECT_TRUE(store_->Load());
68 EXPECT_TRUE(store_->GetStringValue(kTestOptionA, &out1));
69 EXPECT_TRUE(store_->GetStringValue(kTestOptionB, &out2));
72 EXPECT_TRUE(store_->RemoveValue(kTestOptionA))
    [all...]
ratelimiter_unittest.cc 24 EXPECT_TRUE(limiter.CanUse(0, monday));
25 EXPECT_TRUE(limiter.CanUse(1000, monday));
26 EXPECT_TRUE(limiter.CanUse(1999, monday));
27 EXPECT_TRUE(limiter.CanUse(2000, monday));
32 EXPECT_TRUE(limiter.CanUse(0, monday));
33 EXPECT_TRUE(limiter.CanUse(999, monday));
34 EXPECT_TRUE(limiter.CanUse(1000, monday));
39 EXPECT_TRUE(limiter.CanUse(0, monday));
42 EXPECT_TRUE(limiter.CanUse(0, tuesday));
43 EXPECT_TRUE(limiter.CanUse(1, tuesday))
    [all...]
  /frameworks/av/services/mediaresourcemanager/test/
ServiceLog_test.cpp 41 EXPECT_TRUE(logString.contains("log1"));
46 EXPECT_TRUE(logString.contains(kTestLogPrefix));
47 EXPECT_TRUE(logString.contains("log1"));
52 EXPECT_TRUE(logString.contains("log1"));
53 EXPECT_TRUE(logString.contains("log2"));
58 EXPECT_TRUE(logString.contains("log1"));
59 EXPECT_TRUE(logString.contains("log2"));
60 EXPECT_TRUE(logString.contains("log3"));
66 EXPECT_TRUE(logString.contains("log2"));
67 EXPECT_TRUE(logString.contains("log3"))
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 26 EXPECT_TRUE(notMatches("class X {};", HasEmptyName));
33 EXPECT_TRUE(notMatches("class X {};", HasEmptyName));
40 EXPECT_TRUE(notMatches("class X {};", IsDerivedFromEmpty));
47 EXPECT_TRUE(Finder.addDynamicMatcher(decl(), nullptr));
48 EXPECT_TRUE(Finder.addDynamicMatcher(callExpr(), nullptr));
49 EXPECT_TRUE(Finder.addDynamicMatcher(constantArrayType(hasSize(42)),
59 EXPECT_TRUE(notMatches("", decl(usingDecl())));
60 EXPECT_TRUE(matches("namespace x { class X {}; } using x::X;",
66 EXPECT_TRUE(matches("typedef int X;", NamedX));
67 EXPECT_TRUE(matches("int X;", NamedX))
    [all...]
  /art/compiler/utils/x86/
managed_register_x86_test.cc 26 EXPECT_TRUE(reg.IsNoRegister());
27 EXPECT_TRUE(!reg.Overlaps(reg));
32 EXPECT_TRUE(!reg.IsNoRegister());
33 EXPECT_TRUE(reg.IsCpuRegister());
34 EXPECT_TRUE(!reg.IsXmmRegister());
35 EXPECT_TRUE(!reg.IsX87Register());
36 EXPECT_TRUE(!reg.IsRegisterPair());
40 EXPECT_TRUE(!reg.IsNoRegister());
41 EXPECT_TRUE(reg.IsCpuRegister());
42 EXPECT_TRUE(!reg.IsXmmRegister())
    [all...]
  /art/compiler/utils/x86_64/
managed_register_x86_64_test.cc 26 EXPECT_TRUE(reg.IsNoRegister());
27 EXPECT_TRUE(!reg.Overlaps(reg));
32 EXPECT_TRUE(!reg.IsNoRegister());
33 EXPECT_TRUE(reg.IsCpuRegister());
34 EXPECT_TRUE(!reg.IsXmmRegister());
35 EXPECT_TRUE(!reg.IsX87Register());
36 EXPECT_TRUE(!reg.IsRegisterPair());
40 EXPECT_TRUE(!reg.IsNoRegister());
41 EXPECT_TRUE(reg.IsCpuRegister());
42 EXPECT_TRUE(!reg.IsXmmRegister())
    [all...]
  /external/libchrome/base/
vlog_unittest.cc 35 EXPECT_TRUE(MatchVlogPattern("", ""));
36 EXPECT_TRUE(MatchVlogPattern("", "****"));
41 EXPECT_TRUE(MatchVlogPattern("blah", "blah"));
44 EXPECT_TRUE(MatchVlogPattern("blah", "bl?h"));
47 EXPECT_TRUE(MatchVlogPattern("blah", "?lah"));
52 EXPECT_TRUE(MatchVlogPattern("blah", "bl*h"));
53 EXPECT_TRUE(MatchVlogPattern("blabcdefh", "bl*h"));
54 EXPECT_TRUE(MatchVlogPattern("blh", "bl*h"));
55 EXPECT_TRUE(MatchVlogPattern("blah", "*blah"));
56 EXPECT_TRUE(MatchVlogPattern("ohblah", "*blah"))
    [all...]
  /external/libchrome/base/files/
scoped_temp_dir_unittest.cc 21 EXPECT_TRUE(DirectoryExists(test_path));
24 EXPECT_TRUE(dir.Set(test_path));
25 EXPECT_TRUE(dir.IsValid());
31 EXPECT_TRUE(dir.Set(test_path));
33 EXPECT_TRUE(DirectoryExists(test_path));
39 EXPECT_TRUE(DirectoryExists(test_path));
44 EXPECT_TRUE(dir.Set(test_path));
55 EXPECT_TRUE(dir.CreateUniqueTempDir());
57 EXPECT_TRUE(DirectoryExists(test_path));
59 EXPECT_TRUE(base::GetTempDir(&tmp_dir))
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
bigintegertest.cpp 29 EXPECT_TRUE(kZero.IsZero());
30 EXPECT_TRUE(kZero == kZero);
31 EXPECT_TRUE(kZero == BIGINTEGER_LITERAL("0"));
32 EXPECT_TRUE(kZero == BIGINTEGER_LITERAL("00"));
35 EXPECT_TRUE(a == a);
36 EXPECT_TRUE(a == BIGINTEGER_LITERAL("123"));
37 EXPECT_TRUE(a == BIGINTEGER_LITERAL("0123"));
47 EXPECT_TRUE(kZero == a);
50 EXPECT_TRUE(kOne == a);
53 EXPECT_TRUE(BigInteger(2) == a)
    [all...]

Completed in 2447 milliseconds

1 2 3 4 5 6 7 8 91011>>