/external/chromium/base/ |
atomic_sequence_num.h | 9 #include "base/atomicops.h" 10 #include "base/basictypes.h" 12 namespace base { namespace 17 explicit AtomicSequenceNumber(base::LinkerInitialized x) { /* seq_ is 0 */ } 21 base::subtle::NoBarrier_AtomicIncrement(&seq_, 1) - 1); 25 base::subtle::Atomic32 seq_; 29 } // namespace base
|
base_paths_mac.h | 9 // This file declares Mac-specific path keys for the base module. 13 namespace base { namespace 23 } // namespace base
|
message_loop_proxy.cc | 5 #include "base/message_loop_proxy.h" 7 namespace base { namespace 19 } // namespace base
|
platform_file.cc | 5 #include "base/platform_file.h" 7 namespace base { namespace 17 } // namespace base
|
lazy_instance.cc | 5 #include "base/lazy_instance.h" 7 #include "base/at_exit.h" 8 #include "base/atomicops.h" 9 #include "base/basictypes.h" 10 #include "base/threading/platform_thread.h" 11 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" 13 namespace base { namespace 18 if (base::subtle::Acquire_CompareAndSwap( 24 while (base::subtle::NoBarrier_Load(&state_) != STATE_CREATED) 37 base::subtle::Release_Store(&state_, STATE_CREATED) [all...] |
/external/chromium/base/i18n/ |
number_formatting.h | 9 #include "base/basictypes.h" 10 #include "base/string16.h" 12 namespace base { namespace 16 } // namespace base
|
/external/chromium/base/test/ |
run_all_perftests.cc | 5 #include "base/test/perf_test_suite.h" 8 return base::PerfTestSuite(argc, argv).Run();
|
run_all_unittests.cc | 5 #include "base/test/test_suite.h" 8 return base::TestSuite(argc, argv).Run();
|
/external/guava/guava/src/com/google/common/base/ |
FinalizableReference.java | 17 package com.google.common.base;
|
package-info.java | 28 * <li>{@link com.google.common.base.Ascii} 29 * <li>{@link com.google.common.base.CaseFormat} 30 * <li>{@link com.google.common.base.CharMatcher} 31 * <li>{@link com.google.common.base.Charsets} 32 * <li>{@link com.google.common.base.Joiner} 33 * <li>{@link com.google.common.base.Splitter} 34 * <li>{@link com.google.common.base.Strings} 40 * <li>{@link com.google.common.base.Function}, 41 * {@link com.google.common.base.Functions} 42 * <li>{@link com.google.common.base.Predicate} [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLAllCollection.cpp | 33 PassRefPtr<HTMLAllCollection> HTMLAllCollection::create(PassRefPtr<Node> base) 35 return adoptRef(new HTMLAllCollection(base)); 38 HTMLAllCollection::HTMLAllCollection(PassRefPtr<Node> base) 39 : HTMLCollection(base, DocAll)
|
/external/chromium/chrome/browser/policy/ |
file_based_policy_loader.h | 9 #include "base/files/file_path_watcher.h" 33 friend class base::RefCountedThreadSafe<AsynchronousPolicyLoader>; 49 bool IsSafeToReloadPolicy(const base::Time& now, base::TimeDelta* delay); 59 scoped_ptr<base::files::FilePathWatcher> watcher_; 62 const base::TimeDelta settle_interval_; 65 base::Time last_modification_file_; 71 base::Time last_modification_clock_;
|
configuration_policy_loader_win.h | 9 #include "base/synchronization/waitable_event.h" 10 #include "base/win/object_watcher.h" 19 public base::win::ObjectWatcher::Delegate { 41 base::WaitableEvent user_policy_changed_event_; 42 base::WaitableEvent machine_policy_changed_event_; 43 base::win::ObjectWatcher user_policy_watcher_; 44 base::win::ObjectWatcher machine_policy_watcher_;
|
/external/chromium/net/url_request/ |
url_request_throttler_entry_interface.h | 9 #include "base/basictypes.h" 10 #include "base/memory/ref_counted.h" 11 #include "base/time.h" 19 : public base::RefCountedThreadSafe<URLRequestThrottlerEntryInterface> { 39 const base::TimeTicks& earliest_time) = 0; 42 virtual base::TimeTicks GetExponentialBackoffReleaseTime() const = 0; 56 friend class base::RefCountedThreadSafe<URLRequestThrottlerEntryInterface>; 60 friend class base::RefCounted<URLRequestThrottlerEntryInterface>;
|
/external/libsepol/tests/ |
test-linker-roles.c | 38 * - role in base, no modules 39 * - role in base optional, no modules 40 * - role a in base, b in module 41 * - role a in base and module (additive) 42 * - role a in base and 2 module 43 * - role a in base optional, b in module 44 * - role a in base, b in module optional 45 * - role a in base optional, b in module optional 46 * - role a in base optional and module 47 * - role a in base and module optiona [all...] |
/external/chromium/chrome/common/ |
chrome_paths_linux.cc | 7 #include "base/environment.h" 8 #include "base/file_util.h" 9 #include "base/memory/scoped_ptr.h" 10 #include "base/path_service.h" 11 #include "base/nix/xdg_util.h" 29 scoped_ptr<base::Environment> env(base::Environment::Create()); 30 FilePath config_dir(base::nix::GetXDGDirectory(env.get(), 53 scoped_ptr<base::Environment> env(base::Environment::Create()) [all...] |
chrome_content_plugin_client.cc | 10 #include "base/mac/mac_util.h" 11 #include "base/mac/scoped_cftyperef.h" 12 #include "base/sys_string_conversions.h" 14 #include "ui/base/l10n/l10n_util.h" 22 base::mac::ScopedCFTypeRef<CFStringRef> cf_plugin_name( 23 base::SysUTF16ToCFStringRef(plugin_name)); 24 base::mac::ScopedCFTypeRef<CFStringRef> app_name( 25 base::SysUTF16ToCFStringRef( 27 base::mac::ScopedCFTypeRef<CFStringRef> process_name( 30 base::mac::SetProcessName(process_name) [all...] |
/external/chromium/net/socket/ |
client_socket_pool_histograms.cc | 9 #include "base/metrics/field_trial.h" 10 #include "base/metrics/histogram.h" 15 using base::Histogram; 16 using base::LinearHistogram; 29 base::TimeDelta::FromMilliseconds(1), 30 base::TimeDelta::FromMinutes(10), 35 base::TimeDelta::FromMilliseconds(1), 36 base::TimeDelta::FromMinutes(6), 41 base::TimeDelta::FromMilliseconds(1), 42 base::TimeDelta::FromMinutes(6) [all...] |
/external/e2fsprogs/lib/e2p/ |
percent.c | 18 unsigned int e2p_percent(int percent, unsigned int base) 25 return base / (100 / percent); 26 if (mask & base) 27 return (base / 100) * percent; 28 return base * percent / 100; 37 unsigned int base; local 43 fprintf(stderr, "Usage: %s percent base\n", argv[0]); 53 base = strtoul(argv[2], &p, 0); 55 fprintf(stderr, "Bad base: %s\n", argv[2]); 59 printf("%d percent of %u is %u.\n", percent, base, [all...] |
/external/bison/lib/ |
basename.c | 38 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name); local 41 for (p = base; *p; p++) 53 if (ISSLASH (*base)) 54 base = p - 1; 59 base = p; 63 return (char *) base;
|
/external/chromium/net/base/ |
backoff_entry.h | 9 #include "base/threading/non_thread_safe.h" 10 #include "base/time.h" 19 class BackoffEntry : public base::NonThreadSafe { 60 base::TimeTicks GetReleaseTime() const; 64 void SetCustomReleaseTime(const base::TimeTicks& release_time); 74 virtual base::TimeTicks GetTimeNow() const; 78 base::TimeTicks CalculateReleaseTime() const; 82 base::TimeTicks exponential_backoff_release_time_;
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
basename.c | 34 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name); local 38 while (ISSLASH (*base)) 39 base++; 41 for (p = base; *p; p++) 47 base = p; 52 return (char *) base; 76 char const *base = last_component (name); local 81 if (! *base) 85 length = base_len (base); 86 if (ISSLASH (base[length]) [all...] |
/bionic/libc/stdlib/ |
strntoimax.c | 31 intmax_t strntoimax(const char *nptr, char **endptr, int base, size_t n) 33 return (intmax_t) strntoumax(nptr, endptr, base, n);
|
/external/chromium/base/files/ |
file_path_watcher_stub.cc | 8 #include "base/files/file_path_watcher.h" 10 namespace base { namespace 19 base::MessageLoopProxy*) OVERRIDE { 31 } // namespace base
|
/external/chromium/base/threading/ |
thread_checker_impl.h | 9 #include "base/base_api.h" 10 #include "base/synchronization/lock.h" 11 #include "base/threading/platform_thread.h" 13 namespace base { namespace 36 mutable base::Lock lock_; 42 } // namespace base
|