Home
last modified time | relevance | path

Searched refs:datasource (Results 1 – 9 of 9) sorted by relevance

/external/tremolo/Tremolo/
Divorbisfile.h60 size_t (*read_func) (void *ptr, size_t size, size_t nmemb, void *datasource);
61 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence);
62 int (*close_func) (void *datasource);
63 long (*tell_func) (void *datasource);
67 void *datasource; /* Pointer to a FILE *, etc. */ member
102 extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf,
106 extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
Dvorbisfile.c93 if(vf->datasource){ in _get_data()
95 long bytes=(vf->callbacks.read_func)(buffer,1,CHUNKSIZE,vf->datasource); in _get_data()
105 if(vf->datasource){ in _seek_helper()
106 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET); in _seek_helper()
512 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END); in _open_seekable2()
513 vf->offset=vf->end=(vf->callbacks.tell_func)(vf->datasource); in _open_seekable2()
731 vf->datasource=f; in _ov_open1()
757 vf->datasource=NULL; in _ov_open1()
770 vf->datasource=NULL; in _ov_open2()
793 if(vf->datasource)(vf->callbacks.close_func)(vf->datasource); in ov_clear()
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DDynamicXYPlotActivity.java222 private SampleDynamicXYDatasource datasource; field in DynamicXYPlotActivity.SampleDynamicSeries
226 … public SampleDynamicSeries(SampleDynamicXYDatasource datasource, int seriesIndex, String title) { in SampleDynamicSeries() argument
227 this.datasource = datasource; in SampleDynamicSeries()
239 return datasource.getItemCount(seriesIndex); in size()
244 return datasource.getX(seriesIndex, index); in getX()
249 return datasource.getY(seriesIndex, index); in getY()
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DTestHelper_Driver4.java78 String datasource = url.substring(baseURL.length() + 1); in connect() local
80 if (datasource.equals(element)) { in connect()
86 if (datasource.equals("data1")) { in connect()
DTestHelper_Driver1.java80 String datasource = url.substring(baseURL.length() + 1); in connect() local
82 if (datasource.equals(element)) { in connect()
/external/autotest/client/tests/iozone/
Dpostprocessing.py366 self.datasource = os.path.join(self.output_dir, '3d-datasource')
367 datasource = open(self.datasource, 'w')
374 datasource.write(line)
377 datasource.close()
437 (self.datasource, index, label))
/external/tensorflow/tensorflow/contrib/ignite/
DREADME.md5 * [Distributed In-Memory Datasource](#distributed-in-memory-datasource)
39 …n store your data in Apache Ignite on the same machine and use it as a datasource for TensorFlow a…
40 …ur data in Apache Ignite distributed in-memory cluster and use it as a datasource for TensorFlow a…
41 …your data in Apache Ignite distributed in-memory cluster and use it as a datasource for TensorFlow.
/external/python/cpython3/Doc/library/
Dxml.dom.minidom.rst36 datasource = open('c:\\temp\\mydata.xml')
37 dom2 = parse(datasource) # parse an open file
131 with xml.dom.minidom.parse(datasource) as dom:
/external/python/cpython2/Doc/library/
Dxml.dom.minidom.rst38 datasource = open('c:\\temp\\mydata.xml')
39 dom2 = parse(datasource) # parse an open file