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

1 2

  /external/webkit/WebCore/platform/network/win/
ResourceHandleWin.h 36 BOOL loaded; member in struct:WebCore::PlatformDataStruct
  /external/libxml2/include/libxml/
debugXML.h 118 int loaded; member in struct:_xmlShellCtxt
  /external/webkit/WebCore/dom/
ProgressEvent.h 39 static PassRefPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned loaded, unsigned total)
41 return adoptRef(new ProgressEvent(type, lengthComputable, loaded, total));
52 unsigned loaded() const { return m_loaded; } function in class:WebCore::ProgressEvent
59 ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned loaded, unsigned total);
  /external/bluetooth/glib/tests/gobject/
dynamictype.c 35 static gboolean loaded = FALSE; variable
54 loaded = TRUE;
60 loaded = FALSE;
83 /* Not loaded until we call ref for the first time */
86 g_assert (!loaded);
91 g_assert (loaded);
96 g_assert (loaded);
104 g_assert (!loaded);
109 g_assert (loaded);
115 g_assert (!loaded);
    [all...]
  /external/iproute2/include/
ip6tables.h 61 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:ip6tables_match
111 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:ip6tables_target
iptables.h 84 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:iptables_match
137 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:iptables_target
  /external/webkit/WebCore/inspector/
InspectorFrontendHost.cpp 69 void InspectorFrontendHost::loaded() function in class:WebCore::InspectorFrontendHost
  /external/iptables/include/
ip6tables.h 94 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:ip6tables_match
144 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:ip6tables_target
iptables.h 94 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:iptables_match
147 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:iptables_target
  /external/bluetooth/glib/gobject/
gtypemodule.c 39 * <listitem><para>Portable mechanism for dynamically loaded modules.</para></listitem>
45 * interface. The model of #GTypeModule is a dynamically loaded module
47 * implementations. When the module is loaded, it registers its types
51 * loaded. When the types and interfaces are gone, the module may be
57 * Keeping track of whether the module should be loaded or not is done by
59 * zero, the module is loaded. The use count is maintained internally by
64 * module no longer needs to be loaded except for the type
79 gboolean loaded; member in struct:_ModuleTypeInfo
87 gboolean loaded; member in struct:_ModuleInterfaceInfo
240 * use count was zero before, the plugin will be loaded
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
ClassItem.java 79 public boolean loaded () method in class:ClassItem
  /external/grub/stage2/
boot.c 494 if (exec_type) /* can be loaded like a.out */
592 unsigned loaded = 0, memaddr, memsiz, filesiz; local
636 loaded++;
652 if (! loaded)
683 /* This section is a loaded section,
781 /* these two simply need to be set if any modules are loaded at all */
869 * All "*_boot" commands depend on the images being loaded into memory
989 * We now pass the various bootstrap parameters to the loaded
997 * arg3 = start of symbol table (0 if not loaded)
998 * arg4 = end of symbol table (0 if not loaded)
    [all...]
  /external/webkit/WebCore/inspector/front-end/
InspectorFrontendHostStub.js 76 loaded: function()
inspector.js 432 WebInspector.loaded = function()
520 InspectorFrontendHost.loaded();
540 localizedStringsScriptElement.addEventListener("load", WebInspector.loaded.bind(WebInspector), false);
545 WebInspector.loaded();
    [all...]
InspectorBackendStub.js 110 loaded: function()
  /external/freetype/src/sfnt/
ttsbit.c 95 FT_UInt loaded; local
113 /* last `loaded' bits from the input stream. The bits are shifted to */
119 loaded = 0; /* no bits were loaded */
140 if ( loaded < 8 )
142 acc |= (FT_UShort)((FT_UShort)*source++ << ( 8 - loaded ));
143 loaded += 8;
158 loaded -= 8;
175 if ( (FT_Int)loaded < count )
177 acc |= (FT_UShort)((FT_UShort)*source++ << ( 8 - loaded ));
    [all...]
  /dalvik/vm/analysis/
DexPrepare.c 572 * This causes clean shutdown to fail, because we have loaded classes
795 * that wasn't previously loaded into the bootstrap class path, loading
814 int loaded = 0; local
859 loaded++;
862 LOGV("DexOpt: +++ successfully loaded %d classes\n", loaded);
869 * Verify and/or optimize all classes that were successfully loaded from
901 /* all classes are loaded into the bootstrap class loader */
    [all...]
  /external/clearsilver/mod_ecs/
mod_ecs.c 353 int loaded; member in struct:__anon3125
450 if (entry->loaded == 1)
452 fprintf (stderr, "Warning: attempting to reload %s but it's already loaded\n", entry->libpath);
486 entry->loaded = 1;
570 handler->loaded = my_handler.loaded;
582 else if (!handler->loaded || (s.st_mtime > handler->mtime))
584 if (handler->loaded)
593 handler->loaded = 0;
  /external/webkit/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 269 if (state == MediaPlayer::Empty || state == MediaPlayer::Loaded) {
353 float loaded = maxTimeLoaded(); local
355 if (!m_isStreaming && loaded > 0)
356 timeRanges->add(0, loaded);
393 if (m_networkState < MediaPlayer::Loading || m_networkState == MediaPlayer::Loaded)
425 // "Loaded" is reserved for fully buffered movies, never the case when streaming
427 m_networkState = MediaPlayer::Loaded;
448 float loaded = maxTimeLoaded();
449 if (!loaded)
456 if (loaded > 0
    [all...]
  /external/webkit/WebKit/chromium/src/js/
DevTools.js 194 var oldLoaded = WebInspector.loaded;
195 WebInspector.loaded = function()
205 InspectorFrontendHost.loaded();
  /external/webkit/WebCore/platform/graphics/gtk/
MediaPlayerPrivateGStreamer.cpp 607 float loaded = maxTimeLoaded(); local
608 if (!m_errorOccured && !m_isStreaming && loaded > 0)
609 timeRanges->add(0, loaded);
669 if (m_networkState < MediaPlayer::Loading || m_networkState == MediaPlayer::Loaded)
731 m_networkState = MediaPlayer::Loaded;
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.cpp 720 g_signal_emit_by_name(webView, "icon-loaded", webkit_web_view_get_icon_uri(webView));
756 * This means the URI is valid and successfully identify the page that's going to be loaded.
908 // replaced by another one while this resource was being loaded.
992 gboolean loaded = g_file_load_contents(errorFile, 0, &fileContent, 0, 0, 0); local
993 if (!loaded)
    [all...]
  /external/iptables/
ip6tables.c 795 if (ptr && !ptr->loaded) {
797 ptr->loaded = 1;
1065 if (ptr && !ptr->loaded) {
1067 ptr->loaded = 1;
1787 static int loaded = 0; local
    [all...]
iptables.c 778 if (ptr && !ptr->loaded) {
780 ptr->loaded = 1;
1097 if (ptr && !ptr->loaded) {
1099 ptr->loaded = 1;
1856 static int loaded = 0; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java 82 // We start off with everything not loaded. After that, we assume that
1524 Bitmap loaded = info.getIcon(mIconCache); local
    [all...]

Completed in 3066 milliseconds

1 2