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

<<21222324252627282930>>

  /external/libchrome/base/threading/
non_thread_safe_unittest.cc 5 #include "base/threading/non_thread_safe.h"
9 #include "base/logging.h"
10 #include "base/macros.h"
11 #include "base/test/gtest_util.h"
12 #include "base/threading/simple_thread.h"
15 namespace base { namespace
148 } // namespace base
sequenced_task_runner_handle.cc 5 #include "base/threading/sequenced_task_runner_handle.h"
9 #include "base/lazy_instance.h"
10 #include "base/logging.h"
11 #include "base/threading/sequenced_worker_pool.h"
12 #include "base/threading/thread_local.h"
13 #include "base/threading/thread_task_runner_handle.h"
15 namespace base { namespace
85 } // namespace base
thread_checker_impl.h 8 #include "base/base_export.h"
9 #include "base/compiler_specific.h"
10 #include "base/sequence_token.h"
11 #include "base/synchronization/lock.h"
12 #include "base/threading/platform_thread.h"
14 namespace base { namespace
40 mutable base::Lock lock_;
60 } // namespace base
thread_checker_unittest.cc 7 #include "base/bind.h"
8 #include "base/bind_helpers.h"
9 #include "base/macros.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/sequence_token.h"
12 #include "base/test/test_simple_task_runner.h"
13 #include "base/threading/simple_thread.h"
14 #include "base/threading/thread_checker_impl.h"
15 #include "base/threading/thread_task_runner_handle.h"
18 namespace base { namespace
    [all...]
thread_collision_warner.cc 5 #include "base/threading/thread_collision_warner.h"
7 #include "base/logging.h"
8 #include "base/threading/platform_thread.h"
10 namespace base { namespace
64 } // namespace base
thread_local.h 53 #include "base/macros.h"
54 #include "base/threading/thread_local_storage.h"
56 namespace base { namespace
97 } // namespace base
worker_pool_posix.h 31 #include "base/callback.h"
32 #include "base/location.h"
33 #include "base/macros.h"
34 #include "base/memory/ref_counted.h"
35 #include "base/pending_task.h"
36 #include "base/synchronization/condition_variable.h"
37 #include "base/synchronization/lock.h"
38 #include "base/threading/platform_thread.h"
39 #include "base/tracked_objects.h"
41 namespace base { namespace
    [all...]
  /external/libchrome/base/trace_event/
event_name_filter_unittest.cc 5 #include "base/trace_event/event_name_filter.h"
7 #include "base/memory/ptr_util.h"
8 #include "base/trace_event/trace_event_impl.h"
11 namespace base { namespace
41 } // namespace base
memory_allocator_dump_guid.h 12 #include "base/base_export.h"
14 namespace base { namespace
49 } // namespace base
memory_dump_request_args.cc 5 #include "base/trace_event/memory_dump_request_args.h"
7 #include "base/logging.h"
9 namespace base { namespace
68 } // namespace base
memory_dump_session_state.cc 5 #include "base/trace_event/memory_dump_session_state.h"
7 namespace base { namespace
37 } // namespace base
process_memory_totals.cc 5 #include "base/trace_event/process_memory_totals.h"
7 #include "base/format_macros.h"
8 #include "base/strings/stringprintf.h"
9 #include "base/trace_event/trace_event_argument.h"
11 namespace base { namespace
47 } // namespace base
trace_buffer.h 11 #include "base/base_export.h"
12 #include "base/trace_event/trace_event.h"
13 #include "base/trace_event/trace_event_impl.h"
15 namespace base { namespace
88 typedef base::Callback<void(const std::string&)> OutputCallback;
128 } // namespace base
trace_config_memory_test_util.h 8 #include "base/strings/stringprintf.h"
9 #include "base/trace_event/memory_dump_manager.h"
11 namespace base { namespace
158 } // namespace base
trace_event_argument_unittest.cc 5 #include "base/trace_event/trace_event_argument.h"
11 #include "base/memory/ptr_util.h"
12 #include "base/values.h"
15 namespace base { namespace
165 } // namespace base
trace_event_memory_overhead.h 10 #include "base/base_export.h"
11 #include "base/containers/hash_tables.h"
12 #include "base/containers/small_map.h"
13 #include "base/macros.h"
15 namespace base { namespace
75 } // namespace base
trace_event_system_stats_monitor.h 8 #include "base/base_export.h"
9 #include "base/gtest_prod_util.h"
10 #include "base/macros.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/memory/weak_ptr.h"
13 #include "base/process/process_metrics.h"
14 #include "base/timer/timer.h"
15 #include "base/trace_event/trace_log.h"
17 namespace base { namespace
39 // base::trace_event::TraceLog::EnabledStateChangedObserver overrides
    [all...]
trace_log_constants.cc 5 #include "base/trace_event/trace_log.h"
7 namespace base { namespace
26 } // namespace base
  /external/libchrome/base/
tracking_info.h 14 #include "base/base_export.h"
15 #include "base/profiler/tracked_time.h"
16 #include "base/time/time.h"
23 namespace base { namespace
29 base::TimeTicks delayed_run_time);
53 base::TimeTicks delayed_run_time;
56 } // namespace base
tuple.h 33 namespace base { namespace
91 (obj->*method)(base::get<Ns>(std::forward<Tuple>(args))...);
108 (*function)(base::get<Ns>(std::forward<Tuple>(args))...);
131 (obj->*method)(base::get<InNs>(std::forward<InTuple>(in))...,
145 } // namespace base
  /external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
ctor_comp_cont_alloc.pass.cpp 36 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
37 typedef typename base::container_type container_type;
38 typedef typename base::value_compare value_compare;
40 explicit test(const test_allocator<int>& a) : base(a) {}
42 : base(comp, a) {}
44 const test_allocator<int>& a) : base(comp, c, a) {}
47 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
48 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
52 using base::c;
ctor_comp_rcont_alloc.pass.cpp 36 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
37 typedef typename base::container_type container_type;
38 typedef typename base::value_compare value_compare;
40 explicit test(const test_allocator<int>& a) : base(a) {}
42 : base(comp, a) {}
44 const test_allocator<int>& a) : base(comp, c, a) {}
47 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
48 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
52 using base::c;
ctor_copy_alloc.pass.cpp 34 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
35 typedef typename base::container_type container_type;
36 typedef typename base::value_compare value_compare;
38 explicit test(const test_allocator<int>& a) : base(a) {}
40 : base(comp, c, a) {}
42 const test_allocator<int>& a) : base(comp, c, a) {}
43 test(const test& q, const test_allocator<int>& a) : base(q, a) {}
46 using base::c;
ctor_move_alloc.pass.cpp 39 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
40 typedef typename base::container_type container_type;
41 typedef typename base::value_compare value_compare;
43 explicit test(const test_allocator<int>& a) : base(a) {}
45 : base(comp, c, a) {}
47 const test_allocator<int>& a) : base(comp, c, a) {}
49 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
50 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
53 using base::c;
  /external/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/
ctor_container_alloc.pass.cpp 37 typedef std::queue<int, C> base; typedef in struct:test
39 explicit test(const test_allocator<int>& a) : base(a) {}
40 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
42 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
43 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}

Completed in 208 milliseconds

<<21222324252627282930>>