/external/libcxx/test/std/containers/sequences/list/list.erasure/ |
D | erase_if.pass.cpp | 36 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/ |
D | erase_if.pass.cpp | 36 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/ |
D | erase_if.pass.cpp | 36 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/ |
D | erase_if.pass.cpp | 36 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/ |
D | erase_if.pass.cpp | 36 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/ |
D | erase_if.pass.cpp | 49 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/ |
D | erase_if.pass.cpp | 47 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/ |
D | erase_if.pass.cpp | 48 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/ |
D | erase_if.pass.cpp | 36 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/ |
D | erase_if.pass.cpp | 47 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/ |
D | erase_if.pass.cpp | 50 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/ |
D | erase_if.pass.cpp | 48 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/ |
D | sqlite_jni.c | 53 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/ |
D | Database.java | 296 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
|
D | Shell.java | 159 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/ |
D | IOMethodsTest.java | 166 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/ |
D | JDBCPreparedStatement.java | 91 if (!conn.db.is3()) { 221 if (conn.db.is3()) { 320 if (conn.db.is3()) { 344 if (conn.db.is3()) { 367 if (conn.db.is3()) {
|
D | JDBCStatement.java | 119 if (conn.db.is3() && in executeQuery()
|
D | JDBCConnection.java | 364 if (db.is3() && SQLite.JDBCDriver.sharedCache) { in setTransactionIsolation()
|
D | JDBCResultSet.java | 1083 if (this.s.conn.db.is3()) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ScalarEvolution/ |
D | different-loops-recs.ll | 161 ; 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/ |
D | hyph-ga.pat.txt | 1569 cóis3
|
/external/hyphenation-patterns/nb/ |
D | hyph-nb.pat.txt | 10266 is3år
|
/external/hyphenation-patterns/nn/ |
D | hyph-nn.pat.txt | 10266 is3år
|
/external/icu/icu4c/source/data/misc/ |
D | supplementalData.txt | 20514 "is3",
|