Searched refs:Type (Results 126 - 150 of 3758) sorted by path

1234567891011>>

/external/chromium_org/base/debug/
H A Dtrace_event_impl.h45 template <typename Type>
H A Dtrace_event_synthetic_delay.h64 template <typename Type>
H A Dtrace_event_win.h16 template <typename Type>
H A Dtrace_event_win_unittest.cc79 event->Header.Class.Type,
/external/chromium_org/base/i18n/
H A Dicu_string_conversions.cc82 int uchar_len, OnStringConversionError::Type on_error,
117 void SetUpErrorHandlerForToUChars(OnStringConversionError::Type on_error,
151 OnStringConversionError::Type on_error,
166 OnStringConversionError::Type on_error,
202 OnStringConversionError::Type on_error,
232 OnStringConversionError::Type on_error,
H A Dicu_string_conversions.h20 enum Type { enum in class:base::OnStringConversionError
43 OnStringConversionError::Type on_error,
47 OnStringConversionError::Type on_error,
55 OnStringConversionError::Type on_error,
59 OnStringConversionError::Type on_error,
H A Dicu_string_conversions_unittest.cc110 OnStringConversionError::Type on_error;
/external/chromium_org/base/
H A Dlazy_instance.h5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
8 // need to have guaranteed thread-safety. The Type constructor will only ever
21 // will manage a unique instance. It also preallocates the space for Type, as
22 // to avoid allocating the Type instance on the heap. This may help with the
24 // requires that Type be a complete type so we can determine the size.
56 template <typename Type>
63 static Type* New(void* instance) {
64 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
67 "<Type> object
[all...]
H A Dlogging_win.h15 template <typename Type>
H A Dpickle.cc27 template <typename Type>
28 inline bool PickleIterator::ReadBuiltinType(Type* result) {
29 const char* read_from = GetReadPointerAndAdvance<Type>();
32 if (sizeof(Type) > sizeof(uint32))
35 *result = *reinterpret_cast<const Type*>(read_from);
48 template<typename Type>
50 if (sizeof(Type) > end_index_ - read_index_) {
55 Advance(sizeof(Type));
H A Dpickle.h64 // Read Type from Pickle.
65 template <typename Type>
66 bool ReadBuiltinType(Type* result);
72 // Get read pointer for Type and advance read pointer.
73 template<typename Type>
/external/chromium_org/base/memory/
H A Daligned_memory.h63 template<typename Type> \
64 Type* data_as() { return static_cast<Type*>(void_data()); } \
65 template<typename Type> \
66 const Type* data_as() const { \
67 return static_cast<const Type*>(void_data()); \
75 // does not understand ALIGNAS(ALIGNOF(Type)) or ALIGNAS(template_param).
H A Dmanual_constructor.h25 template <typename Type>
37 return AlignedAlloc(size, __alignof(Type));
39 return AlignedAlloc(size, __alignof__(Type));
46 inline Type* get() {
47 return space_.template data_as<Type>();
49 inline const Type* get() const {
50 return space_.template data_as<Type>();
53 inline Type* operator->() { return get(); }
54 inline const Type* operator->() const { return get(); }
56 inline Type
[all...]
H A Dsingleton.h45 // Default traits for Singleton<Type>. Calls operator new and operator delete on
48 template<typename Type>
51 static Type* New() {
54 return new Type();
58 static void Delete(Type* x) {
75 // Alternate traits for use with the Singleton<Type>. Identical to
78 template<typename Type>
79 struct LeakySingletonTraits : public DefaultSingletonTraits<Type> {
87 // Alternate traits for use with the Singleton<Type>. Allocates memory
108 template <typename Type>
[all...]
H A Dsingleton_objc.h40 template<typename Type>
41 struct DefaultSingletonObjCTraits : public DefaultSingletonTraits<Type> {
42 static Type* New() {
43 return [[Type alloc] init];
46 static void Delete(Type* object) {
54 template<typename Type,
55 typename Traits = DefaultSingletonObjCTraits<Type>,
56 typename DifferentiatingType = Type>
57 class SingletonObjC : public Singleton<Type, Traits, DifferentiatingType> {
H A Dsingleton_unittest.cc52 template <typename Type>
53 struct CallbackTrait : public DefaultSingletonTraits<Type> {
54 static void Delete(Type* instance) {
57 DefaultSingletonTraits<Type>::Delete(instance);
112 template <class Type>
122 Type type_;
/external/chromium_org/base/message_loop/
H A Dmessage_loop.cc91 bool AlwaysNotifyPump(MessageLoop::Type type) {
128 MessageLoop::MessageLoop(Type type)
221 scoped_ptr<MessagePump> MessageLoop::CreateMessagePumpForType(Type type) {
334 bool MessageLoop::IsType(Type type) const {
H A Dmessage_loop.h102 enum Type { enum in class:base::MessageLoop
114 explicit MessageLoop(Type type = TYPE_DEFAULT);
133 static scoped_ptr<MessagePump> CreateMessagePumpForType(Type type);
285 virtual bool IsType(Type type) const;
288 Type type() const { return type_; }
452 const Type type_;
H A Dmessage_loop_unittest.cc319 void RunTest_RecursiveDenial2(MessageLoop::Type message_loop_type) {
363 void RunTest_RecursiveSupport2(MessageLoop::Type message_loop_type) {
448 void RunTest_Dispatcher(MessageLoop::Type message_loop_type) {
470 void RunTest_DispatcherWithMessageHook(MessageLoop::Type message_loop_type) {
/external/chromium_org/base/posix/
H A Dfile_descriptor_shuffle_unittest.cc18 enum Type { enum in struct:base::Action
24 Action(Type in_type, int in_fd1, int in_fd2 = -1)
36 Type type;
/external/chromium_org/base/prefs/
H A Dpref_registry.cc45 base::Value::Type orig_type = default_value->GetType();
H A Dpref_service.cc403 base::Value::Type type) {
467 base::Value::Type type)
479 base::Value::Type PrefService::Preference::GetType() const {
545 base::Value::Type default_type = default_value->GetType();
H A Dpref_service.h69 base::Value::Type type);
77 base::Value::Type GetType() const;
135 const base::Value::Type type_;
342 base::Value::Type type);
H A Dpref_value_store.cc107 base::Value::Type type,
120 base::Value::Type type,
234 base::Value::Type type,
H A Dpref_value_store.h82 base::Value::Type type,
91 base::Value::Type type,
173 // Type of the pref store.
179 typedef std::map<std::string, base::Value::Type> PrefTypeMap;
215 base::Value::Type type,

Completed in 9670 milliseconds

1234567891011>>