HomeSort by relevance Sort by last modified time
    Searched refs:Traits (Results 1 - 25 of 93) 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/skia/src/core/
SkTTopoSort.h 14 template <typename T, typename Traits = T>
17 SkASSERT(!Traits::IsTempMarked(graph[i]));
18 SkASSERT(!Traits::WasOutput(graph[i]));
22 template <typename T, typename Traits = T>
25 SkASSERT(!Traits::IsTempMarked(graph[i]));
26 SkASSERT(Traits::WasOutput(graph[i]));
33 template <typename T, typename Traits = T>
35 if (Traits::IsTempMarked(node)) {
42 if (!Traits::WasOutput(node)) {
45 Traits::SetTempMark(node)
    [all...]
  /external/libchrome/base/
scoped_generic.h 36 // standard copyable semantics and have a specific "invalid" value. The traits
43 // // for stateful traits.
55 template<typename T, typename Traits>
66 struct Data : public Traits {
68 Data(const T& in, const Traits& other) : Traits(other), generic(in) {}
74 typedef Traits traits_type;
82 // Constructor. Allows initialization of a stateful traits object.
83 ScopedGeneric(const element_type& value, const traits_type& traits)
84 : data_(value, traits) {
    [all...]
lazy_instance.h 5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
90 // Only use this internal::-qualified verbose form to extend this traits class
124 template <typename Type, typename Traits = DefaultLazyInstanceTraits<Type> >
145 if (!Traits::kAllowedToAccessOnNonjoinableThread)
165 Traits::New(private_buf_.void_data()));
167 Traits::kRegisterOnExit ? OnExit : NULL);
200 LazyInstance<Type, Traits>* me =
201 reinterpret_cast<LazyInstance<Type, Traits>*>(lazy_instance);
202 Traits::Delete(me->instance());
  /external/libchrome/base/mac/
scoped_typeref.h 17 // The Traits structure must provide the Retain and Release methods for type T.
51 template<typename T, typename Traits = ScopedTypeRefTraits<T>>
57 T object = Traits::InvalidValue(),
61 object_ = Traits::Retain(object_);
64 ScopedTypeRef(const ScopedTypeRef<T, Traits>& that)
67 object_ = Traits::Retain(object_);
72 Traits::Release(object_);
75 ScopedTypeRef& operator=(const ScopedTypeRef<T, Traits>& that) {
88 void reset(T object = Traits::InvalidValue(),
92 object = Traits::Retain(object)
    [all...]
  /external/clang/include/clang/AST/
CommentBriefParser.h 33 const CommandTraits &Traits;
45 BriefParser(Lexer &L, const CommandTraits &Traits);
CommentParser.h 52 const CommandTraits &Traits;
85 Traits.getCommandInfo(Tok.getCommandID())->IsBlockCommand;
91 const CommandTraits &Traits);
  /external/v8/include/
v8-util.h 36 * Users will have to implement their own weak callbacks & dispose traits.
156 * by the Traits class. The backing map will handle values of type
160 template <typename K, typename V, typename Traits>
168 size_t Size() { return Traits::Size(&impl_); }
173 bool IsWeak() { return Traits::kCallbackType != kNotWeak; }
179 return Local<V>::New(isolate_, FromVal(Traits::Get(&impl_, key)));
186 return Traits::Get(&impl_, key) != kPersistentContainerNotFound;
195 return SetReturnValueFromVal(&returnValue, Traits::Get(&impl_, key));
205 reinterpret_cast<internal::Object**>(FromVal(Traits::Get(&impl_, key))));
215 reinterpret_cast<internal::Object**>(FromVal(Traits::Get(&impl_, key)))
    [all...]
  /external/libchrome/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
75 // Alternate traits for use with the Singleton<Type>. Identical to
87 // Alternate traits for use with the Singleton<Type>. Allocates memory
111 // this is traits for returning NULL.
143 // The Singleton<Type, Traits, DifferentiatingType> class manages a single
192 // On every platform, if Traits::RAE is true, the singleton will be destroyed at
198 // If Traits::RAE is false, the singleton will not be freed at process exit,
199 // thus the singleton will be leaked if it is ever accessed. Traits::RAE
214 typename Traits = DefaultSingletonTraits<Type>,
232 if (!Traits::kAllowedToAccessOnNonjoinableThread
    [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/v8/src/parsing/
parser-base.h 121 // Common base class shared between parser and pre-parser. Traits encapsulate
139 // The traits are expected to contain the following typedefs:
140 // struct Traits {
163 template <typename Traits>
164 class ParserBase : public Traits {
166 // Shorten type names defined by Traits.
167 typedef typename Traits::Type::Expression ExpressionT;
168 typedef typename Traits::Type::Identifier IdentifierT;
169 typedef typename Traits::Type::FormalParameter FormalParameterT;
170 typedef typename Traits::Type::FormalParameters FormalParametersT
    [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>
113 //--- Key traits ---//
119 // The IntervalMapInfo traits class is used to determine if a key is contained
550 // - Traits::stopLess(start(i), stop(i)) - Non-empty, sane intervals.
552 // - Traits::stopLess(stop(i), start(i + 1) - Sorted.
554 // - value(i) != value(i + 1) || !Traits::adjacent(stop(i), start(i + 1))
559 template <typename KeyT, typename ValT, unsigned N, typename Traits>
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
itoatest.cpp 26 struct Traits {
30 struct Traits<uint32_t> {
37 struct Traits<int32_t> {
44 struct Traits<uint64_t> {
51 struct Traits<int64_t> {
59 char buffer1[Traits<T>::kBufferSize];
60 char buffer2[Traits<T>::kBufferSize];
83 VerifyValue<T>(Traits<T>::Negate(i), f, g);
84 VerifyValue<T>(Traits<T>::Negate(i + 1), f, g);
  /external/libcxx/test/std/experimental/string.view/string.view.cons/
from_string.pass.cpp 23 template<typename CharT, typename Traits>
24 void test ( const std::basic_string<CharT, Traits> &str ) {
25 std::experimental::basic_string_view<CharT, Traits> sv1 ( str );
  /external/webrtc/webrtc/modules/desktop_capture/win/
scoped_gdi_object.h 23 template<class T, class Traits>
30 Traits::Close(handle_);
39 Traits::Close(handle_);
62 // The traits class that uses DeleteObject() to close a handle.
76 // The traits class that uses DestroyCursor() to close a handle.
  /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=*/ nullptr);
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/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/libcxx/test/std/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), "");
  /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/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 37 typedef SSAUpdaterTraits<UpdaterT> Traits;
38 typedef typename Traits::BlkT BlkT;
39 typedef typename Traits::ValT ValT;
40 typedef typename Traits::PhiT PhiT;
86 ValT V = Traits::GetUndefVal(BB, Updater);
117 Traits::FindPredecessorBlocks(Info->BB, &Preds);
184 for (typename Traits::BlkSucc_iterator SI =
185 Traits::BlkSucc_begin(Info->BB),
186 E = Traits::BlkSucc_end(Info->BB); SI != E; ++SI) {
244 Pred->AvailableVal = Traits::GetUndefVal(Pred->BB, Updater)
    [all...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
TypeConverter.cpp 235 template <class Traits>
236 bool TypeConverter<Traits>::toString(const typename Traits::Type &value, std::string &str)
247 template <class Traits>
248 bool TypeConverter<Traits>::fromString(const std::string &str, typename Traits::Type &result)
260 template <class Traits>
261 void TypeConverter<Traits>::collectionFromString(const std::string &str,
262 typename Traits::Collection &collection,
268 typename Traits::Type value
    [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
303 struct traits<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType> > struct in namespace:Eigen::internal
417 struct traits<Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType>,_PacketAccess> > struct in namespace:Eigen::internal
494 struct traits<PermutationWrapper<_IndicesType> > struct in namespace:Eigen::internal
563 struct traits<permut_matrix_product_retval<PermutationType, MatrixType, Side, Transposed> > struct in namespace:Eigen::internal
640 struct traits<Transpose<PermutationBase<Derived> > > struct in namespace:Eigen::internal
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 108 template <class Char, class Traits>
109 inline std::basic_ostream<Char, Traits>& operator<<(
110 std::basic_ostream<Char, Traits>& pOS,
115 template <class Char, class Traits>
116 inline std::basic_istream<Char, Traits>& operator>>(
117 std::basic_istream<Char, Traits>& pOS,

Completed in 1156 milliseconds

1 2 3 4