Home
last modified time | relevance | path

Searched defs:collection (Results 1 – 25 of 122) sorted by relevance

12345

/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/
DEJDB2.java82 public JQL createQuery(String query, String collection) throws EJDB2Exception { in createQuery()
94 public long put(String collection, String json) throws EJDB2Exception { in put()
106 public long put(String collection, JSON json) throws EJDB2Exception { in put()
122 public long put(String collection, String json, long id) throws EJDB2Exception { in put()
138 public long put(String collection, JSON json, long id) throws EJDB2Exception { in put()
159 public void del(String collection, long id) throws EJDB2Exception { in del()
175 public void patch(String collection, String patch, long id) throws EJDB2Exception { in patch()
187 public void patch(String collection, JSON patch, long id) throws EJDB2Exception { in patch()
195 public void patchOrPut(String collection, String patch, long id) { in patchOrPut()
203 public void patchOrPut(String collection, JSON patch, long id) { in patchOrPut()
[all …]
DJQL.java66 private String collection; field in JQL
97 public JQL setCollection(String collection) { in setCollection()
401 JQL(EJDB2 db, String query, String collection) throws EJDB2Exception { in JQL()
438 private native void _init(EJDB2 db, String query, String collection); in _init()
/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/
DEJDB2.java85 public JQL createQuery(String query, String collection) throws EJDB2Exception { in createQuery()
97 public long put(String collection, String json) throws EJDB2Exception { in put()
112 public long put(String collection, String json, long id) throws EJDB2Exception { in put()
133 public void del(String collection, long id) throws EJDB2Exception { in del()
149 public void patch(String collection, String patch, long id) throws EJDB2Exception { in patch()
157 public void patchOrPut(String collection, String patch, long id) { in patchOrPut()
177 public void get(String collection, long id, OutputStream out) { in get()
196 public String getAsString(String collection, long id) throws UnsupportedEncodingException { in getAsString()
210 public void getPrettified(String collection, long id, OutputStream out) { in getPrettified()
271 public EJDB2 removeCollection(String collection) throws EJDB2Exception { in removeCollection()
[all …]
DJQL.java68 private String collection; field in JQL
99 public JQL setCollection(String collection) { in setCollection()
395 JQL(EJDB2 db, String query, String collection) throws EJDB2Exception { in JQL()
432 private native void _init(EJDB2 db, String query, String collection); in _init()
/third_party/gstreamer/gstreamer/gst/
Dgststreamcollection.c130 gst_stream_collection_init (GstStreamCollection * collection) in gst_stream_collection_init()
137 release_gst_stream (GstStream * stream, GstStreamCollection * collection) in release_gst_stream()
147 GstStreamCollection *collection = GST_STREAM_COLLECTION_CAST (object); in gst_stream_collection_dispose() local
174 GstStreamCollection *collection; in gst_stream_collection_new() local
187 gst_stream_collection_set_upstream_id (GstStreamCollection * collection, in gst_stream_collection_set_upstream_id()
212 gst_stream_collection_get_upstream_id (GstStreamCollection * collection) in gst_stream_collection_get_upstream_id()
225 GstStreamCollection *collection; in gst_stream_collection_set_property() local
244 GstStreamCollection *collection; in gst_stream_collection_get_property() local
261 GstStreamCollection * collection) in proxy_stream_notify_cb()
281 gst_stream_collection_add_stream (GstStreamCollection * collection, in gst_stream_collection_add_stream()
[all …]
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/
Dindex.js93 get collection() { getter in JQL
473 createQuery(query, collection) { argument
487 put(collection, json, id = 0) { argument
500 patch(collection, json, id) { argument
514 patchOrPut(collection, json, id) { argument
526 get(collection, id) { argument
538 getOrNull(collection, id) { argument
555 del(collection, id) { argument
576 removeCollection(collection) { argument
588 ensureStringIndex(collection, path, unique) { argument
[all …]
/third_party/ejdb/src/bindings/ejdb2_node/
Dindex.js249 constructor(db, query, collection) { argument
515 put(collection, json, id) { argument
530 patch(collection, json, id) { argument
543 patchOrPut(collection, json, id) { argument
554 get(collection, id) { argument
566 getOrNull(collection, id) { argument
592 del(collection, id) { argument
615 ensureStringIndex(collection, path, unique) { argument
627 removeStringIndex(collection, path, unique) { argument
639 ensureIntIndex(collection, path, unique) { argument
[all …]
/third_party/flutter/engine/flutter/third_party/txt/tests/
DFontCollectionItemizeTest.cpp56 void itemize(const std::shared_ptr<FontCollection>& collection, in itemize()
85 std::shared_ptr<FontCollection> collection( in TEST_F() local
156 std::shared_ptr<FontCollection> collection( in TEST_F() local
218 std::shared_ptr<FontCollection> collection( in TEST_F() local
309 std::shared_ptr<FontCollection> collection( in TEST_F() local
349 std::shared_ptr<FontCollection> collection( in TEST_F() local
494 std::shared_ptr<FontCollection> collection( in TEST_F() local
624 std::shared_ptr<FontCollection> collection( in TEST_F() local
649 std::shared_ptr<FontCollection> collection( in TEST_F() local
712 std::shared_ptr<FontCollection> collection(new FontCollection(families)); in TEST_F() local
[all …]
DFontCollectionTest.cpp89 std::shared_ptr<FontCollection> collection( in TEST() local
124 std::shared_ptr<FontCollection> collection( in TEST() local
Dtxt_test_utils.cc113 std::shared_ptr<FontCollection> collection = in GetTestFontCollection() local
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/
DEJDB2DBModule.java113 public Integer createQuery(Integer handle, String query, String collection) { in createQuery()
118 public void put(Integer handle, String collection, String json, Integer id, Promise promise) { in put()
123 public void patch(Integer handle, String collection, String json, Integer id, Promise promise) { in patch()
131 …public void patchOrPut(Integer handle, String collection, String json, Integer id, Promise promise… in patchOrPut()
139 public void get(Integer handle, String collection, Integer id, Promise promise) { in get()
144 public void del(Integer handle, String collection, Integer id, Promise promise) { in del()
160 public void removeCollection(Integer handle, String collection, Promise promise) { in removeCollection()
168 …public void ensureStringIndex(Integer handle, String collection, String path, Boolean unique, Prom… in ensureStringIndex()
176 …public void removeStringIndex(Integer handle, String collection, String path, Boolean unique, Prom… in removeStringIndex()
184 …public void ensureIntIndex(Integer handle, String collection, String path, Boolean unique, Promise… in ensureIntIndex()
[all …]
/third_party/boost/boost/test/data/monomorphic/
Dcollection.hpp39 class collection { class
49 explicit collection( C&& col ) : m_col( std::forward<C>(col) ) {} in collection() function in boost::unit_test::data::monomorphic::collection
52 collection( collection&& c ) : m_col( std::forward<C>( c.m_col ) ) {} in collection() function in boost::unit_test::data::monomorphic::collection
/third_party/gstreamer/gstplugins_base/tests/examples/decodebin_next/
Dplaybin-test.c40 GstStreamCollection *collection; member
73 dump_collection (GstStreamCollection * collection) in dump_collection()
164 stream_notify_cb (GstStreamCollection * collection, GstStream * stream, in stream_notify_cb()
202 GstStreamCollection *collection = NULL; in _on_bus_message() local
229 GstStreamCollection *collection = NULL; in _on_bus_message() local
Duridecodebin3-select-all.c42 GstStreamCollection *collection; member
69 dump_collection (GstStreamCollection * collection) in dump_collection()
145 stream_notify_cb (GstStreamCollection * collection, GstStream * stream, in stream_notify_cb()
183 GstStreamCollection *collection = NULL; in _on_bus_message() local
Ddecodebin3.c46 GstStreamCollection *collection; member
79 dump_collection (GstStreamCollection * collection) in dump_collection()
169 stream_notify_cb (GstStreamCollection * collection, GstStream * stream, in stream_notify_cb()
207 GstStreamCollection *collection = NULL; in _on_bus_message() local
/third_party/vulkan-headers/registry/spec_tools/
Dutil.py26 def findFirstWithPredicate(collection, pred): argument
53 def findNamedObject(collection, name): argument
/third_party/boost/boost/geometry/algorithms/detail/overlay/
Dadd_rings.hpp45 RingCollection const& collection, in convert_and_add()
92 RingCollection const& collection, in add_rings()
179 RingCollection const& collection, in add_rings()
Dassign_parents.hpp50 RingCollection const& collection, in within_selected_input()
85 RingCollection const& collection, in within_selected_input()
228 RingCollection const& collection, in assign_parents()
413 RingCollection const& collection, in assign_parents()
/third_party/node/deps/npm/node_modules/lodash._bindcallback/
Dindex.js31 case 3: return function(value, index, collection) { argument
34 case 4: return function(accumulator, value, index, collection) { argument
/third_party/boost/libs/geometry/test/algorithms/buffer/
Dtest_buffer_svg_per_turn.hpp36 inline void apply(PieceCollection const& collection, int phase) in apply()
81 inline void apply(PieceCollection const& collection, int phase) in apply()
142 inline void apply(PieceCollection const& collection, int phase) in apply()
/third_party/flutter/engine/flutter/third_party/txt/tests/old/perftests/
DFontCollection.cpp41 std::shared_ptr<FontCollection> collection( in BM_FontCollection_hasVariationSelector() local
79 std::shared_ptr<FontCollection> collection( in BM_FontCollection_itemize() local
/third_party/gstreamer/gstplugins_bad/gst/debugutils/
Dgsttestsrcbin.c76 GstStreamCollection *collection; member
121 GstStreamCollection *collection; member
125 _probe_data_new (GstEvent * stream_start, GstStreamCollection * collection) in _probe_data_new()
157 GstStreamCollection *collection = data->collection; in src_pad_probe_cb() local
256 GstStreamCollection * collection, gint * n_stream, GstStructure * props) in gst_test_src_bin_setup_src()
359 GstStreamCollection *collection = gst_stream_collection_new (NULL); in gst_test_src_bin_uri_handler_set_uri() local
/third_party/skia/src/gpu/
DGrRenderTaskCluster.cpp27 [[maybe_unused]] static SkString describe_tasks(SkSpan<const sk_sp<GrRenderTask>> collection) { in describe_tasks()
35 [[maybe_unused]] static SkString describe_tasks(const SkTInternalLList<GrRenderTask>& collection) { in describe_tasks()
/third_party/typescript/tests/baselines/reference/
DdottedSymbolResolution1.js35 function each(collection, callback) { argument
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgststream.c117 stream_notify_cb (GstStreamCollection * collection, GstStream * stream, in stream_notify_cb()
134 GstStreamCollection *collection; in GST_START_TEST() local

12345