Searched refs:Base (Results 51 - 75 of 519) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/
H A Dcxx-for-range-cfg.cpp10 T *Base; member in class:rdar11671507_vector
/external/clang/test/CodeGenCXX/
H A Dapple-kext-indirect-call-2.C28 struct Base { virtual char* abc(void) const; }; struct
30 char* Base::abc() const { return 0; }
32 struct Derived : public Base {
38 char* c = p->Base::abc();
H A Dcxx0x-delegating-ctors.cpp72 class Base { class in namespace:PR14588
74 Base() { squawk(); } function in class:PR14588::Base
75 virtual ~Base() {}
81 class Foo : public virtual Base {
/external/eigen/Eigen/src/Core/
H A DArrayBase.h20 * \brief Base class for all 1D and 2D array, and related expressions
58 typedef DenseBase<Derived> Base; typedef in class:Eigen::ArrayBase
59 using Base::RowsAtCompileTime;
60 using Base::ColsAtCompileTime;
61 using Base::SizeAtCompileTime;
62 using Base::MaxRowsAtCompileTime;
63 using Base::MaxColsAtCompileTime;
64 using Base::MaxSizeAtCompileTime;
65 using Base::IsVectorAtCompileTime;
66 using Base
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSAttrCustom.cpp44 Base::markChildren(markStack);
H A DJSCSSFontFaceRuleCustom.cpp37 Base::markChildren(markStack);
H A DJSCSSPageRuleCustom.cpp37 Base::markChildren(markStack);
H A DJSCSSStyleRuleCustom.cpp37 Base::markChildren(markStack);
H A DJSDOMImplementationCustom.cpp34 Base::markChildren(markStack);
H A DJSHTMLLinkElementCustom.cpp37 Base::markChildren(markStack);
H A DJSHTMLStyleElementCustom.cpp37 Base::markChildren(markStack);
H A DJSJavaScriptAudioNodeCustom.cpp39 Base::markChildren(markStack);
H A DJSNodeIteratorCustom.cpp34 Base::markChildren(markStack);
H A DJSProcessingInstructionCustom.cpp37 Base::markChildren(markStack);
H A DJSSVGElementInstanceCustom.cpp38 Base::markChildren(markStack);
H A DJSTreeWalkerCustom.cpp34 Base::markChildren(markStack);
H A DJSWebKitCSSKeyframeRuleCustom.cpp37 Base::markChildren(markStack);
H A DJSWebKitCSSKeyframesRuleCustom.cpp37 Base::markChildren(markStack);
/external/clang/test/SemaCXX/
H A Dconditional-expr.cpp22 struct Base { struct
27 struct Derived : Base {
30 struct Convertible { operator Base&(); };
31 struct Priv : private Base {}; // expected-note 4 {{declared private here}}
32 struct Mid : Base {};
91 Base base;
94 Base &bar1 = i1 ? base : derived;
95 Base &bar2 = i1 ? derived : base;
96 Base &bar3 = i1 ? base : conv;
97 Base
[all...]
H A Ddirect-initializer.cpp38 struct Base { struct
42 struct Derived : Base {
H A Dclass-base-member-init.cpp79 struct Base { struct in namespace:test5
80 Base(int);
82 struct A : Base {
83 A() : decltype(Base(1))(3) {
85 A(int) : Base(3), // expected-note {{previous initialization is here}}
86 decltype(Base(1))(2), // expected-error {{multiple initializations given for base 'decltype(test5::Base(1))' (aka 'test5::Base')}}
/external/eigen/Eigen/src/SparseCore/
H A DSparseTranspose.h36 typedef typename _MatrixTypeNested::InnerIterator Base; typedef in class:Eigen::TransposeImpl::InnerIterator
40 : Base(trans.derived().nestedExpression(), outer)
42 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); }
43 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
49 typedef typename _MatrixTypeNested::ReverseInnerIterator Base; typedef in class:Eigen::TransposeImpl::ReverseInnerIterator
53 : Base(xpr.derived().nestedExpression(), outer)
55 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); }
56 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
/external/eigen/Eigen/src/misc/
H A DKernel.h41 typedef ReturnByValue<kernel_retval_base> Base; typedef in struct:Eigen::internal::kernel_retval_base
42 typedef typename Base::Index Index;
72 typedef Eigen::internal::kernel_retval_base<DecompositionType> Base; \
73 using Base::dec; \
74 using Base::rank; \
75 using Base::rows; \
76 using Base::cols; \
77 kernel_retval(const DecompositionType& dec) : Base(dec) {}
H A DSolve.h37 typedef ReturnByValue<solve_retval_base> Base; typedef in struct:Eigen::internal::solve_retval_base
38 typedef typename Base::Index Index;
66 typedef Eigen::internal::solve_retval_base<DecompositionType,Rhs> Base; \
67 using Base::dec; \
68 using Base::rhs; \
69 using Base::rows; \
70 using Base::cols; \
72 : Base(dec, rhs) {}
/external/chromium/chrome/browser/sync/engine/
H A Dsyncproto.h20 template<class Base>
21 class IdWrapper : public Base {
24 explicit IdWrapper(const Base& other) : Base(other) {
27 return syncable::Id::CreateFromServerId(Base::id_string());
30 Base::set_id_string(id.GetServerId());

Completed in 264 milliseconds

1234567891011>>