Home
last modified time | relevance | path

Searched refs:c_empty (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fxcrt/
Dbytestring_unittest.cpp127 const char* const c_empty = ""; in TEST() local
137 EXPECT_FALSE(c_empty < empty); in TEST()
142 EXPECT_FALSE(empty < c_empty); in TEST()
154 EXPECT_TRUE(c_empty < a); in TEST()
158 EXPECT_FALSE(a < c_empty); in TEST()
165 EXPECT_TRUE(c_empty < abc); in TEST()
169 EXPECT_FALSE(abc < c_empty); in TEST()
176 EXPECT_TRUE(c_empty < def); in TEST()
180 EXPECT_FALSE(def < c_empty); in TEST()
1318 const char* const c_empty = ""; in TEST() local
[all …]
Dwidestring_unittest.cpp126 const wchar_t* const c_empty = L""; in TEST() local
137 EXPECT_FALSE(c_empty < empty); in TEST()
142 EXPECT_FALSE(empty < c_empty); in TEST()
154 EXPECT_TRUE(c_empty < a); in TEST()
158 EXPECT_FALSE(a < c_empty); in TEST()
165 EXPECT_TRUE(c_empty < abc); in TEST()
169 EXPECT_FALSE(abc < c_empty); in TEST()
176 EXPECT_TRUE(c_empty < def); in TEST()
180 EXPECT_FALSE(def < c_empty); in TEST()
1266 const wchar_t* const c_empty = L""; in TEST() local
[all …]
/external/llvm-project/polly/lib/External/isl/
Disl_test_cpp-generic.cc31 isl_set *c_empty = isl_set_read_from_str(ctx.get(), "{ : false }"); in test_pointer() local
32 isl::set empty = isl::manage(c_empty); in test_pointer()
/external/rust/crates/regex-automata/src/nfa/
Dcompiler.rs435 None => return Ok(self.c_empty()), in c_concat()
764 fn c_empty(&self) -> ThompsonRef { in c_empty() method