Searched refs:Base (Results 1 - 24 of 24) sorted by relevance

/frameworks/support/lifecycle/common/src/test/java/androidx/lifecycle/observers/
H A DDerivedWithNoNewMethods.java19 public class DerivedWithNoNewMethods extends Base {
H A DDerivedSequence1.java19 public class DerivedSequence1 extends Base {
H A DInterfaceImpl3.java19 public class InterfaceImpl3 extends Base implements Interface1 {
H A DBase.java23 public class Base implements LifecycleObserver { class in inherits:LifecycleObserver
H A DDerivedWithNewMethods.java22 public class DerivedWithNewMethods extends Base {
H A DDerivedWithOverridenMethodsWithLfAnnotation.java22 public class DerivedWithOverridenMethodsWithLfAnnotation extends Base {
H A DBase_LifecycleAdapter.java26 public Base_LifecycleAdapter(Base base) {
/frameworks/support/lifecycle/compiler/src/tests/test-data/
H A DInvalidInheritance1.java25 class Base implements LifecycleObserver { class in inherits:LifecycleObserver
31 class Derived extends Base {
H A DInvalidInheritance2.java25 interface Base extends LifecycleObserver { interface in inherits:LifecycleObserver
30 class Derived implements Base {
/frameworks/native/libs/vr/libvrflinger/
H A Dhwc_types.h98 // Base type for the enum wrappers below. This type provides type definitions
103 // constructors in subclasses via "using Base::Base;" statements.
104 using Base = Wrapper<EnumType>;
168 Attribute() : Base(Invalid) {}
169 using Base::Base;
180 BlendMode() : Base(Invalid) {}
181 using Base::Base;
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DTypeTraits.h145 template<size_t Base, typename T, typename ...Us>
151 template<size_t Base, typename T>
152 struct HIDE _find_first_impl<Base, T> : std::integral_constant<size_t, 0> {};
157 template<size_t Base, typename T, typename ...Us>
158 struct HIDE _find_first_impl<Base, T, T, Us...> : std::integral_constant<size_t, Base> {};
163 template<size_t Base, typename T, typename U, typename ...Us>
164 struct HIDE _find_first_impl<Base, T, U, Us...>
165 : std::integral_constant<size_t, _find_first_impl<Base + 1, T, Us...>::value> {};
185 template<size_t Base, typenam
[all...]
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DTypeTraits.h145 template<size_t Base, typename T, typename ...Us>
151 template<size_t Base, typename T>
152 struct HIDE _find_first_impl<Base, T> : std::integral_constant<size_t, 0> {};
157 template<size_t Base, typename T, typename ...Us>
158 struct HIDE _find_first_impl<Base, T, T, Us...> : std::integral_constant<size_t, Base> {};
163 template<size_t Base, typename T, typename U, typename ...Us>
164 struct HIDE _find_first_impl<Base, T, U, Us...>
165 : std::integral_constant<size_t, _find_first_impl<Base + 1, T, Us...>::value> {};
185 template<size_t Base, typenam
[all...]
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DTypeTraits.h145 template<size_t Base, typename T, typename ...Us>
151 template<size_t Base, typename T>
152 struct HIDE _find_first_impl<Base, T> : std::integral_constant<size_t, 0> {};
157 template<size_t Base, typename T, typename ...Us>
158 struct HIDE _find_first_impl<Base, T, T, Us...> : std::integral_constant<size_t, Base> {};
163 template<size_t Base, typename T, typename U, typename ...Us>
164 struct HIDE _find_first_impl<Base, T, U, Us...>
165 : std::integral_constant<size_t, _find_first_impl<Base + 1, T, Us...>::value> {};
185 template<size_t Base, typenam
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DGCFactory.h64 typedef DataIteratorBase<ChunkType> Base; typedef in class:mcld::DataIterator
75 DataIterator() : Base(NULL, 0) {}
77 DataIterator(ChunkType* pChunk, unsigned int pPos) : Base(pChunk, pPos) {}
79 DataIterator(const DataIterator& pCopy) : Base(pCopy.m_pChunk, pCopy.m_Pos) {}
87 return this->m_pChunk->data[Base::m_Pos];
91 this->Base::advance();
97 this->Base::advance();
/frameworks/native/libs/vr/libdisplay/include/private/dvr/
H A Ddisplay_protocol.h60 using Base = Flags<Integer>;
104 SurfaceUpdateFlags() : Base{None} {}
105 using Base::Base;
131 SurfaceAttribute() : Base{Invalid} {}
132 using Base::Base;
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h30 typedef PolicyIteratorBase<Input, Traits, IteratorType> Base; typedef in class:mcld::PolicyIterator
37 PolicyIterator() : Base() {}
39 PolicyIterator(const iterator& X) : Base(X.m_pNode) {}
41 explicit PolicyIterator(NodeBase* X) : Base(X) {}
45 bool isGroup() const { return !Base::hasData() && !Base::isRoot(); }
/frameworks/av/services/audiopolicy/engineconfigurable/src/
H A DCollection.h50 typedef std::map<Key, Element<Key> *> Base; typedef in class:android::audio_policy::Collection
131 Base::clear();
/frameworks/rs/rsov/compiler/
H A DGlobalMergePass.cpp102 Value *Base = MergedGV;
106 Base = new BitCastInst(Load, PointerType::getUnqual(MergedTy), "",
108 DEBUG(Base->dump());
111 MergedTy, Base, Idx, "", InsertBefore);
/frameworks/native/cmds/installd/
H A DAndroid.mk11 # Base & ASLR boundaries for boot image creation.
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashIterator.h251 typedef IteratorBase Base; typedef in class:mcld::HashIterator
286 this->Base::advance();
292 this->Base::advance();
H A DBinTree.h139 typedef PolicyIteratorBase<DataType, Traits, IteratorType> Base; typedef in class:mcld::PolicyIterator
147 PolicyIterator() : Base() {}
149 PolicyIterator(const iterator& X) : Base(X.m_pNode) {}
151 explicit PolicyIterator(NodeBase* X) : Base(X) {}
/frameworks/support/lifecycle/integration-tests/testapp/src/test/java/androidx/lifecycle/
H A DGeneratedAdaptersTest.java154 class Base implements LifecycleObserver { class in class:GeneratedAdaptersTest
158 Base(List<String> log) { method in class:GeneratedAdaptersTest.Base
186 class Derived extends Base implements OnAny {
/frameworks/native/services/surfaceflinger/tests/unittests/
H A DDisplayTransactionTest.cpp411 using Base = DisplayVariant<DisplayDevice::DISPLAY_VIRTUAL, DisplayDevice::DISPLAY_ID_INVALID,
416 Base::setupNativeWindowSurfaceCreationCallExpectations(test);
431 using Base =
437 Base::setupNativeWindowSurfaceCreationCallExpectations(test);
442 EXPECT_CALL(*test->mComposer, createVirtualDisplay(Base::WIDTH, Base::HEIGHT, _, _))
/frameworks/rs/script_api/
H A Drs_math.spec1212 summary: Base two exponent
1355 summary: Base 10 logarithm
1401 summary: Base 2 logarithm
1424 summary: Base two exponent
2784 summary: Base raised to an exponent
2810 summary: Base raised to an integer exponent

Completed in 515 milliseconds