HomeSort by relevance Sort by last modified time
    Searched defs:down_cast (Results 1 - 11 of 11) sorted by null

  /art/libartbase/base/
casts.h 73 template<typename To, typename From> // use like this: down_cast<T*>(foo);
74 inline To down_cast(From* f) { // so we only accept pointers function in namespace:art
76 "down_cast unsafe as To is not a subtype of From");
81 template<typename To, typename From> // use like this: down_cast<T&>(foo);
82 inline To down_cast(From& f) { // so we only accept references function in namespace:art
84 "down_cast unsafe as To is not a subtype of From");
  /external/protobuf/src/google/protobuf/stubs/
casts.h 80 template<typename To, typename From> // use like this: down_cast<T*>(foo);
81 inline To down_cast(From* f) { // so we only accept pointers function in namespace:google::protobuf::internal
96 template<typename To, typename From> // use like this: down_cast<T&>(foo);
97 inline To down_cast(From& f) { function in namespace:google::protobuf::internal
128 using internal::down_cast;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
casts.h 80 template<typename To, typename From> // use like this: down_cast<T*>(foo);
81 inline To down_cast(From* f) { // so we only accept pointers function in namespace:google::protobuf::internal
96 template<typename To, typename From> // use like this: down_cast<T&>(foo);
97 inline To down_cast(From& f) { function in namespace:google::protobuf::internal
128 using internal::down_cast;
  /external/sfntly/cpp/src/sfntly/port/
type.h 73 template<typename To, typename From> // use like this: down_cast<T*>(foo);
74 inline To down_cast(From* f) { // so we only accept pointers function
  /external/tensorflow/tensorflow/core/kernels/data/
iterator_ops.cc 527 template <typename To, typename From> // use like this: down_cast<T*>(foo);
528 static inline To down_cast(From* f) { // so we only accept pointers function in class:tensorflow::__anon39744::IteratorHandleOp
550 ctx->device()->name(), down_cast<Device*>(ctx->device()),
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 333 template<typename To, typename From> // use like this: down_cast<T*>(foo);
334 inline To down_cast(From* f) { // so we only accept pointers function in namespace:google::protobuf::internal
354 using internal::down_cast;
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 333 template<typename To, typename From> // use like this: down_cast<T*>(foo);
334 inline To down_cast(From* f) { // so we only accept pointers function in namespace:google::protobuf::internal
354 using internal::down_cast;
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
common.h 333 template<typename To, typename From> // use like this: down_cast<T*>(foo);
334 inline To down_cast(From* f) { // so we only accept pointers function in namespace:google::protobuf::internal
354 using internal::down_cast;
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
common.h 333 template<typename To, typename From> // use like this: down_cast<T*>(foo);
334 inline To down_cast(From* f) { // so we only accept pointers function in namespace:google::protobuf::internal
354 using internal::down_cast;
    [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.h 269 * upb::MessgeDef* md = upb::down_cast<upb::MessageDef>(def);
273 template<class To, class From> To down_cast(From* f);
281 * upb::MessgeDef* md = upb::down_cast<upb::MessageDef>(def);
409 reffed_ptr<U> down_cast() { function in class:upb::reffed_ptr
410 return reffed_ptr<U>(upb::down_cast<U*>(get()));
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
upb.h 289 * upb::MessgeDef* md = upb::down_cast<upb::MessageDef>(def);
293 template<class To, class From> To down_cast(From* f);
301 * upb::MessgeDef* md = upb::down_cast<upb::MessageDef>(def);
1622 reffed_ptr<U> down_cast() { function in class:upb::reffed_ptr
    [all...]

Completed in 934 milliseconds