HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 76 - 100 of 5760) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libchrome/base/threading/
post_task_and_reply_impl.h 11 #include "base/base_export.h"
12 #include "base/callback.h"
13 #include "base/location.h"
15 namespace base { namespace
22 // probably want base::TaskRunner, or you may want base::WorkerPool.
41 } // namespace base
sequenced_task_runner_handle.h 8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/sequenced_task_runner.h"
13 namespace base { namespace
44 } // namespace base
thread_task_runner_handle.h 8 #include "base/base_export.h"
9 #include "base/callback_helpers.h"
10 #include "base/macros.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/single_thread_task_runner.h"
14 namespace base { namespace
53 } // namespace base
worker_pool.h 8 #include "base/base_export.h"
9 #include "base/callback.h"
10 #include "base/memory/ref_counted.h"
16 namespace base { namespace
57 } // namespace base
  /external/libchrome/base/time/
clock.cc 5 #include "base/time/clock.h"
7 namespace base { namespace
11 } // namespace base
clock.h 8 #include "base/base_export.h"
9 #include "base/time/time.h"
11 namespace base { namespace
17 // See DefaultClock (base/time/default_clock.h) for the default
23 // See SimpleTestClock (base/test/simple_test_clock.h) for a simple
26 // See TickClock (base/time/tick_clock.h) for the equivalent interface for
38 } // namespace base
default_clock.cc 5 #include "base/time/default_clock.h"
7 namespace base { namespace
15 } // namespace base
default_clock.h 8 #include "base/base_export.h"
9 #include "base/compiler_specific.h"
10 #include "base/time/clock.h"
12 namespace base { namespace
23 } // namespace base
default_tick_clock.cc 5 #include "base/time/default_tick_clock.h"
7 namespace base { namespace
15 } // namespace base
default_tick_clock.h 8 #include "base/base_export.h"
9 #include "base/compiler_specific.h"
10 #include "base/time/tick_clock.h"
12 namespace base { namespace
23 } // namespace base
tick_clock.cc 5 #include "base/time/tick_clock.h"
7 namespace base { namespace
11 } // namespace base
tick_clock.h 8 #include "base/base_export.h"
9 #include "base/time/time.h"
11 namespace base { namespace
17 // See DefaultTickClock (base/time/default_tick_clock.h) for the default
23 // See SimpleTestTickClock (base/test/simple_test_tick_clock.h) for a
26 // See Clock (base/time/clock.h) for the equivalent interface for Times.
38 } // namespace base
  /external/libchrome/base/timer/
elapsed_timer.cc 5 #include "base/timer/elapsed_timer.h"
7 namespace base { namespace
17 } // namespace base
elapsed_timer.h 8 #include "base/base_export.h"
9 #include "base/macros.h"
10 #include "base/time/time.h"
12 namespace base { namespace
28 } // namespace base
hi_res_timer_manager_unittest.cc 5 #include "base/timer/hi_res_timer_manager.h"
10 #include "base/message_loop/message_loop.h"
11 #include "base/power_monitor/power_monitor.h"
12 #include "base/power_monitor/power_monitor_device_source.h"
13 #include "base/time/time.h"
17 namespace base { namespace
24 base::MessageLoop loop(base::MessageLoop::TYPE_UI);
25 std::unique_ptr<base::PowerMonitorSource> power_monitor_source(
26 new base::PowerMonitorDeviceSource())
    [all...]
  /external/libchrome/base/trace_event/
memory_infra_background_whitelist.h 13 #include "base/base_export.h"
15 namespace base { namespace
31 } // namespace base
trace_event_filter.h 10 #include "base/base_export.h"
11 #include "base/macros.h"
13 namespace base { namespace
49 } // namespace base
  /external/libchrome/base/
tracking_info.cc 5 #include "base/tracking_info.h"
8 #include "base/tracked_objects.h"
10 namespace base { namespace
18 base::TimeTicks delayed_run_time)
27 } // namespace base
  /external/libchrome/dbus/
values_util.h 14 namespace base { namespace
23 // Pops a value from |reader| as a base::Value.
27 CHROME_DBUS_EXPORT std::unique_ptr<base::Value> PopDataAsValue(
35 const base::Value& value);
43 const base::Value& value);
51 const base::Value& value);
59 const base::Value& value);
  /external/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/
ctor_alloc.pass.cpp 24 typedef std::queue<int, std::deque<int, test_allocator<int> > > base; typedef in struct:test
26 explicit test(const test_allocator<int>& a) : base(a) {}
27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
  /external/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/
ctor_alloc.pass.cpp 24 typedef std::stack<int, std::deque<int, test_allocator<int> > > base; typedef in struct:test
26 explicit test(const test_allocator<int>& a) : base(a) {}
27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream.cons/
copy.fail.cpp 27 typedef std::basic_istream<char> base; typedef in struct:test_istream
30 : base(std::move(s)) // OK
35 base::operator=(std::move(s)); // OK
40 : base(s) // expected-error {{call to deleted constructor of 'std::basic_istream<char>'}}
45 base::operator=(s); // expected-error {{call to deleted member function 'operator='}}
  /external/libmojo/base/android/
animation_frame_time_histogram.h 10 namespace base { namespace
16 } // namespace base
apk_assets.h 10 #include "base/android/jni_android.h"
11 #include "base/files/file_path.h"
12 #include "base/files/memory_mapped_file.h"
14 namespace base { namespace
27 base::MemoryMappedFile::Region* region);
34 const base::FilePath& file_path);
37 } // namespace base
base_jni_onload.h 11 #include "base/base_export.h"
12 #include "base/callback.h"
14 namespace base { namespace
18 typedef base::Callback<bool(JNIEnv*)> RegisterCallback;
25 } // namespace base

Completed in 372 milliseconds

1 2 34 5 6 7 8 91011>>