Home
last modified time | relevance | path

Searched refs:is3 (Results 1 – 25 of 25) sorted by relevance

/external/libcxx/test/std/containers/sequences/list/list.erasure/
Derase_if.pass.cpp36 auto is3 = [](auto v) { return v == 3;}; in test() local
48 test0(S({1,2}), is3, S({1,2})); in test()
50 test0(S({1,1}), is3, S({1,1})); in test()
54 test0(S({1,2,3}), is3, S({1,2})); in test()
61 test0(S({1,1,2}), is3, S({1,1,2})); in test()
64 test0(S({1,2,2}), is3, S({1,2,2})); in test()
/external/libcxx/test/std/containers/sequences/vector/vector.erasure/
Derase_if.pass.cpp36 auto is3 = [](auto v) { return v == 3;}; in test() local
48 test0(S({1,2}), is3, S({1,2})); in test()
50 test0(S({1,1}), is3, S({1,1})); in test()
54 test0(S({1,2,3}), is3, S({1,2})); in test()
61 test0(S({1,1,2}), is3, S({1,1,2})); in test()
64 test0(S({1,2,2}), is3, S({1,2,2})); in test()
/external/libcxx/test/std/containers/sequences/deque/deque.erasure/
Derase_if.pass.cpp36 auto is3 = [](auto v) { return v == 3;}; in test() local
48 test0(S({1,2}), is3, S({1,2})); in test()
50 test0(S({1,1}), is3, S({1,1})); in test()
54 test0(S({1,2,3}), is3, S({1,2})); in test()
61 test0(S({1,1,2}), is3, S({1,1,2})); in test()
64 test0(S({1,2,2}), is3, S({1,2,2})); in test()
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.erasure/
Derase_if.pass.cpp36 auto is3 = [](auto v) { return v == 3;}; in test() local
48 test0(S({1,2}), is3, S({1,2})); in test()
50 test0(S({1,1}), is3, S({1,1})); in test()
54 test0(S({1,2,3}), is3, S({1,2})); in test()
61 test0(S({1,1,2}), is3, S({1,1,2})); in test()
64 test0(S({1,2,2}), is3, S({1,2,2})); in test()
/external/libcxx/test/std/containers/associative/multiset/multiset.erasure/
Derase_if.pass.cpp36 auto is3 = [](auto v) { return v == 3;}; in test() local
48 test0(S({1,2}), is3, S({1,2})); in test()
50 test0(S({1,1}), is3, S({1,1})); in test()
54 test0(S({1,2,3}), is3, S({1,2})); in test()
61 test0(S({1,1,2}), is3, S({1,1,2})); in test()
64 test0(S({1,2,2}), is3, S({1,2,2})); in test()
/external/libcxx/test/std/containers/unord/unord.multiset/
Derase_if.pass.cpp49 auto is3 = [](auto v) { return v == 3;}; in test() local
61 test0<S>({1,2}, is3, {1,2}); in test()
63 test0<S>({1,1}, is3, {1,1}); in test()
67 test0<S>({1,2,3}, is3, {1,2}); in test()
74 test0<S>({1,1,2}, is3, {1,1,2}); in test()
77 test0<S>({1,2,2}, is3, {1,2,2}); in test()
/external/libcxx/test/std/containers/associative/multimap/multimap.erasure/
Derase_if.pass.cpp47 auto is3 = [](auto v) { return v.first == 3;}; in test() local
59 test0<S>({1,2}, is3, {1,2}); in test()
61 test0<S>({1,1}, is3, {1,1}); in test()
65 test0<S>({1,2,3}, is3, {1,2}); in test()
72 test0<S>({1,1,2}, is3, {1,1,2}); in test()
75 test0<S>({1,2,2}, is3, {1,2,2}); in test()
/external/libcxx/test/std/containers/unord/unord.multimap/
Derase_if.pass.cpp48 auto is3 = [](auto v) { return v.first == 3;}; in test() local
60 test0<S>({1,2}, is3, {1,2}); in test()
62 test0<S>({1,1}, is3, {1,1}); in test()
66 test0<S>({1,2,3}, is3, {1,2}); in test()
73 test0<S>({1,1,2}, is3, {1,1,2}); in test()
76 test0<S>({1,2,2}, is3, {1,2,2}); in test()
/external/libcxx/test/std/containers/associative/set/set.erasure/
Derase_if.pass.cpp36 auto is3 = [](auto v) { return v == 3;}; in test() local
48 test0(S({1,2}), is3, S({1,2})); in test()
52 test0(S({1,2,3}), is3, S({1,2})); in test()
/external/libcxx/test/std/containers/associative/map/map.erasure/
Derase_if.pass.cpp47 auto is3 = [](auto v) { return v.first == 3;}; in test() local
59 test0<S>({1,2}, is3, {1,2}); in test()
63 test0<S>({1,2,3}, is3, {1,2}); in test()
/external/libcxx/test/std/containers/unord/unord.set/
Derase_if.pass.cpp50 auto is3 = [](auto v) { return v == 3;}; in test() local
62 test0<S>({1,2}, is3, {1,2}); in test()
66 test0<S>({1,2,3}, is3, {1,2}); in test()
/external/libcxx/test/std/containers/unord/unord.map/
Derase_if.pass.cpp48 auto is3 = [](auto v) { return v.first == 3;}; in test() local
60 test0<S>({1,2}, is3, {1,2}); in test()
64 test0<S>({1,2,3}, is3, {1,2}); in test()
/external/javasqlite/src/main/native/
Dsqlite_jni.c53 int is3; /* True for SQLITE3 handle */ member
86 int is3; /* True for SQLITE3 handle */ member
102 int is3; /* True for SQLITE3 handle */ member
564 if (h->is3) { in callback()
794 if (h->is3) { in doclose()
813 if (h->is3) { in doclose()
898 if (h->is3) { in Java_SQLite_Database__1busy_1timeout()
938 if (h->is3) { in Java_SQLite_Database_dbversion()
961 if (h->is3) { in Java_SQLite_Database__1last_1insert_1rowid()
986 if (h->is3) { in Java_SQLite_Database__1changes()
[all …]
/external/javasqlite/src/main/java/SQLite/
DDatabase.java296 if (!is3()) { in get_table()
349 if (!is3()) { in get_table()
403 if (!is3()) { in get_table()
745 public native boolean is3(); in is3() method in Database
DShell.java159 if (db.is3()) { in set_table_name()
661 if (s2.db.is3()) { in newrow()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/
DIOMethodsTest.java166 final InputStream is3 = new FileInputStream(file); in compareReads() local
167 final ArchiveInputStream ais3 = factory.createArchiveInputStream(archiverName, is3); in compareReads()
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCPreparedStatement.java91 if (!conn.db.is3()) {
221 if (conn.db.is3()) {
320 if (conn.db.is3()) {
344 if (conn.db.is3()) {
367 if (conn.db.is3()) {
DJDBCStatement.java119 if (conn.db.is3() && in executeQuery()
DJDBCConnection.java364 if (db.is3() && SQLite.JDBCDriver.sharedCache) { in setTransactionIsolation()
DJDBCResultSet.java1083 if (this.s.conn.db.is3()) {
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ScalarEvolution/
Ddifferent-loops-recs.ll161 ; CHECK: %is3 = add i32 %v1, %sum2
163 ; CHECK: %ec2 = add i32 %is1, %is3
206 %is3 = add i32 %v1, %sum2
207 %ec2 = add i32 %is1, %is3
/external/hyphenation-patterns/ga/
Dhyph-ga.pat.txt1569is3
/external/hyphenation-patterns/nb/
Dhyph-nb.pat.txt10266 is3år
/external/hyphenation-patterns/nn/
Dhyph-nn.pat.txt10266 is3år
/external/icu/icu4c/source/data/misc/
DsupplementalData.txt20514 "is3",