HomeSort by relevance Sort by last modified time
    Searched refs:Derived (Results 276 - 300 of 327) sorted by null

<<11121314

  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h 15 // contributors may be used to endorse or promote products derived from
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h 15 // contributors may be used to endorse or promote products derived from
    [all...]
  /external/chromium_org/base/memory/
weak_ptr_unittest.cc 44 struct Derived : public Base {};
252 Derived data;
253 WeakPtrFactory<Derived> factory(&data);
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 55 const BaseSubobjectInfo *Derived;
250 if (Info == PrimaryVirtualBaseInfo->Derived) {
299 if (Info == PrimaryVirtualBaseInfo->Derived)
359 // This is the most derived class, traverse virtual bases as well.
464 // This is the most derived class, traverse virtual bases as well.
688 BaseSubobjectInfo *Derived);
849 BaseSubobjectInfo *Derived) {
869 Info->Derived = nullptr;
887 if (PrimaryVirtualBaseInfo->Derived) {
895 PrimaryVirtualBaseInfo->Derived = Info
    [all...]
  /external/eigen/Eigen/src/LU/
FullPivLU.h 218 return internal::solve_retval<FullPivLU, Rhs>(*this, b.derived());
734 template<typename Derived>
735 inline const FullPivLU<typename MatrixBase<Derived>::PlainObject>
736 MatrixBase<Derived>::fullPivLu() const
  /external/chromium_org/third_party/WebKit/Source/wtf/
ListHashSet.h 57 template<typename Derived, typename Allocator, bool isGarbageCollected>
60 template<typename Derived, typename Allocator>
61 class ListHashSetDestructorBase<Derived, Allocator, true> {
66 template<typename Derived, typename Allocator>
67 class ListHashSetDestructorBase<Derived, Allocator, false> {
69 ~ListHashSetDestructorBase() { static_cast<Derived*>(this)->finalize(); }
    [all...]
HashTable.h 349 template<typename Derived, bool isGarbageCollected>
352 template<typename Derived>
353 class HashTableDestructorBase<Derived, true> { };
355 template<typename Derived>
356 class HashTableDestructorBase<Derived, false> {
358 ~HashTableDestructorBase() { static_cast<Derived*>(this)->finalize(); }
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-layout.cpp 54 struct Derived : Base { virtual Obj *foo() { return new Obj(); } };
56 void test(Derived *D) { D->foo(); }
136 // If a function in a derived class overrides a function in a primary base,
137 // then the function should not have an entry in the derived class (unless the return
    [all...]
mangle.cpp 403 struct Derived : Path1, Path2 { };
417 Derived obj;
  /external/deqp/modules/egl/
teglRenderCase.cpp 66 template<class Derived, class Base>
69 return dynamic_cast<Derived*>(&obj) != DE_NULL;
  /external/clang/lib/CodeGen/
CGClass.cpp 84 const CXXRecordDecl *Derived,
87 // 'this' must be a pointer (in some address space) to Derived.
90 == ConvertType(Derived));
94 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(Derived);
139 const CXXRecordDecl *Derived,
162 ComputeNonVirtualBaseClassOffset(getContext(), VBase ? VBase : Derived,
166 // For now, that's limited to when the derived type is final.
168 if (VBase && Derived->hasAttr<FinalAttr>()) {
169 const ASTRecordLayout &layout = getContext().getASTRecordLayout(Derived);
204 CGM.getCXXABI().GetVirtualBaseClassOffset(*this, Value, Derived, VBase)
    [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp     [all...]
MicrosoftExtensions.cpp 18 struct Derived : Base {
  /external/chromium_org/testing/gtest/test/
gtest-port_test.cc 15 // contributors may be used to endorse or promote products derived from
114 class Derived : public Base {
116 explicit Derived(int n) : Base(n) {}
120 Derived derived(0);
121 EXPECT_TRUE(&derived == ::testing::internal::ImplicitCast_<Base*>(&derived));
125 Derived derived(1);
126 Base base = ::testing::internal::ImplicitCast_<Base>(derived);
    [all...]
  /external/clang/include/clang/AST/
ASTTypeTraits.h 75 /// Includes all possible base and derived kinds.
85 #define DECL(DERIVED, BASE) NKI_##DERIVED##Decl,
88 #define STMT(DERIVED, BASE) NKI_##DERIVED,
91 #define TYPE(DERIVED, BASE) NKI_##DERIVED##Type,
100 /// Derived.
102 /// and \c Derived in the class hierarchy.
103 static bool isBaseOf(NodeKindId Base, NodeKindId Derived, unsigned *Distance)
    [all...]
VTableBuilder.h 385 /// A derived class will reuse the vptr of the first non-virtual base
403 /// derived class. If it's null, then it's already been pushed onto the path.
407 /// derived class indirectly inherits from the same vbase twice, we only keep
412 /// with the given vfptr offset, in the base-to-derived order. Only used for
416 /// Static offset from the top of the most derived class to this vfptr,
435 /// the derived class to the a base.
439 /// derived class.
531 /// \brief Returns the index of VBase in the vbtable of Derived.
532 /// VBase must be a morally virtual base of Derived.
535 unsigned getVBTableIndex(const CXXRecordDecl *Derived,
    [all...]
  /external/clang/test/CXX/drs/
dr1xx.cpp 799 template<typename T> struct Derived : public Base<T> {
801 typedef typename Derived::template Base<T> A;
802 typedef typename Derived::Base A;
805 template struct Derived<int>;
  /external/eigen/Eigen/src/Core/
Array.h 54 template <typename Derived, typename OtherDerived, bool IsVector>
210 : Base(other.derived().rows() * other.derived().cols(), other.derived().rows(), other.derived().cols())
222 { this->_swap(other.derived()); }
Matrix.h 304 : Base(other.derived().rows() * other.derived().cols(), other.derived().rows(), other.derived().cols())
308 // FIXME/CHECK: isn't *this = other.derived() more efficient. it allows to
319 { this->_swap(other.derived()); }
344 template <typename Derived, typename OtherDerived, bool IsVector>
  /external/gtest/test/
gtest-port_test.cc 15 // contributors may be used to endorse or promote products derived from
114 class Derived : public Base {
116 explicit Derived(int n) : Base(n) {}
120 Derived derived(0);
121 EXPECT_TRUE(&derived == ::testing::internal::ImplicitCast_<Base*>(&derived));
125 Derived derived(1);
126 Base base = ::testing::internal::ImplicitCast_<Base>(derived);
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-port_test.cc 15 // contributors may be used to endorse or promote products derived from
114 class Derived : public Base {
116 explicit Derived(int n) : Base(n) {}
120 Derived derived(0);
121 EXPECT_TRUE(&derived == ::testing::internal::ImplicitCast_<Base*>(&derived));
125 Derived derived(1);
126 Base base = ::testing::internal::ImplicitCast_<Base>(derived);
    [all...]
  /external/chromium_org/v8/src/
objects.cc     [all...]
objects-inl.h     [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTest.java 33 import com.google.common.collect.SetsTest.Derived;
230 TreeMap<Derived, Integer> map = Maps.newTreeMap();
232 map.put(new Derived("foo"), 1);
233 map.put(new Derived("bar"), 2);
235 new Derived("bar"), new Derived("foo"));
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
SVD.h 628 template<typename Derived>
629 inline SVD<typename MatrixBase<Derived>::PlainObject>
630 MatrixBase<Derived>::svd() const
632 return SVD<PlainObject>(derived());

Completed in 1316 milliseconds

<<11121314