Searched defs:load (Results 251 - 275 of 394) sorted by relevance

<<111213141516

/external/chromium_org/net/disk_cache/blockfile/
H A Dblock_files.cc401 int load[kFirstAdditionalBlockFile]; local
403 GetFileStats(i, &used_blocks[i], &load[i]);
410 UMA_HISTOGRAM_ENUMERATION("DiskCache.BlockLoad_0", load[0], 101);
411 UMA_HISTOGRAM_ENUMERATION("DiskCache.BlockLoad_1", load[1], 101);
412 UMA_HISTOGRAM_ENUMERATION("DiskCache.BlockLoad_2", load[2], 101);
413 UMA_HISTOGRAM_ENUMERATION("DiskCache.BlockLoad_3", load[3], 101);
697 void BlockFiles::GetFileStats(int index, int* used_count, int* load) { argument
700 *load = 0;
721 *load = *used_count * 100 / max_blocks;
/external/chromium_org/remoting/host/linux/
H A Dlinux_me2me_host.py118 def load(self): member in class:Config
126 self.data = json.load(settings_file)
318 pulse_script.write("load-module module-native-protocol-unix\n")
320 ("load-module module-pipe-sink sink_name=%s file=\"%s\" " +
574 # /etc/X11/Xsession fails to load the user's .profile, so look for an
803 self.host_config.load()
805 logging.error("Failed to load config: " + str(e))
1086 host_config.load()
1088 print >> sys.stderr, "Failed to load config: " + str(e)
1091 # Register handler to re-load th
[all...]
/external/chromium_org/remoting/webapp/
H A Dhost_list.js110 remoting.HostList.prototype.load = function(onDone) {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DFontFaceSet.cpp433 ScriptPromise FontFaceSet::load(ScriptState* scriptState, const String& fontString, const String& text) function in class:blink::FontFaceSet
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSharedWorkerImpl.cpp89 void load(ExecutionContext* loadingContext, const KURL& scriptURL, const Closure& receiveResponseCallback, const Closure& finishCallback) function in class:blink::WebSharedWorkerImpl::Loader
216 webFrame->frame()->loader().load(FrameLoadRequest(0, ResourceRequest(url), SubstituteData(buffer, "text/html", "UTF-8", KURL())));
232 m_mainScriptLoader->load(
370 // The SharedWorker was unable to load the initial script, so
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dradeonsi_shader.c111 * Build an LLVM bytecode indexed load using LLVMBuildGEP + LLVMBuildLoad
118 * When LLVM lowers the load instruction, it will convert the element offset
136 * @param sgpr This is the sgpr to load the value from. If you need to load a
139 * example, if you want to load a pointer that is stored in SGPRs 2 and 3, then
233 "llvm.SI.vs.load.buffer.index", uint->elem_type, NULL, 0,
241 "llvm.SI.vs.load.input", vec4_type, args, 3);
363 LLVMValueRef load; local
375 load = build_indexed_load(base->gallivm, const_ptr, offset);
376 return bitcast(bld_base, type, load);
[all...]
/external/chromium_org/tools/linux/
H A Dprocfs.py94 def load(pid): member in class:ProcStat
156 def load(pid): member in class:ProcStatm
231 def load(pid): member in class:ProcStatus
344 def load(pid): member in class:ProcMaps
453 def load(pid): member in class:ProcSmaps
559 def load(pid, maps): member in class:ProcPagemap
659 self._maps = ProcMaps.load(self._pid)
662 self._pagemap = ProcPagemap.load(self._pid, maps)
665 self._smaps = ProcSmaps.load(self._pid)
668 self._stat = ProcStat.load(sel
[all...]
/external/chromium_org/ui/file_manager/gallery/js/
H A Dgallery.js251 * in the slide mode load faster. In milliseconds.
436 Gallery.prototype.load = function(entries, selectedEntries) {
495 return Promise.reject('Failed to load metadata.');
558 // Continue to load chunks.
1036 gallery.load(entries, selectedEntries);
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dimage_util.js449 ImageUtil.ImageLoader.prototype.load = function(item, callback, opt_delay) {
H A Dimage_view.js52 * Image load type: full resolution image loaded from cache.
57 * Image load type: screen resolution preview loaded from cache.
62 * Image load type: image read from file.
67 * Image load type: error occurred.
72 * Image load type: the file contents is not available offline.
77 * The total number of load types.
256 * The parameter is the load type.
258 ImageView.prototype.load =
293 // As far as the user can tell the image is loaded. We still need to load
343 // The image we need is already being prefetched. Initiating another load
[all...]
/external/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp502 LoadInst *load = new LoadInst(Output, outputs[i]->getName()+".reload"); local
503 Reloads.push_back(load);
504 codeReplacer->getInstList().push_back(load);
509 inst->replaceUsesOfWith(outputs[i], load);
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeonsi_shader.c111 * Build an LLVM bytecode indexed load using LLVMBuildGEP + LLVMBuildLoad
118 * When LLVM lowers the load instruction, it will convert the element offset
136 * @param sgpr This is the sgpr to load the value from. If you need to load a
139 * example, if you want to load a pointer that is stored in SGPRs 2 and 3, then
233 "llvm.SI.vs.load.buffer.index", uint->elem_type, NULL, 0,
241 "llvm.SI.vs.load.input", vec4_type, args, 3);
363 LLVMValueRef load; local
375 load = build_indexed_load(base->gallivm, const_ptr, offset);
376 return bitcast(bld_base, type, load);
[all...]
/external/qemu/target-arm/
H A Dop_helper.c504 const int load = (insn & (1 << 21)) != 0; local
521 if (load) {
529 if (load) {
544 if (load) {
558 if (load) {
/external/smack/src/org/jivesoftware/smackx/packet/
H A DVCard.java78 * // To load VCard:
81 * vCard.load(conn); // load own VCard
82 * vCard.load(conn, "joe@foo.bar"); // load someone's VCard
537 public void load(Connection connection) throws XMPPException { method in class:VCard
547 public void load(Connection connection, String user) throws XMPPException { method in class:VCard
/external/tcpdump/
H A Dprint-eigrp.c134 u_int8_t load; member in struct:eigrp_tlv_ip_int_t
154 u_int8_t load; member in struct:eigrp_tlv_ip_ext_t
173 u_int8_t load; member in struct:eigrp_tlv_at_int_t
192 u_int8_t load; member in struct:eigrp_tlv_at_ext_t
344 printf("\n\t delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u",
350 tlv_ptr.eigrp_tlv_ip_int->load);
381 printf("\n\t delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u",
387 tlv_ptr.eigrp_tlv_ip_ext->load);
413 printf("\n\t delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u",
419 tlv_ptr.eigrp_tlv_at_int->load);
[all...]
/external/chromium_org/chrome/browser/resources/history/
H A Dhistory.js1834 function load() { function
2279 document.addEventListener('DOMContentLoaded', load);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js1360 (window.frames[props.id]) ? onFrameLoad() : iframe.addListener('load', onFrameLoad);
2088 load: 1, unload: 1, beforeunload: 2, resize: 1, move: 1, DOMContentLoaded: 1, readystatechange: 1, //window
2898 window.addEvent('load', domready);
3943 Element.Properties.load = {
3946 var load = this.retrieve('load');
3947 if (load) load.cancel();
3948 return this.eliminate('load').store('load
[all...]
/external/chromium_org/chrome/browser/resources/downloads/
H A Ddownloads.js101 // Icon load request queue.
218 * Schedule icon load.
877 function load() { function
991 window.addEventListener('DOMContentLoaded', load);
/external/chromium_org/components/cloud_devices/tools/prototype/
H A Dprototype.py364 def load(self): member in class:State
367 json_obj = json.load(statefile)
427 config = json.load(config_f)
1095 state.load()
/external/chromium_org/components/visitedlink/browser/
H A Dvisitedlink_master.cc509 // that the file size is different when we load it back in, and then we will
747 float load = ComputeTableLoad(); local
748 if (load < max_table_load &&
750 load > min_table_load))
756 DCHECK(load <= min_table_load || new_size > table_length_);
/external/chromium_org/media/blink/
H A Dwebmediaplayer_impl.cc223 void WebMediaPlayerImpl::load(LoadType load_type, const blink::WebURL& url, function in class:media::WebMediaPlayerImpl
/external/chromium_org/net/disk_cache/
H A Dbackend_unittest.cc109 void BackendTransaction(const std::string& name, int num_entries, bool load);
1673 int num_entries, bool load) {
1679 if (load) {
1698 ASSERT_TRUE(load);
1699 // If there is a heavy load, inserting an entry will make another entry
1672 BackendTransaction(const std::string& name, int num_entries, bool load) argument
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResource.cpp174 void Resource::load(ResourceFetcher* fetcher, const ResourceLoaderOptions& options) function in class:blink::Resource
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DFrameLoader.cpp241 // Calling document.open counts as committing the first real document load.
723 void FrameLoader::load(const FrameLoadRequest& passedRequest) function in class:blink::FrameLoader
739 targetFrame->loader().load(request);
790 frame->document()->addConsoleMessage(ConsoleMessage::create(SecurityMessageSource, ErrorMessageLevel, "Not allowed to load local resource: " + url));
819 // ClientRedirectPolicy is an indication that this load was triggered by
821 // redirect, we should reuse the referrer from the original load of the
914 // JavaScript. If the script initiates a new load, we need to abandon the current load,
1055 // page height increases, 3. ignore clamp detection after load completes
1288 // The current load shoul
[all...]
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttgload.c345 TT_Load_Simple_Glyph( TT_Loader load )
348 FT_Byte* p = load->cursor;
349 FT_Byte* limit = load->limit;
350 FT_GlyphLoader gloader = load->gloader;
351 FT_Int n_contours = load->n_contours;
353 TT_Face face = (TT_Face)load->face;
411 load->glyph->control_len = 0;
412 load->glyph->control_data = 0;
438 if ( IS_HINTED( load->load_flags ) )
440 load
700 tt_prepare_zone( TT_GlyphZone zone, FT_GlyphLoad load, FT_UInt start_point, FT_UInt start_contour ) argument
[all...]

Completed in 700 milliseconds

<<111213141516