Searched refs:Type (Results 151 - 175 of 3758) sorted by path

1234567891011>>

/external/chromium_org/base/prefs/
H A Dscoped_user_pref_update.cc25 base::Value* ScopedUserPrefUpdateBase::GetValueOfType(base::Value::Type type) {
H A Dscoped_user_pref_update.h42 base::Value* GetValueOfType(base::Value::Type type);
66 template <typename T, base::Value::Type type_enum_value>
/external/chromium_org/base/process/
H A Dprocess_metrics_win.cc94 if (mbi.Type == MEM_PRIVATE) {
96 } else if (mbi.Type == MEM_MAPPED) {
98 } else if (mbi.Type == MEM_IMAGE) {
/external/chromium_org/base/
H A Dsecurity_unittest.cc35 template <typename Type>
36 Type HideValueFromCompiler(volatile Type value) {
H A Dvalues.cc153 Value::Value(Type type) : type_(type) {}
H A Dvalues.h52 enum Type { enum in class:base::Value
70 // safe to use the Type to determine whether you can cast from
73 Type GetType() const { return type_; }
76 bool IsType(Type type) const { return type == type_; }
110 explicit Value(Type type);
115 Type type_;
/external/chromium_org/base/strings/
H A Dsafe_sprintf.h139 enum Type { INT, UINT, STRING, POINTER }; enum in struct:base::strings::internal::Arg
203 const enum Type type;
/external/chromium_org/base/synchronization/
H A Dwaitable_event_watcher_unittest.cc20 const MessageLoop::Type testing_message_loops[] = {
45 void RunTest_BasicSignal(MessageLoop::Type message_loop_type) {
64 void RunTest_BasicCancel(MessageLoop::Type message_loop_type) {
77 void RunTest_CancelAfterSet(MessageLoop::Type message_loop_type) {
105 void RunTest_OutlivesMessageLoop(MessageLoop::Type message_loop_type) {
120 void RunTest_DeleteUnder(MessageLoop::Type message_loop_type) {
/external/chromium_org/base/test/
H A Dsequenced_task_runner_test_template.cc15 TaskEvent::TaskEvent(int i, Type type)
120 TaskEvent::Type type) {
131 std::vector<TaskEvent::Type> GetEventsForTask(
134 std::vector<TaskEvent::Type> task_event_orders;
149 std::vector<TaskEvent::Type> expected_order;
157 const std::vector<TaskEvent::Type> task_events =
H A Dsequenced_task_runner_test_template.h31 enum Type { POST, START, END }; enum in struct:base::internal::TaskEvent
32 TaskEvent(int i, Type type);
34 Type type;
/external/chromium_org/base/threading/
H A Dthread.cc58 Thread::Options::Options(MessageLoop::Type type,
H A Dthread.h41 Options(MessageLoop::Type type, size_t size);
46 MessageLoop::Type message_loop_type;
54 // MessageLoop::Type to TYPE_CUSTOM.
H A Dthread_local.h16 // ThreadLocalPointer<Type> wraps a Type*. It performs no creation or
83 template <typename Type>
94 Type* Get() {
95 return static_cast<Type*>(
99 void Set(Type* ptr) {
109 DISALLOW_COPY_AND_ASSIGN(ThreadLocalPointer<Type>);
/external/chromium_org/base/timer/
H A Dtimer_unittest.cc15 const base::MessageLoop::Type testing_message_loops[] = {
88 void RunTest_OneShotTimer(base::MessageLoop::Type message_loop_type) {
100 void RunTest_OneShotTimer_Cancel(base::MessageLoop::Type message_loop_type) {
123 base::MessageLoop::Type message_loop_type) {
135 void RunTest_RepeatingTimer(base::MessageLoop::Type message_loop_type,
148 void RunTest_RepeatingTimer_Cancel(base::MessageLoop::Type message_loop_type,
188 void RunTest_DelayTimer_NoCall(base::MessageLoop::Type message_loop_type) {
204 void RunTest_DelayTimer_OneCall(base::MessageLoop::Type message_loop_type) {
237 void RunTest_DelayTimer_Reset(base::MessageLoop::Type message_loop_type) {
270 void RunTest_DelayTimer_Deleted(base::MessageLoop::Type message_loop_typ
[all...]
/external/chromium_org/base/win/
H A Devent_trace_provider.h51 header.Class.Type = type;
61 header.Class.Type = type;
H A Dobject_watcher_unittest.cc36 void RunTest_BasicSignal(MessageLoop::Type message_loop_type) {
58 void RunTest_BasicCancel(MessageLoop::Type message_loop_type) {
75 void RunTest_CancelAfterSet(MessageLoop::Type message_loop_type) {
104 void RunTest_SignalBeforeWatch(MessageLoop::Type message_loop_type) {
122 void RunTest_OutlivesMessageLoop(MessageLoop::Type message_loop_type) {
H A Dregistry.h176 DWORD Type() const { return type_; } function in class:base::win::RegistryValueIterator
/external/chromium_org/cc/animation/
H A Danimation_curve.cc13 DCHECK(Type() == AnimationCurve::Color);
17 AnimationCurve::CurveType ColorAnimationCurve::Type() const { return Color; } function in class:cc::ColorAnimationCurve
20 DCHECK(Type() == AnimationCurve::Float);
24 AnimationCurve::CurveType FloatAnimationCurve::Type() const { function in class:cc::FloatAnimationCurve
30 DCHECK(Type() == AnimationCurve::Transform);
34 AnimationCurve::CurveType TransformAnimationCurve::Type() const { function in class:cc::TransformAnimationCurve
39 DCHECK(Type() == AnimationCurve::Filter);
43 AnimationCurve::CurveType FilterAnimationCurve::Type() const { function in class:cc::FilterAnimationCurve
49 DCHECK(Type() == AnimationCurve::ScrollOffset);
54 DCHECK(Type()
[all...]
H A Danimation_curve.h34 virtual CurveType Type() const = 0;
53 virtual CurveType Type() const OVERRIDE;
63 virtual CurveType Type() const OVERRIDE;
93 virtual CurveType Type() const OVERRIDE;
104 virtual CurveType Type() const OVERRIDE;
H A Danimation_events.cc9 AnimationEvent::AnimationEvent(AnimationEvent::Type type,
H A Danimation_events.h18 enum Type { Started, Finished, Aborted, PropertyUpdate }; enum in struct:cc::AnimationEvent
20 AnimationEvent(Type type,
26 Type type;
H A Dscroll_offset_animation_curve.cc89 AnimationCurve::CurveType ScrollOffsetAnimationCurve::Type() const { function in class:cc::ScrollOffsetAnimationCurve
H A Dscroll_offset_animation_curve.h32 virtual CurveType Type() const OVERRIDE;
H A Dscroll_offset_animation_curve_unittest.cc70 EXPECT_EQ(AnimationCurve::ScrollOffset, curve->Type());
98 EXPECT_EQ(AnimationCurve::ScrollOffset, clone->Type());
H A Dtransform_operation.cc101 TransformOperation::Type interpolation_type =
377 TransformOperation::Type interpolation_type =

Completed in 4901 milliseconds

1234567891011>>