HomeSort by relevance Sort by last modified time
    Searched refs:base (Results 351 - 375 of 5191) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/chromeos/cros/
power_library.h 9 #include "base/memory/singleton.h"
10 #include "base/observer_list.h"
11 #include "base/time.h"
42 virtual base::TimeDelta battery_time_to_empty() const = 0;
45 virtual base::TimeDelta battery_time_to_full() const = 0;
  /external/chromium/chrome/browser/debugger/
devtools_netlog_observer.h 9 #include "base/hash_tables.h"
10 #include "base/memory/ref_counted.h"
34 const base::TimeTicks& time,
40 const base::TimeTicks& time,
46 const base::TimeTicks& time,
52 const base::TimeTicks& time,
75 typedef base::hash_map<uint32, scoped_refptr<ResourceInfo> > RequestToInfoMap;
76 typedef base::hash_map<uint32, int> RequestToEncodedDataLengthMap;
77 typedef base::hash_map<uint32, uint32> HTTPStreamJobToSocketMap;
78 typedef base::hash_map<uint32, uint32> SocketToRequestMap
    [all...]
  /external/chromium/chrome/browser/extensions/
file_reader.h 11 #include "base/callback.h"
12 #include "base/memory/ref_counted.h"
21 class FileReader : public base::RefCountedThreadSafe<FileReader> {
33 friend class base::RefCountedThreadSafe<FileReader>;
  /external/chromium/chrome/browser/
preferences_mock_mac.h 9 #include "base/mac/scoped_cftyperef.h"
29 base::mac::ScopedCFTypeRef<CFMutableDictionaryRef> values_;
30 base::mac::ScopedCFTypeRef<CFMutableSetRef> forced_;
memory_details.h 11 #include "base/memory/ref_counted.h"
12 #include "base/process_util.h"
13 #include "base/string16.h"
24 base::ProcessId pid;
26 base::WorkingSetKBytes working_set;
28 base::CommittedKBytes committed;
90 class MemoryDetails : public base::RefCountedThreadSafe<MemoryDetails> {
107 friend class base::RefCountedThreadSafe<MemoryDetails>;
133 base::ProcessId pid,
  /external/chromium/chrome/browser/sync/glue/
password_model_worker.h 11 #include "base/basictypes.h"
12 #include "base/callback.h"
13 #include "base/memory/ref_counted.h"
17 namespace base { namespace
38 base::WaitableEvent* done);
  /external/chromium/chrome/browser/ui/webui/options/
font_settings_fonts_list_loader.h 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/values.h"
18 : public base::RefCountedThreadSafe<FontSettingsFontsListLoader> {
46 friend class base::RefCountedThreadSafe<FontSettingsFontsListLoader>;
  /external/chromium/chrome/browser/ui/webui/
print_preview_ui_html_source.h 14 namespace base { namespace
22 typedef std::pair<base::SharedMemory*, uint32> PrintPreviewData;
  /external/chromium/chrome/common/
pref_store.h 11 #include "base/basictypes.h"
12 #include "base/memory/ref_counted.h"
23 class PrefStore : public base::RefCounted<PrefStore> {
62 friend class base::RefCounted<PrefStore>;
thumbnail_score_unittest.cc 10 base::Time now = base::Time::Now();
29 base::Time now = base::Time::Now();
30 base::Time last_year = now - base::TimeDelta::FromDays(365);
40 base::Time now = base::Time::Now();
  /external/chromium/net/base/
bandwidth_metrics.cc 5 #include "base/lazy_instance.h"
6 #include "net/base/bandwidth_metrics.h"
8 static base::LazyInstance<net::BandwidthMetrics> g_bandwidth_metrics(
9 base::LINKER_INITIALIZED);
capturing_net_log.cc 5 #include "net/base/capturing_net_log.h"
10 const base::TimeTicks& time,
29 base::AutoLock lock(lock_);
34 base::AutoLock lock(lock_);
39 base::AutoLock lock(lock_);
44 const base::TimeTicks& time,
48 base::AutoLock lock(lock_);
55 return base::subtle::NoBarrier_AtomicIncrement(&last_id_, 1);
59 base::AutoLock lock(lock_);
  /external/chromium/net/ftp/
ftp_directory_listing_parser.h 12 #include "base/basictypes.h"
13 #include "base/string16.h"
14 #include "base/time.h"
33 base::Time last_modified;
39 const base::Time& current_time,
  /external/chromium/webkit/glue/
websocketstreamhandle_bridge.h 10 #include "base/basictypes.h"
11 #include "base/memory/ref_counted.h"
24 : public base::RefCountedThreadSafe<WebSocketStreamHandleBridge> {
37 friend class base::RefCountedThreadSafe<WebSocketStreamHandleBridge>;
  /external/elfutils/libdw/
dwarf_haspc.c 64 Dwarf_Addr base;
68 while ((offset = INTUSE(dwarf_ranges) (die, offset, &base,
  /external/junit/src/org/junit/rules/
Timeout.java 46 public Statement apply(Statement base, Description description) {
47 return new FailOnTimeout(base, fMillis);
  /frameworks/base/media/jni/mediaeditor/
Android.mk 30 $(TOP)/frameworks/base/core/jni \
31 $(TOP)/frameworks/base/include \
32 $(TOP)/frameworks/base/include/media \
33 $(TOP)/frameworks/base/media/libmediaplayerservice \
34 $(TOP)/frameworks/base/media/libstagefright \
35 $(TOP)/frameworks/base/media/libstagefright/include \
36 $(TOP)/frameworks/base/media/libstagefright/rtsp \
40 $(TOP)/frameworks/base/core/jni/mediaeditor \
  /system/core/toolbox/
hd.c 23 int base = -1; local
33 base = strtol(optarg, NULL, 0);
49 fprintf(stderr, "Usage: %s [-b base] [-c count] [-r delay] file\n", argv[0]);
60 if(base >= 0) {
61 lseek(fd, base, SEEK_SET);
62 filepos = base;
68 if(count > 0 && base + count - filepos < read_len)
69 read_len = base + count - filepos;
90 if(filepos == base + count)
  /bionic/libc/inet/
inet_aton.c 71 int base, n; local
85 val = 0; base = 10;
89 base = 16, c = *++cp;
91 base = 8;
95 val = (val * base) + (c - '0');
97 } else if (base == 16 && isascii(c) && isxdigit(c)) {
  /bionic/libc/kernel/arch-mips/asm/
div64.h 25 #define do_div64_32(res, high, low, base) ({ unsigned long __quot32, __mod32; unsigned long __cf, __tmp, __tmp2, __i; __asm__(".set push\n\t" ".set noat\n\t" ".set noreorder\n\t" "move %2, $0\n\t" "move %3, $0\n\t" "b 1f\n\t" " li %4, 0x21\n" "0:\n\t" "sll $1, %0, 0x1\n\t" "srl %3, %0, 0x1f\n\t" "or %0, $1, %5\n\t" "sll %1, %1, 0x1\n\t" "sll %2, %2, 0x1\n" "1:\n\t" "bnez %3, 2f\n\t" " sltu %5, %0, %z6\n\t" "bnez %5, 3f\n" "2:\n\t" " addiu %4, %4, -1\n\t" "subu %0, %0, %z6\n\t" "addiu %2, %2, 1\n" "3:\n\t" "bnez %4, 0b\n\t" " srl %5, %1, 0x1f\n\t" ".set pop" : "=&r" (__mod32), "=&r" (__tmp), "=&r" (__quot32), "=&r" (__cf), "=&r" (__i), "=&r" (__tmp2) : "Jr" (base), "0" (high), "1" (low)); (res) = __quot32; __mod32; })
26 #define do_div(n, base) ({ unsigned long long __quot; unsigned long __mod; unsigned long long __div; unsigned long __upper, __low, __high, __base; __div = (n); __base = (base); __high = __div >> 32; __low = __div; __upper = __high; if (__high) __asm__("divu $0, %z2, %z3" : "=h" (__upper), "=l" (__high) : "Jr" (__high), "Jr" (__base) : GCC_REG_ACCUM); __mod = do_div64_32(__low, __upper, __low, __base); __quot = __high; __quot = __quot << 32 | __low; (n) = __quot; __mod; })
30 #define do_div(n, base) ({ unsigned long __quot; unsigned int __mod; unsigned long __div; unsigned int __base; __div = (n); __base = (base); __mod = __div % __base; __quot = __div / __base; (n) = __quot; __mod; })
  /development/ndk/platforms/android-9/arch-mips/include/asm/
div64.h 25 #define do_div64_32(res, high, low, base) ({ unsigned long __quot32, __mod32; unsigned long __cf, __tmp, __tmp2, __i; __asm__(".set push\n\t" ".set noat\n\t" ".set noreorder\n\t" "move %2, $0\n\t" "move %3, $0\n\t" "b 1f\n\t" " li %4, 0x21\n" "0:\n\t" "sll $1, %0, 0x1\n\t" "srl %3, %0, 0x1f\n\t" "or %0, $1, %5\n\t" "sll %1, %1, 0x1\n\t" "sll %2, %2, 0x1\n" "1:\n\t" "bnez %3, 2f\n\t" " sltu %5, %0, %z6\n\t" "bnez %5, 3f\n" "2:\n\t" " addiu %4, %4, -1\n\t" "subu %0, %0, %z6\n\t" "addiu %2, %2, 1\n" "3:\n\t" "bnez %4, 0b\n\t" " srl %5, %1, 0x1f\n\t" ".set pop" : "=&r" (__mod32), "=&r" (__tmp), "=&r" (__quot32), "=&r" (__cf), "=&r" (__i), "=&r" (__tmp2) : "Jr" (base), "0" (high), "1" (low)); (res) = __quot32; __mod32; })
26 #define do_div(n, base) ({ unsigned long long __quot; unsigned long __mod; unsigned long long __div; unsigned long __upper, __low, __high, __base; __div = (n); __base = (base); __high = __div >> 32; __low = __div; __upper = __high; if (__high) __asm__("divu $0, %z2, %z3" : "=h" (__upper), "=l" (__high) : "Jr" (__high), "Jr" (__base) : GCC_REG_ACCUM); __mod = do_div64_32(__low, __upper, __low, __base); __quot = __high; __quot = __quot << 32 | __low; (n) = __quot; __mod; })
30 #define do_div(n, base) ({ unsigned long __quot; unsigned int __mod; unsigned long __div; unsigned int __base; __div = (n); __base = (base); __mod = __div % __base; __quot = __div / __base; (n) = __quot; __mod; })
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedNotSetException.cs 44 : base(message) {
48 : base(message, innerException) {
52 : base(expecting, input) {
56 : base(message, expecting, input) {
60 : base(message, expecting, input, innerException) {
64 : base(info, context) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedNotSetException.cs 47 : base(message)
52 : base(message, innerException)
57 : base(expecting, input)
62 : base(message, expecting, input)
67 : base(message, expecting, input, innerException)
72 : base(info, context)
  /external/antlr/antlr-3.4/runtime/Python/tests/
t026actions.py 7 def parserClass(self, base):
8 class TParser(base):
10 base.__init__(self, *args, **kwargs)
27 def lexerClass(self, base):
28 class TLexer(base):
30 base.__init__(self, *args, **kwargs)
  /external/chromium/chrome/browser/metrics/
histogram_synchronizer.h 12 #include "base/basictypes.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/synchronization/condition_variable.h"
15 #include "base/synchronization/lock.h"
16 #include "base/time.h"
52 base::RefCountedThreadSafe<HistogramSynchronizer> {
76 void FetchRendererHistogramsSynchronously(base::TimeDelta wait_time);
120 int unresponsive_renderers, const base::TimeTicks& started);
123 base::Lock lock_;
127 base::ConditionVariable received_all_renderer_histograms_
    [all...]

Completed in 779 milliseconds

<<11121314151617181920>>