Searched defs:preload (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLResourcePreloader.cpp85 preload(it->release());
88 void HTMLResourcePreloader::preload(PassOwnPtr<PreloadRequest> preload) argument
90 FetchRequest request = preload->resourceRequest(m_document);
91 request.setDefer(preload->defer());
92 blink::Platform::current()->histogramCustomCounts("WebCore.PreloadDelayMs", static_cast<int>(1000 * (monotonicallyIncreasingTime() - preload->discoveryTime())), 0, 2000, 20);
93 m_document->fetcher()->preload(preload->resourceType(), request, preload->charset());
/external/chromium_org/content/renderer/media/
H A Dwebmediaplayer_ms.cc246 void WebMediaPlayerMS::setPreload(WebMediaPlayer::Preload preload) { argument
/external/glide/library/src/main/java/com/bumptech/glide/
H A DListPreloader.java54 preload(firstVisible + visibleCount, true);
56 preload(firstVisible, false);
90 private void preload(int start, boolean increasing) { method in class:ListPreloader
95 preload(start, start + (increasing ? maxPreload : -maxPreload));
98 private void preload(int from, int to) { method in class:ListPreloader
/external/bluetooth/bluedroid/hci/include/
H A Dbt_hci_lib.h73 /** Result of preload initialization */
111 /* preload initialization callback */
137 /* notifies caller result of preload request */
182 void (*preload)(TRANSAC transac); member in struct:__anon1147
/external/bluetooth/bluedroid/hci/src/
H A Dbt_hci_bdroid.c415 static void preload(UNUSED_ATTR TRANSAC transac) { function
416 BTHCDBG("preload");
510 preload,
/external/chromium_org/media/blink/
H A Dbuffered_data_source.cc158 void BufferedDataSource::SetPreload(Preload preload) { argument
160 preload_ = preload;
519 // If the playback has started (at which point the preload value is ignored)
528 // If media is currently playing or the page indicated preload=auto or the
H A Dbuffered_data_source_unittest.cc227 BufferedDataSource::Preload preload() { return data_source_->preload_; } function in class:media::BufferedDataSourceTest
228 void set_preload(BufferedDataSource::Preload preload) { preload_ = preload; } argument
527 EXPECT_EQ(BufferedDataSource::AUTO, preload());
665 EXPECT_EQ(BufferedDataSource::AUTO, preload());
682 EXPECT_EQ(BufferedDataSource::METADATA, preload());
698 EXPECT_EQ(BufferedDataSource::AUTO, preload());
717 EXPECT_EQ(BufferedDataSource::METADATA, preload());
734 EXPECT_EQ(BufferedDataSource::AUTO, preload());
759 EXPECT_EQ(BufferedDataSource::METADATA, preload());
[all...]
H A Dwebmediaplayer_impl.cc391 void WebMediaPlayerImpl::setPreload(WebMediaPlayer::Preload preload) { argument
392 DVLOG(1) << __FUNCTION__ << "(" << preload << ")"; local
395 preload_ = static_cast<BufferedDataSource::Preload>(preload);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebMediaPlayerClientImpl.cpp225 void WebMediaPlayerClientImpl::setPreload(MediaPlayer::Preload preload) argument
228 m_webMediaPlayer->setPreload(static_cast<WebMediaPlayer::Preload>(preload));
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceFetcher.cpp915 // We already have a preload going for this URL.
922 // We really should discard the new prefetch since the preload has more
1191 void ResourceFetcher::preload(Resource::Type type, FetchRequest& request, const String& charset) function in class:blink::ResourceFetcher
1198 // Ensure main resources aren't preloaded, since the cache can't actually reuse the preload.
/external/iputils/
H A Dping_common.c27 int preload; variable
313 preload = atoi(optarg);
314 if (preload <= 0) {
315 fprintf(stderr, "ping: bad preload value, should be 1..%d\n", MAX_DUP_CHK);
318 if (preload > MAX_DUP_CHK)
319 preload = MAX_DUP_CHK;
320 if (uid && preload > 3) {
321 fprintf(stderr, "ping: cannot set preload to value > 3\n");
480 /* Check that packets < rate*time + preload */
483 tokens = interval*(preload
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMediaElement.cpp991 WTF_LOG(Media, "HTMLMediaElement::loadResource(%p) : Delaying load because preload == 'none'", this);
2218 String HTMLMediaElement::preload() const function in class:blink::HTMLMediaElement
2236 void HTMLMediaElement::setPreload(const AtomicString& preload) argument
2238 WTF_LOG(Media, "HTMLMediaElement::setPreload(%p, %s)", this, preload.utf8().data());
2239 setAttribute(preloadAttr, preload);
/external/chromium_org/v8/src/
H A Djsregexp.cc2466 // We are attempting to preload the minimum number of characters
3513 // We can't preload 3 characters because there is no machine instruction
3951 PreloadState preload; local
3952 preload.init();
3962 &preload,
3971 preload.eats_at_least_ = EmitOptimizedUnanchoredSearch(compiler, trace);
3977 &preload);
3999 preload.preload_characters_,
4008 PreloadState* preload,
4041 preload);
4005 EmitGreedyLoop(RegExpCompiler* compiler, Trace* trace, AlternativeGenerationList* alt_gens, PreloadState* preload, GreedyLoopState* greedy_loop_state, int text_length) argument
4103 EmitChoices(RegExpCompiler* compiler, AlternativeGenerationList* alt_gens, int first_choice, Trace* trace, PreloadState* preload) argument
[all...]

Completed in 295 milliseconds