HomeSort by relevance Sort by last modified time
    Searched defs:fetch (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/chromium_org/chrome/browser/resources/cryptotoken/
textfetcher.js 19 * @param {string} url The URL to fetch.
25 TextFetcher.prototype.fetch = function(url, opt_method, opt_body) {};
35 * @param {string} url The URL to fetch.
41 XhrTextFetcher.prototype.fetch = function(url, opt_method, opt_body) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceSrcValue.cpp 33 #include "core/fetch/FetchRequest.h"
34 #include "core/fetch/FontResource.h"
35 #include "core/fetch/ResourceFetcher.h"
108 FontResource* CSSFontFaceSrcValue::fetch(Document* document) function in class:blink::CSSFontFaceSrcValue
119 // FIXME: CSSFontFaceSrcValue::fetch is invoked when @font-face rule
  /external/ppp/pppd/plugins/pppoatm/
text2qos.c 19 #define fetch __atmlib_fetch macro
89 switch (fetch(text,"max_pcr=","pcr=","min_pcr=","max_sdu=","sdu=",
135 item = fetch(&text,"!none","ubr","cbr","vbr","abr","aal0","aal5",NULL);
160 switch (fetch(&text,"tx","rx",NULL)) {
162 if (!fetch(&text,":none",NULL)) {
176 if (fetch(&text,"rx",NULL)) return -1;
177 if (!fetch(&text,":none",NULL) && qos) qos->rxtp.traffic_class = ATM_NONE;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerGlobalScope.cpp 36 #include "core/fetch/MemoryCache.h"
37 #include "core/fetch/ResourceLoaderOptions.h"
92 ScriptPromise ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, Request* request) function in class:blink::ServiceWorkerGlobalScope
105 return m_fetchManager->fetch(scriptState, r->request());
108 ScriptPromise ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, Request* request, const Dictionary& requestInit) function in class:blink::ServiceWorkerGlobalScope
121 return m_fetchManager->fetch(scriptState, r->request());
124 ScriptPromise ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, const String& urlstring) function in class:blink::ServiceWorkerGlobalScope
137 return m_fetchManager->fetch(scriptState, r->request());
140 ScriptPromise ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, const String& urlstring, const Dictionary& requestInit) function in class:blink::ServiceWorkerGlobalScope
153 return m_fetchManager->fetch(scriptState, r->request())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pt_fetch.c 50 * Perform the fetch from API vertex elements & vertex buffers, to a
60 draw_pt_fetch_prepare(struct pt_fetch *fetch,
65 struct draw_context *draw = fetch->draw;
72 fetch->vertex_size = vertex_size;
140 if (!fetch->translate ||
141 translate_key_compare(&fetch->translate->key, &key) != 0)
144 fetch->translate = translate_cache_find(fetch->cache, &key);
150 draw_pt_fetch_run(struct pt_fetch *fetch,
155 struct draw_context *draw = fetch->draw
206 struct pt_fetch *fetch = CALLOC_STRUCT(pt_fetch); local
    [all...]
draw_vs_variant.c 42 /* A first pass at incorporating vertex fetch/emit functionality into
56 struct translate *fetch; member in struct:draw_vs_variant_generic
74 vsvg->fetch->set_buffer(vsvg->fetch,
143 vsvg->fetch->run_elts( vsvg->fetch,
209 vsvg->fetch->run( vsvg->fetch,
273 struct translate_key fetch, emit; local
291 /* Build free-standing fetch and emit functions
    [all...]
draw_pt_fetch_shade_pipeline.c 45 struct pt_fetch *fetch; member in struct:fetch_pipeline_middle_end
95 draw_pt_fetch_prepare( fpme->fetch,
131 static void fetch( struct pt_fetch *fetch, function
136 draw_pt_fetch_run_linear( fetch,
142 draw_pt_fetch_run( fetch,
226 /* Fetch into our vertex buffer.
228 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts );
230 /* Finished with fetch
    [all...]
draw_pt_fetch_shade_pipeline_llvm.c 46 struct pt_fetch *fetch; member in struct:llvm_middle_end
258 /* Finished with fetch and vs:
405 if (fpme->fetch)
406 draw_pt_fetch_destroy( fpme->fetch );
442 fpme->fetch = draw_pt_fetch_create( draw );
443 if (!fpme->fetch)
  /external/deqp/external/
fetch_sources.py 38 def fetch (pkg): function
104 parser = argparse.ArgumentParser(description = "Fetch external sources")
106 help='Clean only, do not fetch/extract')
120 fetch(pkg)
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_fetch.c 50 * Perform the fetch from API vertex elements & vertex buffers, to a
60 draw_pt_fetch_prepare(struct pt_fetch *fetch,
65 struct draw_context *draw = fetch->draw;
72 fetch->vertex_size = vertex_size;
140 if (!fetch->translate ||
141 translate_key_compare(&fetch->translate->key, &key) != 0)
144 fetch->translate = translate_cache_find(fetch->cache, &key);
150 draw_pt_fetch_run(struct pt_fetch *fetch,
155 struct draw_context *draw = fetch->draw
206 struct pt_fetch *fetch = CALLOC_STRUCT(pt_fetch); local
    [all...]
draw_vs_variant.c 42 /* A first pass at incorporating vertex fetch/emit functionality into
56 struct translate *fetch; member in struct:draw_vs_variant_generic
74 vsvg->fetch->set_buffer(vsvg->fetch,
143 vsvg->fetch->run_elts( vsvg->fetch,
209 vsvg->fetch->run( vsvg->fetch,
273 struct translate_key fetch, emit; local
291 /* Build free-standing fetch and emit functions
    [all...]
draw_pt_fetch_shade_pipeline.c 45 struct pt_fetch *fetch; member in struct:fetch_pipeline_middle_end
95 draw_pt_fetch_prepare( fpme->fetch,
131 static void fetch( struct pt_fetch *fetch, function
136 draw_pt_fetch_run_linear( fetch,
142 draw_pt_fetch_run( fetch,
226 /* Fetch into our vertex buffer.
228 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts );
230 /* Finished with fetch
    [all...]
draw_pt_fetch_shade_pipeline_llvm.c 46 struct pt_fetch *fetch; member in struct:llvm_middle_end
258 /* Finished with fetch and vs:
405 if (fpme->fetch)
406 draw_pt_fetch_destroy( fpme->fetch );
442 fpme->fetch = draw_pt_fetch_create( draw );
443 if (!fpme->fetch)
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
download_actuals.py 55 def fetch(self, builder_name, dest_dir): member in class:Download
148 downloader.fetch(builder_name=params.builder,
  /external/oprofile/daemon/
opd_ibs.h 32 struct ibs_fetch_sample * fetch; member in struct:ibs_sample
37 * This struct represents the hardware-level IBS fetch information.
44 /* MSRC001_1030 IBS Fetch Control Register */
47 /* MSRC001_1031 IBS Fetch Linear Address Register */
50 /* MSRC001_1032 IBS Fetch Physical Address Register */
85 * Handle an IBS fetch sample escape code sequence. An IBS fetch sample
90 * entries are needed in order to process a complete IBS fetch sample.
98 * IBS fetch IBS op
  /external/skia/gm/rebaseline_server/
download_actuals.py 53 def fetch(self, builder_name, dest_dir): member in class:Download
146 downloader.fetch(builder_name=params.builder,
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MockFolder.java 64 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) { method in class:MockFolder
  /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/chromium_org/chrome/common/extensions/docs/server2/
fake_fetchers.py 42 def fetch(self, url): member in class:_FakeOmahaProxy
47 def fetch(self, url): member in class:_FakeOmahaHistory
58 def fetch(self, url): member in class:_FakeSubversionServer
96 def fetch(self, url): member in class:_FakeGitilesServer
123 def fetch(self, url): member in class:_FakeViewvcServer
153 def fetch(self, url): member in class:_FakeGithubStat
158 def fetch(self, url): member in class:_FakeGithubZip
166 def fetch(self, url): member in class:_FakeRietveldAPI
175 def fetch(self, url): member in class:_FakeRietveldTarball
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_format.c 134 LLVMValueRef fetch = NULL; local
143 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_float32_vec4_type());
147 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch);
202 gallivm_free_function(gallivm, fetch, fetch_ptr);
219 LLVMValueRef fetch = NULL; local
228 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_unorm8_vec4_type());
232 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch);
287 gallivm_free_function(gallivm, fetch, fetch_ptr);
  /external/chromium_org/tools/emacs/
