/frameworks/base/tools/aapt2/ |
D | StringPool.h | 74 class Ref { 76 Ref(); 77 Ref(const Ref&); 78 ~Ref(); 80 Ref& operator=(const Ref& rhs); 81 bool operator==(const Ref& rhs) const; 82 bool operator!=(const Ref& rhs) const; 92 explicit Ref(Entry* entry); 129 friend class Ref; variable 137 Ref name; [all …]
|
D | StringPool_test.cpp | 39 StringPool::Ref ref = pool.MakeRef("wut"); in TEST() 46 StringPool::Ref ref_a = pool.MakeRef("wut"); in TEST() 47 StringPool::Ref ref_b = pool.MakeRef("hey"); in TEST() 56 StringPool::Ref ref_a = pool.MakeRef("wut"); in TEST() 57 StringPool::Ref ref_b = pool.MakeRef("wut"); in TEST() 67 StringPool::Ref ref_a = pool.MakeRef("wut", StringPool::Context(0x81010001)); in TEST() 68 StringPool::Ref ref_b = pool.MakeRef("wut", StringPool::Context(0x81010002)); in TEST() 78 StringPool::Ref ref_a = pool.MakeRef("z"); in TEST() 79 StringPool::Ref ref_b = pool.MakeRef("a"); in TEST() 80 StringPool::Ref ref_c = pool.MakeRef("m"); in TEST() [all …]
|
D | StringPool.cpp | 34 StringPool::Ref::Ref() : entry_(nullptr) {} in Ref() function in aapt::StringPool::Ref 36 StringPool::Ref::Ref(const StringPool::Ref& rhs) : entry_(rhs.entry_) { in Ref() function in aapt::StringPool::Ref 42 StringPool::Ref::Ref(StringPool::Entry* entry) : entry_(entry) { in Ref() function in aapt::StringPool::Ref 48 StringPool::Ref::~Ref() { in ~Ref() 54 StringPool::Ref& StringPool::Ref::operator=(const StringPool::Ref& rhs) { in operator =() 66 bool StringPool::Ref::operator==(const Ref& rhs) const { in operator ==() 70 bool StringPool::Ref::operator!=(const Ref& rhs) const { in operator !=() 74 const std::string* StringPool::Ref::operator->() const { in operator ->() 78 const std::string& StringPool::Ref::operator*() const { in operator *() 82 size_t StringPool::Ref::index() const { in index() [all …]
|
D | ResourceValues.h | 195 StringPool::Ref value; 197 explicit RawString(const StringPool::Ref& ref); 224 StringPool::Ref value; 231 explicit String(const StringPool::Ref& ref); 257 StringPool::Ref path; 268 explicit FileReference(const StringPool::Ref& path);
|
D | ResourceValues.cpp | 70 RawString::RawString(const StringPool::Ref& ref) : value(ref) {} in RawString() 231 String::String(const StringPool::Ref& ref) : value(ref) { in String() 339 FileReference::FileReference(const StringPool::Ref& _path) : path(_path) { in FileReference()
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | CompositionEngineTest.cpp | 34 using ::testing::Ref; 93 EXPECT_CALL(mEngine, preComposition(Ref(mRefreshArgs))); in TEST_F() 103 EXPECT_CALL(mEngine, preComposition(Ref(mRefreshArgs))); in TEST_F() 106 EXPECT_CALL(*mOutput1, prepare(Ref(mRefreshArgs), _)); in TEST_F() 107 EXPECT_CALL(*mOutput2, prepare(Ref(mRefreshArgs), _)); in TEST_F() 108 EXPECT_CALL(*mOutput3, prepare(Ref(mRefreshArgs), _)); in TEST_F() 112 EXPECT_CALL(*mOutput1, updateLayerStateFromFE(Ref(mRefreshArgs))); in TEST_F() 113 EXPECT_CALL(*mOutput2, updateLayerStateFromFE(Ref(mRefreshArgs))); in TEST_F() 114 EXPECT_CALL(*mOutput3, updateLayerStateFromFE(Ref(mRefreshArgs))); in TEST_F() 117 EXPECT_CALL(*mOutput1, present(Ref(mRefreshArgs))); in TEST_F() [all …]
|
D | OutputTest.cpp | 54 using testing::Ref; 842 EXPECT_CALL(mOutput, rebuildLayerStacks(Ref(mRefreshArgs), Ref(mGeomSnapshots))); in TEST_F() 869 EXPECT_CALL(mOutput, collectVisibleLayers(Ref(mRefreshArgs), _)) in OutputRebuildLayerStacksTest() 1023 EXPECT_CALL(mOutput, setReleasedLayers(Ref(mRefreshArgs))); in TEST_F() 1034 EXPECT_CALL(mOutput, ensureOutputLayerIfVisible(Eq(mLayer3.layerFE), Ref(mCoverageState))); in TEST_F() 1035 EXPECT_CALL(mOutput, ensureOutputLayerIfVisible(Eq(mLayer2.layerFE), Ref(mCoverageState))); in TEST_F() 1036 EXPECT_CALL(mOutput, ensureOutputLayerIfVisible(Eq(mLayer1.layerFE), Ref(mCoverageState))); in TEST_F() 1038 EXPECT_CALL(mOutput, setReleasedLayers(Ref(mRefreshArgs))); in TEST_F() 1563 EXPECT_CALL(mOutput, updateColorProfile(Ref(args))); in TEST_F() 1564 EXPECT_CALL(mOutput, updateAndWriteCompositionState(Ref(args))); in TEST_F() [all …]
|
D | RenderSurfaceTest.cpp | 42 using testing::Ref;
|
D | DisplayColorProfileTest.cpp | 28 using testing::Ref;
|
D | DisplayTest.cpp | 52 using testing::Ref;
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_object.h | 132 typedef egl_object_t::LocalRef<egl_surface_t, EGLSurface> Ref; typedef 193 typedef egl_object_t::LocalRef<egl_context_t, EGLContext> Ref; typedef 214 typedef egl_surface_t::Ref SurfaceRef; 215 typedef egl_context_t::Ref ContextRef;
|
/frameworks/base/tools/aapt2/format/binary/ |
D | XmlFlattener.cpp | 71 StringPool::Ref ref; 182 void AddString(const StringPool::Ref& ref, android::ResStringPool_ref* dest) { in AddString() 259 StringPool::Ref name_ref = package_pools[aapt_attr.id.value().package_id()].MakeRef( in WriteAttributes()
|
/frameworks/hardware/interfaces/cameraservice/device/2.0/ |
D | types.hal | 27 * Ref: system/media/camera/src/camera_metadata.c 316 * obtained by using AImageReader_getWindowHandle. Ref: 327 * [1]: Ref : frameworks/av/camera/ndk/include/camera/NdkCameraDevice.h 374 * Ref:frameworks/base/core/java/android/hardware/camera2/params/OutputConfiguration.java
|
/frameworks/native/libs/vr/libpdx/ |
D | service_tests.cpp | 30 using testing::Ref; 227 EXPECT_CALL(*service_, OnChannelOpen(Ref(message))).WillOnce(Return(channel)); in TEST_F() 244 EXPECT_CALL(*service_, OnChannelClose(Ref(message), channel)); in TEST_F()
|
/frameworks/base/tools/aapt2/format/proto/ |
D | ProtoSerialize.cpp | 43 StringPool::Ref ref = src_pool->MakeRef(source.path); in SerializeSourceToPb()
|
/frameworks/native/services/surfaceflinger/tests/unittests/ |
D | CompositionTest.cpp | 71 using testing::Ref;
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 45863 method public abstract java.sql.Ref getRef(int) throws java.sql.SQLException; 45864 method public abstract java.sql.Ref getRef(java.lang.String) throws java.sql.SQLException; 46371 method public abstract void setRef(int, java.sql.Ref) throws java.sql.SQLException; 46384 public abstract interface Ref { 46451 method public abstract java.sql.Ref getRef(int) throws java.sql.SQLException; 46452 method public abstract java.sql.Ref getRef(java.lang.String) throws java.sql.SQLException; 46563 method public abstract void updateRef(int, java.sql.Ref) throws java.sql.SQLException; 46564 …method public abstract void updateRef(java.lang.String, java.sql.Ref) throws java.sql.SQLException; 46711 method public abstract java.sql.Ref readRef() throws java.sql.SQLException; 46785 method public abstract void writeRef(java.sql.Ref) throws java.sql.SQLException; [all …]
|
/frameworks/base/api/ |
D | current.txt | 69753 method public java.sql.Ref getRef(int) throws java.sql.SQLException; 69754 method public java.sql.Ref getRef(String) throws java.sql.SQLException; 70259 method public void setRef(int, java.sql.Ref) throws java.sql.SQLException; 70272 public interface Ref { 70339 method public java.sql.Ref getRef(int) throws java.sql.SQLException; 70340 method public java.sql.Ref getRef(String) throws java.sql.SQLException; 70451 method public void updateRef(int, java.sql.Ref) throws java.sql.SQLException; 70452 method public void updateRef(String, java.sql.Ref) throws java.sql.SQLException; 70597 method public java.sql.Ref readRef() throws java.sql.SQLException; 70671 method public void writeRef(java.sql.Ref) throws java.sql.SQLException; [all …]
|
/frameworks/base/non-updatable-api/ |
D | current.txt | 67914 method public java.sql.Ref getRef(int) throws java.sql.SQLException; 67915 method public java.sql.Ref getRef(String) throws java.sql.SQLException; 68420 method public void setRef(int, java.sql.Ref) throws java.sql.SQLException; 68433 public interface Ref { 68500 method public java.sql.Ref getRef(int) throws java.sql.SQLException; 68501 method public java.sql.Ref getRef(String) throws java.sql.SQLException; 68612 method public void updateRef(int, java.sql.Ref) throws java.sql.SQLException; 68613 method public void updateRef(String, java.sql.Ref) throws java.sql.SQLException; 68758 method public java.sql.Ref readRef() throws java.sql.SQLException; 68832 method public void writeRef(java.sql.Ref) throws java.sql.SQLException; [all …]
|