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

12 3 4 5 6 7 8

  /system/libhidl/libhidlcache/
HidlCache.h 50 // fetch the sp<Value> with key from cache,
52 virtual sp<Value> fetch(const Key& key);
87 sp<Value> value = fetch(key);
131 sp<Value> HidlCache<Key, Value, Compare>::fetch(const Key& key) { function in class:android::hardware::HidlCache
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
AppVersionFetcherTest.java 52 AppVersionFetcher.fetch(mMockDevice, PACKAGE_NAME, AppVersionInfo.VERSION_CODE));
63 AppVersionFetcher.fetch(mMockDevice, PACKAGE_NAME, AppVersionInfo.VERSION_NAME));
76 AppVersionFetcher.fetch(mMockDevice, PACKAGE_NAME, AppVersionInfo.VERSION_CODE));
87 AppVersionFetcher.fetch(mMockDevice, PACKAGE_NAME, AppVersionInfo.VERSION_NAME));
98 AppVersionFetcher.fetch(mMockDevice, PACKAGE_NAME, AppVersionInfo.VERSION_CODE);
113 AppVersionFetcher.fetch(mMockDevice, PACKAGE_NAME, AppVersionInfo.VERSION_NAME);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
template.rb 39 templates = @templates || options.fetch( :templates ) do
53 @templates.fetch( name, values )
95 namespace = options.fetch( :namespace, ::Object )
108 namespace = options.fetch( :namespace, ::Object )
131 def fetch( name, values = {} ) method in class:ANTLR3.Template
132 self::TEMPLATES.fetch( name.to_s ).new( values )
156 context = self::TEMPLATES.fetch( old_name.to_s ) do
317 param.splat = options.fetch( :splat, false )
318 param.block = options.fetch( :block, false )
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_format.c 144 LLVMValueRef fetch = NULL; local
155 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_float32_vec4_type());
159 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch);
243 LLVMValueRef fetch = NULL; local
254 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_unorm8_vec4_type());
258 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch);
391 /* only have util fetch func for etc1 */
397 /* missing fetch funcs */
  /external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 75 fetch(url);
