/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/ |
D | EJDB2JQLModule.java | 48 return jql(jqlid).getQuery(); in getQuery() 53 return jql(jqlid).getCollection(); in getCollection() 58 jql(jqlid).setCollection(collection); in setCollection() 63 jql(jqlid).withExplain(); in withExplain() 69 return jql(jqlid).getExplainLog(); in getExplainLog() 77 jql(jqlid).setSkip(Long.parseLong(val)); in setSkip() 82 return String.valueOf(jql(jqlid).getSkip()); in getSkip() 87 jql(jqlid).setLimit(Long.parseLong(val)); in setLimit() 92 return String.valueOf(jql(jqlid).getLimit()); in getLimit() 97 jql(jqlid).setString(placeholder, val); in psetString() [all …]
|
/third_party/ejdb/src/jql/tests/ |
D | jql_test1.c | 85 JQL jql; in _jql_test1_2() local 88 iwrc rc = jql_create(&jql, "c1", q); in _jql_test1_2() 93 rc = jql_matched(jql, jbl, &m); in _jql_test1_2() 97 jql_destroy(&jql); in _jql_test1_2() 204 JQL jql; in _jql_test1_3() local 215 iwrc rc = jql_create(&jql, "c1", qstr); in _jql_test1_3() 220 rc = jql_matched(jql, jbl, &m); in _jql_test1_3() 224 bool hapl = jql_has_apply(jql) || jql_has_projection(jql); in _jql_test1_3() 231 rc = jql_apply_and_project(jql, jbl, &out, 0, pool); in _jql_test1_3() 243 jql_destroy(&jql); in _jql_test1_3()
|
/third_party/ejdb/ |
D | BUILD.gn | 65 "src/jql", 76 "src/jql", 129 "src/jql/jql.c", 130 "src/jql/jqp.c", 158 "src/jql/jql.c", 159 "src/jql/jqp.c",
|
D | BASE.md | 20 * [Support of collection joins](#jql-collection-joins) 33 * **[JQL query language](#jql)** 34 * [Grammar](#jql-grammar) 35 * [Quick into](#jql-quick-introduction) 36 * [Data modification](#jql-data-modification) 37 * [Projections](#jql-projections) 38 * [Collection joins](#jql-collection-joins) 39 * [Sorting](#jql-sorting) 40 * [Query options](#jql-options) 41 * [Indexes and performance](#jql-indexes-and-performance-tips)
|
D | CAPI.md | 8 * [jql.h](https://github.com/Softmotions/ejdb/blob/master/src/jql/jql.h) Query building API
|
D | README.md | 20 * [Support of collection joins](#jql-collection-joins) 33 * **[JQL query language](#jql)** 34 * [Grammar](#jql-grammar) 35 * [Quick into](#jql-quick-introduction) 36 * [Data modification](#jql-data-modification) 37 * [Projections](#jql-projections) 38 * [Collection joins](#jql-collection-joins) 39 * [Sorting](#jql-sorting) 40 * [Query options](#jql-options) 41 * [Indexes and performance](#jql-indexes-and-performance-tips) [all …]
|
D | .gdbinit | 2 cd ./build/src/jql/tests
|
D | Changelog | 23 * Removed potential memory leaks in `jql_set_xx` query API (jql.h) 261 * Safer `jql_destroy` (jql.h) 262 * Added `jql_set_json_jbl` (jql.h)
|
/third_party/ejdb/src/bindings/ejdb2_node/ |
D | index.js | 104 return this.jql._impl; 115 constructor(jql, opts) { argument 124 this.jql = jql; 126 this.promise = this._impl.jql_stream_attach(jql, this, [opts.limit, opts.explainCallback])
|
D | ejdb2_node.c | 1323 JQL jql; member 1331 if (ql->jql) { in jn_jnql_destroy_mt() 1332 jql_destroy(&ql->jql); in jn_jnql_destroy_mt() 1376 …rc = jql_create2(&jnql->jql, collection, query, JQL_KEEP_QUERY_ON_PARSE_ERROR | JQL_SILENT_ON_PARS… in jn_jql_init() 1381 napi_value vcoll = jn_create_string(env, jql_collection(jnql->jql)); in jn_jql_init() 1389 if ((rc == JQL_ERROR_QUERY_PARSE) && jnql && jnql->jql) { in jn_jql_init() 1390 JNTHROW(env, rc, jql_error(jnql->jql)); in jn_jql_init() 1617 JQL q = qs->jnql->jql; in jn_jql_stream_execute() 1923 … rc = jql_set_str2(jnql->jql, splh, iplh, svalue, jn_jql_free_set_string_value, vpool); // -V614 in jn_jql_set() 1925 … rc = jql_set_regexp2(jnql->jql, splh, iplh, svalue, jn_jql_free_set_string_value, vpool); in jn_jql_set() [all …]
|
/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/ |
D | JQL.java | 415 Reference(JQL jql, ReferenceQueue<JQL> rq) { in Reference() argument 416 super(jql, rq); in Reference() 417 handle = jql._handle; in Reference()
|
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/ |
D | index.d.ts | 30 export type JQLExecuteCallback = (doc: JBDOC, jql?: JQL) => any; 33 (jql: JQL): Promise<T>;
|
D | index.js | 64 constructor(db, jql) { argument 66 this._jql = jql;
|
/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/ |
D | JQL.java | 421 Reference(JQL jql, ReferenceQueue<JQL> rq) { in Reference() argument 422 super(jql, rq); in Reference() 423 handle = jql._handle; in Reference()
|
/third_party/ejdb/src/bindings/ejdb2_react_native/tests/ |
D | App.js | 182 .useExecute((jbdoc, jql) => { 183 t.true(jql != null);
|
/third_party/ejdb/src/ |
D | CMakeLists.txt | 8 set(MODULES util jql jbi) 135 ${CMAKE_CURRENT_SOURCE_DIR}/jql/jql.h)
|
D | ejdb2.c | 956 JQL jql; in ejdb_count2() local 957 iwrc rc = jql_create(&jql, coll, q); in ejdb_count2() 959 rc = _jb_count(db, jql, count, limit, 0); in ejdb_count2() 960 jql_destroy(&jql); in ejdb_count2()
|
/third_party/ejdb/src/jql/ |
D | README.md | 9 … Here is the formal parser grammar: https://github.com/Softmotions/ejdb/blob/master/src/jql/jqp.leg 74 …es us a kind of interactive CLI. The same job can be done using pure `C` API too (`ejdb2.h jql.h`). 76 NOTE: Take a look into [JQL test cases](https://github.com/Softmotions/ejdb/blob/master/src/jql/tes…
|
/third_party/cups-filters/cupsfilters/ |
D | image.pgm | 867 …JAEON7"1@QXSMS\^_emrqe]YJ8)&'((17E\lmd^ngbelk^S92)#$&&#('0DZaXL33459BNW^jql[H=9-143126;<878?IV_…
|