HomeSort by relevance Sort by last modified time
    Searched refs:Traits (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
converter.hpp 96 template<class Traits>
99 typedef typename Traits::target_type T ;
100 typedef typename Traits::source_type S ;
101 typedef typename Traits::argument_type argument_type ;
111 template<class Traits>
114 typedef typename Traits::source_type S ;
115 typedef typename Traits::argument_type argument_type ;
125 template<class Traits>
128 typedef typename Traits::target_type T ;
129 typedef typename Traits::source_type S
458 typedef Traits traits ; typedef in struct:boost::numeric::convdetail::trivial_converter_impl
485 typedef Traits traits ; typedef in struct:boost::numeric::convdetail::rounding_converter
513 typedef Traits traits ; typedef in struct:boost::numeric::convdetail::non_rounding_converter
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
converter.hpp 23 class Traits = conversion_traits<T,S>,
25 class Float2IntRounder = Trunc< BOOST_DEDUCED_TYPENAME Traits::source_type> ,
26 class RawConverter = raw_converter<Traits>,
29 struct converter : convdetail::get_converter_impl<Traits,
36 typedef Traits traits ; typedef in struct:boost::numeric::converter
38 typedef typename Traits::argument_type argument_type ;
39 typedef typename Traits::result_type result_type ;
54 class Traits = conversion_traits<T,S>,
55 class RawConverter = raw_converter<Traits>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashCountedSet.h 31 typename Traits = HashTraits<Value> > class HashCountedSet {
34 typedef HashMap<Value, unsigned, HashFunctions, Traits> ImplType;
81 template<typename Value, typename HashFunctions, typename Traits>
82 inline void HashCountedSet<Value, HashFunctions, Traits>::swap(HashCountedSet& other)
87 template<typename Value, typename HashFunctions, typename Traits>
88 inline int HashCountedSet<Value, HashFunctions, Traits>::size() const
93 template<typename Value, typename HashFunctions, typename Traits>
94 inline int HashCountedSet<Value, HashFunctions, Traits>::capacity() const
99 template<typename Value, typename HashFunctions, typename Traits>
100 inline bool HashCountedSet<Value, HashFunctions, Traits>::isEmpty() cons
    [all...]
HashTable.h 60 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits>
62 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits>
64 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits>
69 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits>
72 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> HashTableType;
73 typedef HashTableIterator<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> iterator;
74 typedef HashTableConstIterator<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> const_iterator;
79 friend class HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>;
80 friend class HashTableIterator<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>;
144 template<typename Key, typename Value, typename Extractor, typename HashFunctions, typename Traits, typename KeyTraits
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
ordinal.h 35 // The Traits class should look like the following:
57 template <typename Traits>
65 bool operator()(const Ordinal<Traits>& lhs,
66 const Ordinal<Traits>& rhs) const;
73 bool operator()(const Ordinal<Traits>& lhs,
74 const Ordinal<Traits>& rhs) const;
135 static const uint8 kZeroDigit = Traits::kZeroDigit;
136 static const uint8 kMaxDigit = Traits::kMaxDigit;
137 static const size_t kMinLength = Traits::kMinLength;
191 static Ordinal<Traits> CreateOrdinalBetween(const Ordinal<Traits>& start
    [all...]
  /external/chromium_org/chrome_frame/
scoped_initialization_manager.h 15 // shared object to initialize and shutdown the object's dependencies. |Traits|
17 // and Shutdown. Traits::Initialize will be invoked when the first instance of
18 // this class is created and Traits::Shutdown will be invoked when the last one
20 template<class Traits>
31 Traits::Initialize();
38 Traits::Shutdown();
46 template<class Traits> base::LazyInstance<base::Lock>::Leaky
47 ScopedInitializationManager<Traits>::lock_ = LAZY_INSTANCE_INITIALIZER;
49 template<class Traits> uint32
50 ScopedInitializationManager<Traits>::ref_count_ = 0
    [all...]
  /external/chromium_org/sync/internal_api/public/util/
immutable.h 57 // used by providing your own traits class or using one of the
58 // pre-defined ones below. See comments on traits below for details.
61 // with forward-declared types. See comments on traits below for
79 template <typename T, typename Traits>
81 : public base::RefCountedThreadSafe<ImmutableCore<T, Traits> > {
84 // primitive types and the case where Traits::Wrapper == T.
87 Traits::InitializeWrapper(&wrapper_);
91 Traits::InitializeWrapper(&wrapper_);
92 Traits::Swap(Traits::UnwrapMutable(&wrapper_), t)
    [all...]
  /external/clang/include/clang/AST/
CommentBriefParser.h 33 const CommandTraits &Traits;
45 BriefParser(Lexer &L, const CommandTraits &Traits);
  /external/chromium_org/base/win/
scoped_handle.h 38 template <class Traits, class Verifier>
43 typedef typename Traits::Handle Handle;
50 : handle_(Traits::NullHandle()),
61 GenericScopedHandle() : handle_(Traits::NullHandle()) {}
63 explicit GenericScopedHandle(Handle handle) : handle_(Traits::NullHandle()) {
68 GenericScopedHandle(RValue other) : handle_(Traits::NullHandle()) {
77 return Traits::IsHandleValid(handle_);
92 if (Traits::IsHandleValid(handle)) {
114 DCHECK(!Traits::IsHandleValid(handle_)) << "Handle must be NULL";
121 handle_ = Traits::NullHandle()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32toolhelp.h 24 // Traits: Traits type that adapts the enumerator to the corresponding
25 // win32 toolhelp api. Each traits class need to:
36 template<typename Traits>
42 // Clear out the Traits::Type structure instance.
60 current_.dwSize = sizeof(typename Traits::Type);
63 incr_ok = Traits::First(snapshot_, &current_);
66 incr_ok = Traits::Next(snapshot_, &current_);
77 const typename Traits::Type& current() const {
83 Traits::CloseHandle(snapshot_)
    [all...]
  /external/chromium/base/memory/
singleton_objc.h 6 // SingletonObjC is the same as a Singleton, except the default traits are
37 // Singleton traits usable to manage traditional Objective-C objects, which
56 typename Traits = DefaultSingletonObjCTraits<Type>,
58 class SingletonObjC : public Singleton<Type, Traits, DifferentiatingType> {
singleton.h 15 // Default traits for Singleton<Type>. Calls operator new and operator delete on
43 // Alternate traits for use with the Singleton<Type>. Identical to
53 // Alternate traits for use with the Singleton<Type>. Allocates memory
77 // this is traits for returning NULL.
117 // The Singleton<Type, Traits, DifferentiatingType> class manages a single
165 // On every platform, if Traits::RAE is true, the singleton will be destroyed at
171 // If Traits::RAE is false, the singleton will not be freed at process exit,
172 // thus the singleton will be leaked if it is ever accessed. Traits::RAE
186 typename Traits = DefaultSingletonTraits<Type>,
199 if (!Traits::kAllowedToAccessOnNonjoinableThread
    [all...]
  /external/chromium_org/base/memory/
singleton_objc.h 6 // SingletonObjC is the same as a Singleton, except the default traits are
36 // Singleton traits usable to manage traditional Objective-C objects, which
55 typename Traits = DefaultSingletonObjCTraits<Type>,
57 class SingletonObjC : public Singleton<Type, Traits, DifferentiatingType> {
singleton.h 45 // Default traits for Singleton<Type>. Calls operator new and operator delete on
73 // Alternate traits for use with the Singleton<Type>. Identical to
83 // Alternate traits for use with the Singleton<Type>. Allocates memory
107 // this is traits for returning NULL.
140 // The Singleton<Type, Traits, DifferentiatingType> class manages a single
189 // On every platform, if Traits::RAE is true, the singleton will be destroyed at
195 // If Traits::RAE is false, the singleton will not be freed at process exit,
196 // thus the singleton will be leaked if it is ever accessed. Traits::RAE
210 typename Traits = DefaultSingletonTraits<Type>,
228 if (!Traits::kAllowedToAccessOnNonjoinableThread
    [all...]
  /external/chromium/base/
lazy_instance.h 5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
119 template <typename Type, typename Traits = DefaultLazyInstanceTraits<Type> >
131 if (!Traits::kAllowedToAccessOnNonjoinableThread)
138 instance_ = Traits::New(buf_);
139 // Traits::Delete will be null for LeakyLazyInstanceTraits
140 void (*dtor)(void*) = Traits::Delete;
146 // We suggest dynamic race detection tool that "Traits::New" above
171 LazyInstance<Type, Traits>* me =
172 reinterpret_cast<LazyInstance<Type, Traits>*>(lazy_instance);
173 Traits::Delete(me->instance_)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/
iterator_range_io.hpp 54 template< typename IteratorT, typename Elem, typename Traits >
55 inline std::basic_ostream<Elem,Traits>& operator<<(
56 std::basic_ostream<Elem, Traits>& Os,
62 Elem, Traits>(Os) );
  /external/chromium_org/base/
lazy_instance.h 5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
87 // Only use this internal::-qualified verbose form to extend this traits class
120 template <typename Type, typename Traits = DefaultLazyInstanceTraits<Type> >
141 if (!Traits::kAllowedToAccessOnNonjoinableThread)
161 Traits::New(private_buf_.void_data()));
163 Traits::kRegisterOnExit ? OnExit : NULL);
168 // We suggest dynamic race detection tool that "Traits::New" above
203 LazyInstance<Type, Traits>* me =
204 reinterpret_cast<LazyInstance<Type, Traits>*>(lazy_instance);
205 Traits::Delete(me->instance())
    [all...]
  /external/llvm/include/llvm/ADT/
IntervalMap.h 23 // A Traits class specifies how keys are compared. It also allows IntervalMap to
38 // template <typename KeyT, typename ValT, unsigned N, typename Traits>
66 // template <typename KeyT, typename ValT, unsigned N, typename Traits>
90 // template <typename KeyT, typename ValT, unsigned N, typename Traits>
112 //--- Key traits ---//
118 // The IntervalMapInfo traits class is used to determine if a key is contained
549 // - Traits::stopLess(start(i), stop(i)) - Non-empty, sane intervals.
551 // - Traits::stopLess(stop(i), start(i + 1) - Sorted.
553 // - value(i) != value(i + 1) || !Traits::adjacent(stop(i), start(i + 1))
558 template <typename KeyT, typename ValT, unsigned N, typename Traits>
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
lexical_cast.hpp 269 template <class CharT, class Traits, class Alloc>
270 struct stream_char< std::basic_string<CharT, Traits, Alloc> >
275 template <class CharT, class Traits, class Alloc>
276 struct stream_char< ::boost::container::basic_string<CharT, Traits, Alloc> >
337 template<class CharT, class Traits, class Alloc, class Source>
339 , std::basic_string<CharT,Traits,Alloc>
343 typedef Traits type;
346 template<class CharT, class Target, class Traits, class Alloc>
349 , std::basic_string<CharT,Traits,Alloc>
352 typedef Traits type
2105 >::type traits; typedef
    [all...]
  /external/clang/unittests/AST/
CommentParser.cpp 42 Traits(Allocator, CommentOptions()) {
51 CommandTraits Traits;
61 Lexer L(Allocator, Diags, Traits, Begin, Source, Source + strlen(Source));
63 Sema S(Allocator, SourceMgr, Diags, Traits, /*PP=*/ NULL);
64 Parser P(L, S, Allocator, SourceMgr, Diags, Traits);
69 FC->dump(llvm::errs(), &Traits, &SourceMgr);
161 const CommandTraits &Traits,
170 StringRef ActualName = BCC->getCommandName(Traits);
183 const CommandTraits &Traits,
195 StringRef ActualCommandName = PCC->getCommandName(Traits);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/
types.pass.cpp 14 // template<class charT, class traits = char_traits<charT>,
19 // typedef traits traits_type;
20 // typedef typename traits::char_type value_type;
43 template <class Traits, class Allocator>
47 typedef std::basic_string<typename Traits::char_type, Traits, Allocator> S;
49 static_assert((std::is_same<typename S::traits_type, Traits>::value), "");
50 static_assert((std::is_same<typename S::value_type, typename Traits::char_type>::value), "");
  /external/chromium_org/ppapi/utility/
completion_callback_factory.h 47 /// thread-safe traits class as the second template element. However, it
723 template <typename Traits, typename Output, typename Method>
731 Traits::Initialize(&output_);
736 Traits::Initialize(&output_);
739 // We must call Traits::StorageToPluginArg() even if we don't need to call
742 (object->*method_)(result, Traits::StorageToPluginArg(output_));
744 Traits::StorageToPluginArg(output_);
746 typename Traits::StorageType* output() {
752 typename Traits::StorageType output_;
775 template <typename Traits, typename Output, typename Method, typename A
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 35 typedef SSAUpdaterTraits<UpdaterT> Traits;
36 typedef typename Traits::BlkT BlkT;
37 typedef typename Traits::ValT ValT;
38 typedef typename Traits::PhiT PhiT;
84 ValT V = Traits::GetUndefVal(BB, Updater);
115 Traits::FindPredecessorBlocks(Info->BB, &Preds);
182 for (typename Traits::BlkSucc_iterator SI =
183 Traits::BlkSucc_begin(Info->BB),
184 E = Traits::BlkSucc_end(Info->BB); SI != E; ++SI) {
242 Pred->AvailableVal = Traits::GetUndefVal(Pred->BB, Updater)
    [all...]
  /external/eigen/Eigen/src/Core/
PermutationMatrix.h 55 typedef internal::traits<Derived> Traits;
60 typedef typename Traits::IndicesType IndicesType;
62 Flags = Traits::Flags,
63 CoeffReadCost = Traits::CoeffReadCost,
64 RowsAtCompileTime = Traits::RowsAtCompileTime,
65 ColsAtCompileTime = Traits::ColsAtCompileTime,
66 MaxRowsAtCompileTime = Traits::MaxRowsAtCompileTime,
67 MaxColsAtCompileTime = Traits::MaxColsAtCompileTime
69 typedef typename Traits::Scalar Scalar
274 struct traits<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType> > struct in namespace:Eigen::internal
388 struct traits<Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType>,_PacketAccess> > struct in namespace:Eigen::internal
465 struct traits<PermutationWrapper<_IndicesType> > struct in namespace:Eigen::internal
534 struct traits<permut_matrix_product_retval<PermutationType, MatrixType, Side, Transposed> > struct in namespace:Eigen::internal
606 struct traits<Transpose<PermutationBase<Derived> > > struct in namespace:Eigen::internal
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 111 template <class Char, class Traits>
112 inline std::basic_ostream<Char, Traits>&
113 operator<<(std::basic_ostream<Char, Traits>& pOS, const Path& pPath)
118 template <class Char, class Traits>
119 inline std::basic_istream<Char, Traits>&
120 operator>>(std::basic_istream<Char, Traits>& pOS, Path& pPath)

Completed in 2126 milliseconds

1 2 3 4