/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 | RenderSurfaceTest.cpp | 47 using testing::Ref; 197 EXPECT_CALL(mHwComposer, prepare(*DEFAULT_DISPLAY_ID, Ref(mDisplay))) in TEST_F() 204 EXPECT_CALL(mHwComposer, prepare(*DEFAULT_DISPLAY_ID, Ref(mDisplay))) in TEST_F() 211 EXPECT_CALL(mHwComposer, prepare(*DEFAULT_DISPLAY_ID, Ref(mDisplay))) in TEST_F() 223 EXPECT_CALL(mHwComposer, prepare(*DEFAULT_DISPLAY_ID, Ref(mDisplay))) in TEST_F() 235 EXPECT_CALL(mHwComposer, prepare(*DEFAULT_DISPLAY_ID, Ref(mDisplay))) in TEST_F() 247 EXPECT_CALL(mHwComposer, prepare(*DEFAULT_DISPLAY_ID, Ref(mDisplay))) in TEST_F()
|
D | DisplayColorProfileTest.cpp | 57 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 | 41 StringPool::Ref ref = src_pool->MakeRef(source.path); in SerializeSourceToPb()
|
/frameworks/native/services/surfaceflinger/tests/unittests/ |
D | CompositionTest.cpp | 59 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/non-updatable-api/ |
D | current.txt | 67140 method public java.sql.Ref getRef(int) throws java.sql.SQLException; 67141 method public java.sql.Ref getRef(String) throws java.sql.SQLException; 67646 method public void setRef(int, java.sql.Ref) throws java.sql.SQLException; 67659 public interface Ref { 67726 method public java.sql.Ref getRef(int) throws java.sql.SQLException; 67727 method public java.sql.Ref getRef(String) throws java.sql.SQLException; 67838 method public void updateRef(int, java.sql.Ref) throws java.sql.SQLException; 67839 method public void updateRef(String, java.sql.Ref) throws java.sql.SQLException; 67984 method public java.sql.Ref readRef() throws java.sql.SQLException; 68058 method public void writeRef(java.sql.Ref) throws java.sql.SQLException; [all …]
|
/frameworks/base/api/ |
D | current.txt | 67284 method public java.sql.Ref getRef(int) throws java.sql.SQLException; 67285 method public java.sql.Ref getRef(String) throws java.sql.SQLException; 67790 method public void setRef(int, java.sql.Ref) throws java.sql.SQLException; 67803 public interface Ref { 67870 method public java.sql.Ref getRef(int) throws java.sql.SQLException; 67871 method public java.sql.Ref getRef(String) throws java.sql.SQLException; 67982 method public void updateRef(int, java.sql.Ref) throws java.sql.SQLException; 67983 method public void updateRef(String, java.sql.Ref) throws java.sql.SQLException; 68128 method public java.sql.Ref readRef() throws java.sql.SQLException; 68202 method public void writeRef(java.sql.Ref) throws java.sql.SQLException; [all …]
|