Searched defs:initialized (Results 1 - 25 of 208) sorted by path

123456789

/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3debugeventlistener.h84 ANTLR3_BOOLEAN initialized; member in struct:ANTLR3_DEBUG_EVENT_LISTENER_struct
/external/bison/lib/glthread/
H A Dlock.h205 int initialized; member in struct:__anon322
303 int initialized; member in struct:__anon324
/external/bison/src/
H A Dscan-code.c3049 static bool initialized = false; local
3050 if (!initialized)
3054 initialized = true;
H A Dscan-skel.c2279 static bool initialized = false; local
2280 if (!initialized)
2282 initialized = true;
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config.c129 static int initialized; local
130 bdld("in initialized:%d", initialized);
131 if(!initialized)
133 initialized = 1;
H A Dbtif_sock_thread.c205 static int initialized; local
206 APPL_TRACE_DEBUG("in initialized:%d", initialized);
207 if(!initialized)
209 initialized = 1;
293 APPL_TRACE_ERROR("cmd socket is not created. socket thread may not initialized");
321 APPL_TRACE_ERROR("cmd socket is not created. socket thread may not initialized");
/external/chromium_org/base/
H A Dlogging.cc93 // Which log file to use? This is initialized by InitLogging or
94 // will be lazily initialized to the default value when it is
198 if (initialized)
221 // Return nicely without putting initialized to true.
229 initialized = true;
276 static bool initialized; member in class:logging::__anon2311::LoggingLock
281 bool LoggingLock::initialized = false; member in class:logging::__anon2311::LoggingLock
294 // Called by logging functions to ensure that debug_file is initialized
296 // initialized. debug_file will be NULL in this case.
367 // NOTE: If g_vlog_info has already been initialized, i
[all...]
/external/chromium_org/base/prefs/
H A Dpref_store_observer_mock.h28 bool initialized; member in class:PrefStoreObserverMock
29 bool initialization_success; // Only valid if |initialized|.
/external/chromium_org/base/threading/
H A Dthread_local_storage.h118 bool initialized() const { return initialized_; } function in struct:base::ThreadLocalStorage::StaticSlot
/external/chromium_org/cc/output/
H A Dprogram_binding.h34 bool initialized() const { return initialized_; } function in class:cc::ProgramBindingBase
/external/chromium_org/chrome/browser/autocomplete/
H A Dshortcuts_backend.h65 bool initialized() const { return current_state_ == INITIALIZED; } function in class:ShortcutsBackend
86 NOT_INITIALIZED, // Backend created but not initialized.
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dexternal_cache_unittest.cc89 base::FilePath CreateCacheDir(bool initialized) { argument
91 if (initialized)
/external/chromium_org/chrome/browser/extensions/updater/
H A Dlocal_extension_cache_unittest.cc52 base::FilePath CreateCacheDir(bool initialized) { argument
54 if (initialized)
128 bool initialized = false; local
129 cache.Init(true, base::Bind(&SimpleCallback, &initialized));
132 EXPECT_FALSE(initialized);
146 ASSERT_TRUE(initialized);
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_io_data.h468 bool initialized() const { function in class:ProfileIOData
555 // These functions are used to transfer ownership of the lazily initialized
585 // Tracks whether or not we've been lazily initialized.
/external/chromium_org/chrome/browser/sync/glue/
H A Dsync_backend_host_impl.h219 // Note: it is illegal to call this before the backend is initialized.
244 bool initialized() const { return initialized_; } function in class:browser_sync::SyncBackendHostImpl
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel.h210 // Panel must be initialized to be "fully created" and ready for use.
212 bool initialized() const { return initialized_; } function in class:Panel
/external/chromium_org/chrome/browser/ui/sync/
H A Done_click_signin_helper_unittest.cc199 void set_sync_initialized(bool initialized) { argument
200 sync_initialized_ = initialized;
H A Done_click_signin_sync_observer_unittest.cc64 void set_sync_initialized(bool initialized) { argument
65 sync_initialized_ = initialized;
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dglass_browser_frame_view.cc595 static bool initialized = false; local
596 if (!initialized) {
602 initialized = true;
/external/chromium_org/chrome/browser/ui/views/
H A Dhung_renderer_view.cc421 static bool initialized = false; local
422 if (!initialized) {
425 initialized = true;
H A Dtab_icon_view.cc65 static bool initialized = false; local
67 if (!initialized) {
68 initialized = true;
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab.cc1357 static bool initialized = false; local
1361 if (!initialized) {
1362 initialized = true;
1546 static bool initialized = false; local
1547 if (initialized)
1550 initialized = true;
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dbrowser_actions_container.cc724 // If the views haven't been initialized yet, wait for the next call to
791 static bool initialized = false; local
793 if (!initialized) {
794 initialized = true;
803 static bool initialized = false; local
805 if (!initialized) {
806 initialized = true;
1133 // If this is an existing (initialized) container from an incognito profile,
/external/chromium_org/components/storage_monitor/
H A Dstorage_monitor_unittest.cc28 bool initialized = false; local
29 monitor.EnsureInitialized(base::Bind(&SetLatch, &initialized));
31 EXPECT_FALSE(initialized);
33 EXPECT_TRUE(initialized);
/external/chromium_org/components/translate/content/renderer/
H A Ddata_file_renderer_cld_data_provider.cc102 bool initialized = g_cld_mmap.Get().value->Initialize(file.Pass()); local
103 if (!initialized) {

Completed in 892 milliseconds

123456789