trybot.el 106 (defun trybot-fetch (type-hint url)
107 "Fetch a URL and postprocess it as trybot output."
109 (let ((on-fetch-completion
132 (set-process-sentinel process on-fetch-completion))))
139 (trybot-fetch type-hint url)))
155 "Fetch a trybot URL and fix up the output into a compilation-mode buffer."
174 (trybot-fetch type-hint url)))
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
metadata_cache.js 196 * If required metadata is already in the cache, does not fetch it again.
262 * If required metadata is already in the cache, does not fetch it again.
358 currentProvider.fetch(entry, type, onProviderProperties);
690 * can fetch at once.
696 MetadataProvider.prototype.fetch = function(entry, type, callback) {
697 throw new Error('Default metadata provider cannot fetch.');
743 FilesystemProvider.prototype.fetch = function(
821 ExternalProvider.prototype.fetch = function(entry, type, callback) {
900 // If present in cache, then allow to fetch media by next providers.
977 ContentProvider.prototype.fetch = function(entry, type, callback)
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_format.c 134 LLVMValueRef fetch = NULL; local
143 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_float32_vec4_type());
147 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch);
202 gallivm_free_function(gallivm, fetch, fetch_ptr);
219 LLVMValueRef fetch = NULL; local
228 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_unorm8_vec4_type());
232 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch);
287 gallivm_free_function(gallivm, fetch, fetch_ptr);
  /external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 76 fetch(url);
83 public void fetch(URL url) throws IOException { method in class:Crawler
  /external/smack/src/org/jivesoftware/smackx/packet/
OfflineMessageRequest.java 42 private boolean fetch = false; field in class:OfflineMessageRequest
92 return fetch;
98 * @param fetch true if all the offline messages of the user should be retrieved.
100 public void setFetch(boolean fetch) {
101 this.fetch = fetch;
116 if (fetch) {
117 buf.append("<fetch/>");
208 else if (parser.getName().equals("fetch")) {

Completed in 632 milliseconds

1 2 3 4