82 public void fetch(HttpUrl url) throws IOException { method in class:Crawler
  /external/syslinux/gpxe/src/include/gpxe/
settings.h 58 /** Fetch value of setting
61 * @v setting Setting to fetch
69 int ( * fetch ) ( struct settings *settings, struct setting *setting, member in struct:settings_operations
123 /** Fetch and format value of setting
126 * @v setting Setting to fetch
298 * Fetch and format value of setting
301 * @v setting Setting to fetch
327 * @v setting Setting to fetch
  /external/tensorflow/tensorflow/core/graph/
subgraph_test.cc 114 std::vector<string> fetch = local
121 subgraph, fed, fetch, targets, device_info_, use_function_convention,
129 EXPECT_EQ(fetch.size(), metadata.fetch_types.size());
329 // Duplicated feed and fetch
334 // Fetch not found.
372 std::vector<string> fetch; local
380 subgraph, fed, fetch, targets, device_info, use_function_convention,
  /external/tensorflow/tensorflow/core/grappler/optimizers/
auto_parallel.cc 82 if (item.fetch.empty()) {
83 return Status(error::INVALID_ARGUMENT, "No fetch nodes provided.");
94 for (const auto& fetch : item.fetch) {
95 VLOG(1) << "Fetch node: " << fetch;
150 auto train_nodes = ComputeTransitiveFanin(graph_, item.fetch);
244 for (size_t i = 0; i < item_->fetch.size(); i++) {
247 string fetch = AddPrefixToNodeName(item_->fetch[i], prefix) local
    [all...]
dependency_optimizer_test.cc 77 item.fetch.push_back("id1");
78 item.fetch.push_back("id2");
112 item.fetch.push_back("id1");
113 item.fetch.push_back("id2");
174 item.fetch.push_back("c1");
175 item.fetch.push_back("c2");
176 item.fetch.push_back("neg1");
177 item.fetch.push_back("neg2");
231 item.fetch.push_back("Identity");
274 item.fetch.push_back("Identity")
489 Output fetch = local
    [all...]
memory_optimizer_test.cc 292 item.fetch = {"e", "f", "g", "h", "i"};
330 item.fetch = {"e"};
362 item.fetch = {"e"};
389 std::vector<string> fetch = {"a", "b", "c", "e"}; local
390 auto tensors = EvaluateNodes(output, fetch);
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
SessionTest.java 40 new AutoCloseableList<Tensor<?>>(s.runner().feed("X", x).fetch("Y").run())) {
54 Output<Integer> fetch = g.operation("Y").output(0); local
57 new AutoCloseableList<Tensor<?>>(s.runner().feed(feed, x).fetch(fetch).run())) {
80 // Fetch using colon separated names.
82 s.runner().fetch("Split:1").run().get(0).expect(Integer.class)) {
92 .fetch("Add")
111 .fetch("Y")
139 new AutoCloseableList<Tensor<?>>(s.runner().fetch("c2").fetch("c1").run())
    [all...]
  /hardware/google/av/codec2/vndk/bufferpool/
Accessor.cpp 154 ResultStatus Accessor::fetch( function in class:android::hardware::media::bufferpool::V1_0::implementation::Accessor
158 return mImpl->fetch(connectionId, transactionId, bufferId, handle);
  /packages/apps/Dialer/java/com/android/voicemail/impl/fetch/
VoicemailFetchedCallback.java 16 package com.android.voicemail.impl.fetch;
  /system/libvintf/
utils.h 58 virtual status_t fetch(const std::string& path, std::string& fetched, std::string* error) { function in class:android::vintf::details::FileFetcher
61 virtual status_t fetch(const std::string& path, std::string& fetched) { function in class:android::vintf::details::FileFetcher
107 status_t result = gFetcher->fetch(path, info, error);
  /external/tensorflow/tensorflow/contrib/android/java/org/tensorflow/contrib/android/
TensorFlowInferenceInterface.java 182 * output nodes. Output nodes can then be queried with the fetch* methods.
192 * output nodes. Output nodes can then be queried with the fetch* methods.
209 runner.fetch(tid.name, tid.outputIndex);
441 public void fetch(String outputName, float[] dst) { method in class:TensorFlowInferenceInterface
442 fetch(outputName, FloatBuffer.wrap(dst)); method
450 public void fetch(String outputName, int[] dst) { method in class:TensorFlowInferenceInterface
451 fetch(outputName, IntBuffer.wrap(dst)); method
459 public void fetch(String outputName, long[] dst) { method in class:TensorFlowInferenceInterface
460 fetch(outputName, LongBuffer.wrap(dst)); method
468 public void fetch(String outputName, double[] dst) method in class:TensorFlowInferenceInterface
469 fetch(outputName, DoubleBuffer.wrap(dst)); method
477 public void fetch(String outputName, byte[] dst) { method in class:TensorFlowInferenceInterface
478 fetch(outputName, ByteBuffer.wrap(dst)); method
487 public void fetch(String outputName, FloatBuffer dst) { method in class:TensorFlowInferenceInterface
497 public void fetch(String outputName, IntBuffer dst) { method in class:TensorFlowInferenceInterface
507 public void fetch(String outputName, LongBuffer dst) { method in class:TensorFlowInferenceInterface
517 public void fetch(String outputName, DoubleBuffer dst) { method in class:TensorFlowInferenceInterface
527 public void fetch(String outputName, ByteBuffer dst) { method in class:TensorFlowInferenceInterface
    [all...]
  /art/compiler/optimizing/
induction_var_analysis.h 86 * op: a + b, a - b, -b, a * b, a / b, a % b, a ^ b, fetch
92 * op: a * fetch^i + b, a * fetch^-i + b
111 fetch(f),
117 HInstruction* fetch; member in struct:art::HInductionVarAnalysis::InductionInfo
255 static std::string FetchToString(HInstruction* fetch);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
AlbumArtCache.java 80 public void fetch(final String artUrl, final FetchListener listener) { method in class:AlbumArtCache
81 // WARNING: for the sake of simplicity, simultaneous multi-thread fetch requests
91 LogHelper.d(TAG, "getOrFetch: starting asynctask to fetch ", artUrl);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 127 if ( n > 0 ) fetch(n);
131 protected void fetch(int n) { method in class:BufferedTokenStream
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_fetch_shade_pipeline.c 46 struct pt_fetch *fetch; member in struct:fetch_pipeline_middle_end
110 draw_pt_fetch_prepare( fpme->fetch,
156 static void fetch( struct pt_fetch *fetch, function
161 draw_pt_fetch_run_linear( fetch,
167 draw_pt_fetch_run( fetch,
266 /* Fetch into our vertex buffer.
268 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts );
270 /* Finished with fetch
    [all...]
draw_pt_fetch_shade_pipeline_llvm.c 48 struct pt_fetch *fetch; member in struct:llvm_middle_end
400 /* Finished with fetch and vs:
589 if (fpme->fetch)
590 draw_pt_fetch_destroy( fpme->fetch );
627 fpme->fetch = draw_pt_fetch_create( draw );
628 if (!fpme->fetch)
  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
disasm-a2xx.c 62 /* these only apply to FETCH dst's: */
291 * FETCH instructions:
325 static void print_fetch_vtx(instr_fetch_t *fetch)
327 instr_fetch_vtx_t *vtx = &fetch->vtx;
361 static void print_fetch_tex(instr_fetch_t *fetch)
388 instr_fetch_tex_t *tex = &fetch->tex;
455 instr_fetch_t *fetch = (instr_fetch_t *)dwords; local
464 printf("%s", fetch_instructions[fetch->opc].name);
465 fetch_instructions[fetch->opc].fxn(fetch);
    [all...]
ir-a2xx.c 168 /* third pass, emit ALU/FETCH: */
274 * FETCH instructions:
281 instr_fetch_t *fetch = (instr_fetch_t *)dwords; local
286 memset(fetch, 0, sizeof(*fetch));
291 fetch->opc = instr->fetch.opc;
293 if (instr->fetch.opc == VTX_FETCH) {
294 instr_fetch_vtx_t *vtx = &fetch->vtx;
296 assert(instr->fetch.stride <= 0xff)
    [all...]
ir-a2xx.h 71 /* FETCH specific: */
75 /* texture fetch specific: */
77 /* vertex fetch specific: */
84 } fetch; member in union:ir2_instruction::__anon29496
162 instr->fetch.opc = VTX_FETCH;
163 instr->fetch.const_idx = ci;
164 instr->fetch.const_idx_sel = cis;
165 instr->fetch.fmt = fmt;
166 instr->fetch.is_signed = is_signed;
167 instr->fetch.stride = stride
    [all...]
  /external/skia/src/effects/
SkMatrixConvolutionImageFilter.cpp 129 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:UncheckedPixelFetcher
136 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:ClampPixelFetcher
145 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:RepeatPixelFetcher
160 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:ClampToBlackPixelFetcher
184 SkPMColor s = PixelFetcher::fetch(src,
204 a = SkGetPackedA32(PixelFetcher::fetch(src, x, y, bounds));
  /external/skqp/src/effects/
SkMatrixConvolutionImageFilter.cpp 129 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:UncheckedPixelFetcher
136 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:ClampPixelFetcher
145 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:RepeatPixelFetcher
160 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:ClampToBlackPixelFetcher
184 SkPMColor s = PixelFetcher::fetch(src,
204 a = SkGetPackedA32(PixelFetcher::fetch(src, x, y, bounds));

Completed in 2748 milliseconds

12 3 4 5 6 7 8