HomeSort by relevance Sort by last modified time
    Searched defs:fetch (Results 51 - 75 of 181) sorted by null

1 23 4 5 6 7 8

  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
TensorFlowImageClassifier.java 154 Trace.beginSection("fetch");
155 inferenceInterface.fetch(outputName, outputs);
TensorFlowObjectDetectionAPIModel.java 162 Trace.beginSection("fetch");
167 inferenceInterface.fetch(outputNames[0], outputLocations);
168 inferenceInterface.fetch(outputNames[1], outputScores);
169 inferenceInterface.fetch(outputNames[2], outputClasses);
170 inferenceInterface.fetch(outputNames[3], outputNumDetections);
TensorFlowYoloDetector.java 167 Trace.beginSection("fetch");
172 inferenceInterface.fetch(outputNames[0], output);
TensorFlowMultiBoxDetector.java 230 Trace.beginSection("fetch");
233 inferenceInterface.fetch(outputNames[0], outputLocationsEncoding);
234 inferenceInterface.fetch(outputNames[1], outputScoresEncoding);
SpeechActivity.java 314 inferenceInterface.fetch(OUTPUT_SCORES_NAME, outputScores);
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
Session.java 33 * Tensor y = s.runner().feed("x", x).fetch("y").run().get(0)) {
37 * Tensor y = s.runner().feed("x", x).fetch("y").run().get(0)) {
115 * evaluate the {@link Tensor}s to fetch. The {@link #feed(String,int,Tensor)} call allows callers
164 * shorthand for {@code fetch(operation, 0)}, or it is a string of the form
166 * fetch(operation_name, output_index)}. These colon-separated names are commonly used in
170 public Runner fetch(String operation) { method in class:Session.Runner
171 return fetch(parseOutput(operation));
180 public Runner fetch(String operation, int index) { method in class:Session.Runner
189 public Runner fetch(Output<?> output) { method in class:Session.Runner
  /frameworks/native/cmds/lshal/
test.cpp 197 Status fetch() { return ListCommand::fetch(); } function in class:android::lshal::MockListCommand
254 /// Fetch Test
390 TEST_F(ListTest, Fetch) {
391 EXPECT_EQ(0u, mockList->fetch());
ListCommand.cpp 687 Status ListCommand::fetch() { function in class:ListCommand
    [all...]
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/
AlbumArtCache.java 82 public void fetch(final String artUrl, final FetchListener listener) { method in class:AlbumArtCache
83 // WARNING: for the sake of simplicity, simultaneous multi-thread fetch requests
93 Log.d(TAG, "getOrFetch: starting asynctask to fetch " + artUrl);
  /hardware/google/av/media/sfplugin/utils/
Codec2BufferUtils.cpp 315 std::list<MemoryBlockPoolBlock>::const_iterator fetch(size_t size) { function in struct:android::__anon47169::MemoryBlockPoolImpl
368 MemoryBlock MemoryBlockPool::fetch(size_t size) { function in class:android::MemoryBlockPool
369 std::list<MemoryBlockPoolBlock>::const_iterator poolBlock = mImpl->fetch(size);
395 return MemoryBlockPool().fetch(size);
  /packages/apps/Dialer/java/com/android/voicemail/impl/fetch/
FetchVoicemailReceiver.java 16 package com.android.voicemail.impl.fetch;
94 // Ignore if the fetch request is for a voicemail not from this package.
128 // can happen when trying to fetch voicemails from a SIM that is no longer on the
141 VvmLog.i(TAG, "Requesting network to fetch voicemail");
214 VvmLog.i(TAG, "fetch voicemail failed, retrying");
  /packages/apps/Music/src/com/android/music/utils/
AlbumArtCache.java 77 public void fetch(final String artUrl, final FetchListener listener) { method in class:AlbumArtCache
78 // WARNING: for the sake of simplicity, simultaneous multi-thread fetch requests
88 LogHelper.d(TAG, "getOrFetch: starting asynctask to fetch ", artUrl);
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Folder.java 118 * each fetch completes. Messages are downloaded as (as) lightweight (as
163 public abstract void fetch(Message[] messages, FetchProfile fp, method in class:Folder
  /system/libvintf/
check_vintf.cpp 54 virtual status_t fetch(const std::string& path, std::string& fetched, std::string* error) { function in class:android::vintf::details::HostFileFetcher
57 virtual status_t fetch(const std::string& path, std::string& fetched) { function in class:android::vintf::details::HostFileFetcher
70 std::cerr << "Debug: Fetch '" << mRootDir << path << "': " << toString(status) << std::endl;
134 status_t err = details::gFetcher->fetch(path, xml, &error);
  /external/mesa3d/src/gallium/auxiliary/translate/
translate_generic.c 56 fetch_func fetch; member in struct:translate_generic::__anon29428
88 * Fetch a dword[4] vertex attribute from memory, doing format/type
624 tg->attrib[attr].fetch( data, src, 0, 0 );
627 debug_printf("Fetch linear attr %d from %p stride %d index %d: "
650 * Fetch vertex attributes for 'count' vertices.
807 tg->attrib[i].fetch = (fetch_func)format_desc->fetch_rgba_sint;
810 tg->attrib[i].fetch = (fetch_func)format_desc->fetch_rgba_uint;
814 tg->attrib[i].fetch = (fetch_func)format_desc->fetch_rgba_float;
    [all...]
  /hardware/google/av/codec2/vndk/bufferpool/
AccessorImpl.cpp 200 ResultStatus Accessor::Impl::fetch( function in class:android::hardware::media::bufferpool::V1_0::implementation::Accessor::Impl
510 "%zu/%zu (fetch/transfer)",
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
imaplib.py 53 'FETCH': ('SELECTED',),
358 Fetch capabilities list from server."""
432 def fetch(self, message_set, message_parts): member in class:IMAP4
433 """Fetch (parts of) messages.
435 (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
442 name = 'FETCH'
584 """Fetch truncated part of a message.
592 return self._untagged_response(typ, dat, 'FETCH')
722 return self._untagged_response(typ, dat, 'FETCH')
764 name = 'FETCH'
    [all...]
  /external/autotest/scheduler/
scheduler_models.py 310 Fetch the rows based on the given database query.
330 def fetch(cls, where='', params=(), joins='', order_by=''): member in class:DBObject
377 """Helper function to fetch labels & platform for a host."""
526 def fetch(cls, where='', params=(), joins='', order_by=''): member in class:HostQueueEntry
532 # Override the original fetch method to pre-fetch the jobs from the DB
562 labels = Label.fetch(
592 blocks = IneligibleHostQueue.fetch(
780 hosts_queue = HostQueueEntry.fetch('job_id = %s' % self.job.id)
832 """ Fetch info about who aborted the job. ""
    [all...]
  /external/autotest/utils/
external_packages.py 19 """Failed to fetch a package from any of its listed URLs."""
50 Defines an external package with URLs to fetch its sources from and
218 raise Error('Must call fetch() first. - %s' % self.name)
509 def fetch(self, dest_dir): member in class:ExternalPackage
511 Fetch the package from one its URLs and save it in dest_dir.
514 matches this code will not fetch it again.
547 logging.warning('Could not fetch %s package from %s.',
722 """Fetch and extract a local copy of GWT used to build the frontend."""
1120 def fetch(self, unused_dest_dir): member in class:_ExternalGitRepo
1133 def fetch(self, unused_dest_dir): member in class:HdctoolsRepo
1210 def fetch(self, unused_dest_dir): member in class:BtsocketRepo
    [all...]
  /external/python/cpython2/Lib/
imaplib.py 63 'FETCH': ('SELECTED',),
371 Fetch capabilities list from server."""
445 def fetch(self, message_set, message_parts): member in class:IMAP4
446 """Fetch (parts of) messages.
448 (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
455 name = 'FETCH'
597 """Fetch truncated part of a message.
605 return self._untagged_response(typ, dat, 'FETCH')
735 return self._untagged_response(typ, dat, 'FETCH')
777 name = 'FETCH'
    [all...]
  /external/tensorflow/tensorflow/core/grappler/optimizers/
layout_optimizer_test.cc 167 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
190 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
212 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
225 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
238 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}) local
251 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
264 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
382 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
397 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
412 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
426 Output fetch = ops::Identity(s.WithOpName("Fetch"), {conv}); local
440 Output fetch = ops::Identity(s.WithOpName("Fetch"), {x_backprop}); local
454 Output fetch = ops::Identity(s.WithOpName("Fetch"), {x_backprop}); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
imaplib.py 53 'FETCH': ('SELECTED',),
358 Fetch capabilities list from server."""
432 def fetch(self, message_set, message_parts): member in class:IMAP4
433 """Fetch (parts of) messages.
435 (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
442 name = 'FETCH'
584 """Fetch truncated part of a message.
592 return self._untagged_response(typ, dat, 'FETCH')
722 return self._untagged_response(typ, dat, 'FETCH')
764 name = 'FETCH'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
imaplib.py 53 'FETCH': ('SELECTED',),
358 Fetch capabilities list from server."""
432 def fetch(self, message_set, message_parts): member in class:IMAP4
433 """Fetch (parts of) messages.
435 (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
442 name = 'FETCH'
584 """Fetch truncated part of a message.
592 return self._untagged_response(typ, dat, 'FETCH')
722 return self._untagged_response(typ, dat, 'FETCH')
764 name = 'FETCH'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 53 'FETCH': ('SELECTED',),
358 Fetch capabilities list from server."""
432 def fetch(self, message_set, message_parts): member in class:IMAP4
433 """Fetch (parts of) messages.
435 (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
442 name = 'FETCH'
584 """Fetch truncated part of a message.
592 return self._untagged_response(typ, dat, 'FETCH')
722 return self._untagged_response(typ, dat, 'FETCH')
764 name = 'FETCH'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 53 'FETCH': ('SELECTED',),
358 Fetch capabilities list from server."""
432 def fetch(self, message_set, message_parts): member in class:IMAP4
433 """Fetch (parts of) messages.
435 (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
442 name = 'FETCH'
584 """Fetch truncated part of a message.
592 return self._untagged_response(typ, dat, 'FETCH')
722 return self._untagged_response(typ, dat, 'FETCH')
764 name = 'FETCH'
    [all...]

Completed in 526 milliseconds

1 23 4 5 6 7 8