/external/chromium/base/ |
platform_file_win.cc | 5 #include "base/platform_file.h" 7 #include "base/file_path.h" 8 #include "base/logging.h" 9 #include "base/threading/thread_restrictions.h" 11 namespace base { namespace 17 base::ThreadRestrictions::AssertIOAllowed(); 108 base::ThreadRestrictions::AssertIOAllowed(); 113 base::ThreadRestrictions::AssertIOAllowed(); 135 base::ThreadRestrictions::AssertIOAllowed(); 154 base::ThreadRestrictions::AssertIOAllowed() [all...] |
bind_helpers.h | 7 // that are bound by the Bind() function in base/bind.h. 9 // The public functions are base::Unretained() and base::ConstRef(). 54 #include "base/basictypes.h" 55 #include "base/template_util.h" 57 namespace base { namespace 91 // want to probe for. Then we create a class Base that inherits from both T 96 // Now, if TargetFunc exists somewhere in T, then &Base::TargetFunc has an 106 // static const bool value = sizeof(GoodCheck<Base>(0)) == sizeof(Yes); 110 // by specializing GoodCheck() on Base instead of T [all...] |
/external/chromium/chrome/browser/ |
mach_broker_mac.cc | 7 #include "base/command_line.h" 8 #include "base/logging.h" 9 #include "base/mach_ipc_mac.h" 10 #include "base/string_util.h" 11 #include "base/sys_string_conversions.h" 12 #include "base/threading/platform_thread.h" 57 class MachListenerThreadDelegate : public base::PlatformThread::Delegate { 66 receive_port_.reset(new base::ReceivePort(port_name.c_str())); 71 base::MachReceiveMessage message; 94 base::AutoLock lock(broker_->GetLock()) [all...] |
oom_priority_manager.cc | 9 #include "base/process.h" 10 #include "base/process_util.h" 11 #include "base/threading/thread.h" 25 using base::TimeDelta; 26 using base::TimeTicks; 27 using base::ProcessHandle; 28 using base::ProcessMetrics; 129 base::WorkingSetKBytes working_set_kbytes; 164 std::set<base::ProcessHandle> already_seen;
|
/external/chromium/chrome/browser/sync/engine/net/ |
server_connection_manager.h | 12 #include "base/atomicops.h" 13 #include "base/observer_list_threadsafe.h" 14 #include "base/string_util.h" 15 #include "base/synchronization/lock.h" 157 base::subtle::AtomicWord reset_count_; 169 typedef EventChannel<ServerConnectionEvent, base::Lock> Channel; 212 base::AutoLock lock(scm_->server_parameters_mutex_); 290 base::AutoLock lock(terminate_all_io_mutex_); 305 base::AutoLock lock(auth_token_mutex_); 310 base::AutoLock lock(auth_token_mutex_) [all...] |
/external/chromium/net/disk_cache/ |
backend_impl.h | 11 #include "base/file_path.h" 12 #include "base/hash_tables.h" 13 #include "base/timer.h" 45 BackendImpl(const FilePath& path, base::MessageLoopProxy* cache_thread, 49 base::MessageLoopProxy* cache_thread, net::NetLog* net_log); 56 uint32 flags, base::MessageLoopProxy* thread, 76 int SyncDoomEntriesBetween(const base::Time initial_time, 77 const base::Time end_time); 78 int SyncDoomEntriesSince(const base::Time initial_time); 172 // Returns the full histogram name, for the given base |name| and experiment [all...] |
/hardware/msm7k/libgralloc-qsd8k/ |
pmemalloc.cpp | 98 void* base = deps.mmap(0, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, local 100 if (base == MAP_FAILED) { 104 base = 0; 109 master_base = base; 151 void* base = master_base; local 183 memset((char*)base + offset, 0, size); 184 *pBase = base; 196 int PmemUserspaceAllocator::free_pmem_buffer(size_t size, void* base, int offset, int fd) 282 void* base = deps.mmap(0, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0); local 283 if (base == MAP_FAILED) [all...] |
/sdk/lint/cli/src/com/android/tools/lint/ |
Reporter.java | 209 String base = file.getName(); local 211 File path = mNameToFile.get(base); 216 base = '_' + base; 217 path = mNameToFile.get(base); 224 File target = new File(resourceDir, base); 230 return resourceDir.getName() + '/' + encodeUrl(base); 241 String base = url.getFile(); local 242 base = base.substring(base.lastIndexOf('/') + 1) [all...] |
/external/bison/lib/ |
strtol.c | 244 /* Convert NPTR to an `unsigned long int' or `long int' in base BASE. 245 If BASE is 0 the base is determined by the presence of a leading 247 If BASE is < 2 or > 36, it is reset to 10. 253 int base, int group LOCALE_PARAM_PROTO) 295 if (base < 0 || base == 1 || base > 36) 323 /* Recognize number prefix and if BASE is zero, figure it out ourselves. * [all...] |
/external/webkit/Source/JavaScriptCore/assembler/ |
AbstractMacroAssembler.h | 71 // Describes a simple base-offset address. 73 explicit Address(RegisterID base, int32_t offset = 0) 74 : base(base) 79 RegisterID base; member in struct:JSC::AbstractMacroAssembler::Address 84 explicit ExtendedAddress(RegisterID base, intptr_t offset = 0) 85 : base(base) 90 RegisterID base; member in struct:JSC::AbstractMacroAssembler::ExtendedAddress 109 ImplicitAddress(RegisterID base) 121 RegisterID base; member in struct:JSC::AbstractMacroAssembler::ImplicitAddress 137 RegisterID base; member in struct:JSC::AbstractMacroAssembler::BaseIndex [all...] |
/external/chromium/base/memory/ |
linked_ptr_unittest.cc | 7 #include "base/memory/linked_ptr.h" 8 #include "base/stringprintf.h" 19 A(): mynum(num++) { history += base::StringPrintf("A%d ctor\n", mynum); } 20 virtual ~A() { history += base::StringPrintf("A%d dtor\n", mynum); } 21 virtual void Use() { history += base::StringPrintf("A%d use\n", mynum); } 27 B() { history += base::StringPrintf("B%d ctor\n", mynum); } 28 ~B() { history += base::StringPrintf("B%d dtor\n", mynum); } 29 virtual void Use() { history += base::StringPrintf("B%d use\n", mynum); }
|
/external/chromium/chrome/browser/chromeos/ |
boot_times_loader.h | 11 #include "base/atomic_sequence_num.h" 12 #include "base/callback.h" 13 #include "base/time.h" 115 class Backend : public base::RefCountedThreadSafe<Backend> { 122 friend class base::RefCountedThreadSafe<Backend>; 133 time_(base::Time::NowFromSystemTime()), 136 base::Time time() const { return time_; } 142 base::Time time_; 166 base::AtomicSequenceNumber num_tabs_;
|
/external/chromium/chrome/browser/download/ |
download_item_model.cc | 7 #include "base/i18n/number_formatting.h" 8 #include "base/i18n/rtl.h" 9 #include "base/string16.h" 10 #include "base/utf_string_conversions.h" 15 #include "ui/base/l10n/l10n_util.h" 17 using base::TimeDelta; 42 string16 simple_total = base::i18n::GetDisplayStringInLTRDirectionality( 120 base::FormatNumber(size), 121 base::FormatNumber(total_size)); 134 base::FormatNumber(size) [all...] |
save_file_manager.h | 64 #include "base/basictypes.h" 65 #include "base/hash_tables.h" 66 #include "base/memory/ref_counted.h" 84 : public base::RefCountedThreadSafe<SaveFileManager> { 153 friend class base::RefCountedThreadSafe<SaveFileManager>; 227 typedef base::hash_map<int, SaveFile*> SaveFileMap; 234 typedef base::hash_map<int, SavePackage*> SavePackageMap; 247 typedef base::hash_map<std::string, SavePackage*> StartingRequestsMap; 248 typedef base::hash_map<int, StartingRequestsMap> TabToStartingRequestsMap;
|
/external/chromium/chrome/browser/extensions/ |
extension_special_storage_policy.cc | 7 #include "base/logging.h" 18 base::AutoLock locker(lock_); 23 base::AutoLock locker(lock_); 29 base::AutoLock locker(lock_); 41 base::AutoLock locker(lock_); 58 base::AutoLock locker(lock_); 68 base::AutoLock locker(lock_);
|
/external/chromium/chrome/browser/password_manager/ |
password_store.h | 11 #include "base/callback.h" 12 #include "base/memory/ref_counted.h" 13 #include "base/observer_list.h" 14 #include "base/threading/thread.h" 15 #include "base/time.h" 35 : public base::RefCountedThreadSafe<PasswordStore>, 90 void RemoveLoginsCreatedBetween(const base::Time& delete_begin, 91 const base::Time& delete_end); 120 friend class base::RefCountedThreadSafe<PasswordStore>; 145 virtual void RemoveLoginsCreatedBetweenImpl(const base::Time& delete_begin [all...] |
/external/chromium/chrome/common/ |
important_file_writer_unittest.cc | 7 #include "base/compiler_specific.h" 8 #include "base/file_path.h" 9 #include "base/file_util.h" 10 #include "base/logging.h" 11 #include "base/memory/scoped_temp_dir.h" 12 #include "base/message_loop.h" 13 #include "base/threading/thread.h" 14 #include "base/time.h" 61 base::MessageLoopProxy::CreateForCurrentThread()); 72 base::MessageLoopProxy::CreateForCurrentThread()) [all...] |
/external/chromium/googleurl/src/ |
url_canon_mailtourl.cc | 112 bool ReplaceMailtoURL(const char* base, 117 URLComponentSource<char> source(base); 119 SetupOverrideComponents(base, replacements, &source, &parsed); 124 bool ReplaceMailtoURL(const char* base, 130 URLComponentSource<char> source(base); 132 SetupUTF16OverrideComponents(base, replacements, &utf8, &source, &parsed);
|
url_canon_pathurl.cc | 103 bool ReplacePathURL(const char* base, 108 URLComponentSource<char> source(base); 110 SetupOverrideComponents(base, replacements, &source, &parsed); 115 bool ReplacePathURL(const char* base, 121 URLComponentSource<char> source(base); 123 SetupUTF16OverrideComponents(base, replacements, &utf8, &source, &parsed);
|
/external/chromium/net/ftp/ |
ftp_util_unittest.cc | 7 #include "base/basictypes.h" 8 #include "base/format_macros.h" 9 #include "base/string_util.h" 10 #include "base/stringprintf.h" 11 #include "base/time.h" 12 #include "base/utf_string_conversions.h" 108 base::Time mock_current_time; 109 ASSERT_TRUE(base::Time::FromString(L"Tue, 15 Nov 1994 12:45:26 GMT", 157 SCOPED_TRACE(base::StringPrintf("Test[%" PRIuS "]: %s %s %s", i, 161 base::Time time [all...] |
/external/chromium/net/proxy/ |
proxy_config_service_win.cc | 10 #include "base/logging.h" 11 #include "base/memory/scoped_ptr.h" 12 #include "base/string_tokenizer.h" 13 #include "base/string_util.h" 14 #include "base/stl_util-inl.h" 15 #include "base/threading/thread_restrictions.h" 16 #include "base/win/registry.h" 17 #include "net/base/net_errors.h" 42 bool StartWatching(base::win::ObjectWatcher::Delegate* delegate) { 65 base::win::RegKey key_ [all...] |
/external/chromium/webkit/glue/ |
ftp_directory_listing_response_delegate.cc | 9 #include "base/i18n/icu_encoding_detection.h" 10 #include "base/i18n/icu_string_conversions.h" 11 #include "base/logging.h" 12 #include "base/string_util.h" 13 #include "base/sys_string_conversions.h" 14 #include "base/utf_string_conversions.h" 15 #include "base/time.h" 16 #include "net/base/escape.h" 17 #include "net/base/net_errors.h" 18 #include "net/base/net_util.h [all...] |
/external/oauth/core/src/main/java/net/oauth/ |
ConsumerProperties.java | 98 String base = consumerProperties.getProperty(name local 100 URL baseURL = (base == null) ? null : new URL(base); 123 private String getURL(URL base, String name) throws MalformedURLException { 125 if (base != null) { 126 url = (new URL(base, url)).toExternalForm();
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
fst.h | 17 // Finite-State Transducer (FST) - abstract base class definition, 18 // state and arc iterator interface, and suggested base implementation. 233 StateIteratorBase<A> *base; // Specialized iterator if non-zero member in struct:fst::StateIteratorData 257 ~StateIterator() { if (data_.base) delete data_.base; } 260 return data_.base ? data_.base->Done() : s_ >= data_.nstates; 263 StateId Value() const { return data_.base ? data_.base->Value() : s_; } 266 if (data_.base) 305 ArcIteratorBase<A> *base; \/\/ Specialized iterator if non-zero member in struct:fst::ArcIteratorData [all...] |
/hardware/ti/wlan/wl1271/platforms/os/linux/src/ |
stack_profile.c | 54 static unsigned long check_stack(unsigned long *base) 59 *base = ((sp & ~STACK_MASK) + sizeof(struct task_struct) + 4); 63 unsigned long check_stack_start(unsigned long *base, unsigned long real_sp, 70 *base = from; 82 /* run from the stack pointer down to the base */ 91 unsigned long check_stack_stop(unsigned long *base, int id) 97 *base = from; 112 /* run from the stack pointer down to the base */
|