/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/ |
FrameBranch.java | 18 package android.filterpacks.base;
|
FrameFetch.java | 18 package android.filterpacks.base;
|
FrameSource.java | 18 package android.filterpacks.base;
|
FrameStore.java | 18 package android.filterpacks.base;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
FrameSlotTarget.java | 17 package androidx.media.filterpacks.base;
|
/frameworks/base/tools/aapt2/util/ |
Files_test.cpp | 38 std::string base = "hello"; local 39 appendPath(&base, "there"); 40 EXPECT_EQ(mExpectedPath, base); 44 std::string base = "hello/"; local 45 appendPath(&base, "there"); 46 EXPECT_EQ(mExpectedPath, base); 48 base = "hello"; 49 appendPath(&base, "/there"); 50 EXPECT_EQ(mExpectedPath, base); 52 base = "hello/" [all...] |
/frameworks/compile/mclinker/lib/Support/ |
MemoryAreaFactory.cpp | 53 const char* base = reinterpret_cast<const char*>(pMemBuffer); local 54 llvm::StringRef name(base, pSize); 57 new (result) MemoryArea(base, pSize);
|
/frameworks/native/include/binder/ |
IMemory.h | 50 void* base() const { return getBase(); } function in class:android::IMemoryHeap
|
/hardware/qcom/display/msm8996/libqdutils/ |
qdMetaData.cpp | 54 void *base = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, local 56 if (base == reinterpret_cast<void*>(MAP_FAILED)) { 60 MetaData_t *data = reinterpret_cast <MetaData_t *>(base); 97 if(munmap(base, size)) 98 ALOGE("%s: failed to unmap ptr %p, err %d", __func__, (void*)base, 118 void *base = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, local 120 if (base == reinterpret_cast<void*>(MAP_FAILED)) { 125 MetaData_t *data = reinterpret_cast <MetaData_t *>(base); 162 if(munmap(base, size)) 163 ALOGE("%s: failed to unmap ptr %p, err %d", __func__, (void*)base, [all...] |
/hardware/qcom/display/msmcobalt/libqdutils/ |
qdMetaData.cpp | 50 void *base = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, local 52 if (base == reinterpret_cast<void*>(MAP_FAILED)) { 56 MetaData_t *data = reinterpret_cast <MetaData_t *>(base); 60 return munmap(base, size); 102 if(munmap(base, size)) 103 ALOGE("%s: failed to unmap ptr %p, err %d", __func__, (void*)base, 119 void *base = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, local 121 if (base == reinterpret_cast<void*>(MAP_FAILED)) { 125 MetaData_t *data = reinterpret_cast <MetaData_t *>(base); 136 if(munmap(base, size) 157 void *base = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
ctor_comp_cont_alloc.pass.cpp | 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test 36 typedef typename base::container_type container_type; 37 typedef typename base::value_compare value_compare; 39 explicit test(const test_allocator<int>& a) : base(a) {} 41 : base(comp, a) {} 43 const test_allocator<int>& a) : base(comp, c, a) {} 46 const test_allocator<int>& a) : base(comp, std::move(c), a) {} 47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} 51 using base::c;
|
ctor_comp_rcont_alloc.pass.cpp | 35 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test 36 typedef typename base::container_type container_type; 37 typedef typename base::value_compare value_compare; 39 explicit test(const test_allocator<int>& a) : base(a) {} 41 : base(comp, a) {} 43 const test_allocator<int>& a) : base(comp, c, a) {} 46 const test_allocator<int>& a) : base(comp, std::move(c), a) {} 47 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} 51 using base::c;
|
ctor_copy_alloc.pass.cpp | 34 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test 35 typedef typename base::container_type container_type; 36 typedef typename base::value_compare value_compare; 38 explicit test(const test_allocator<int>& a) : base(a) {} 40 : base(comp, c, a) {} 42 const test_allocator<int>& a) : base(comp, c, a) {} 43 test(const test& q, const test_allocator<int>& a) : base(q, a) {} 46 using base::c;
|
ctor_move_alloc.pass.cpp | 38 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test 39 typedef typename base::container_type container_type; 40 typedef typename base::value_compare value_compare; 42 explicit test(const test_allocator<int>& a) : base(a) {} 44 : base(comp, c, a) {} 46 const test_allocator<int>& a) : base(comp, c, a) {} 48 const test_allocator<int>& a) : base(comp, std::move(c), a) {} 49 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} 52 using base::c;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/ |
ctor_container_alloc.pass.cpp | 35 typedef std::queue<int, C> base; typedef in struct:test 37 explicit test(const test_allocator<int>& a) : base(a) {} 38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} 40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} 41 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
|
ctor_queue_alloc.pass.cpp | 36 typedef std::queue<T, C> base; typedef in struct:test 38 typedef typename base::container_type container_type; 40 explicit test(const allocator_type& a) : base(a) {} 41 test(const container_type& c, const allocator_type& a) : base(c, a) {} 42 test(const test& q, const allocator_type& a) : base(q, a) {}
|
ctor_rcontainer_alloc.pass.cpp | 39 typedef std::queue<T, C> base; typedef in struct:test 41 typedef typename base::container_type container_type; 43 explicit test(const allocator_type& a) : base(a) {} 44 test(const container_type& c, const allocator_type& a) : base(c, a) {} 45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} 46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
|
ctor_rqueue_alloc.pass.cpp | 39 typedef std::queue<T, C> base; typedef in struct:test 41 typedef typename base::container_type container_type; 43 explicit test(const allocator_type& a) : base(a) {} 44 test(const container_type& c, const allocator_type& a) : base(c, a) {} 45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} 46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/ |
ctor_container_alloc.pass.cpp | 35 typedef std::stack<int, C> base; typedef in struct:test 37 explicit test(const test_allocator<int>& a) : base(a) {} 38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} 40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} 41 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
|
ctor_copy_alloc.pass.cpp | 36 typedef std::stack<T, C> base; typedef in struct:test 38 typedef typename base::container_type container_type; 40 explicit test(const allocator_type& a) : base(a) {} 41 test(const container_type& c, const allocator_type& a) : base(c, a) {} 42 test(const test& q, const allocator_type& a) : base(q, a) {}
|
ctor_rcontainer_alloc.pass.cpp | 39 typedef std::stack<T, C> base; typedef in struct:test 41 typedef typename base::container_type container_type; 43 explicit test(const allocator_type& a) : base(a) {} 44 test(const container_type& c, const allocator_type& a) : base(c, a) {} 45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} 46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
|
ctor_rqueue_alloc.pass.cpp | 39 typedef std::stack<T, C> base; typedef in struct:test 41 typedef typename base::container_type container_type; 43 explicit test(const allocator_type& a) : base(a) {} 44 test(const container_type& c, const allocator_type& a) : base(c, a) {} 45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} 46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/ext.manip/ |
put_money.pass.cpp | 23 typedef std::basic_streambuf<CharT> base; typedef in class:testbuf 31 {return std::basic_string<CharT>(base::pbase(), base::pptr());} 35 virtual typename base::int_type 36 overflow(typename base::int_type __c = base::traits_type::eof()) 38 if (__c != base::traits_type::eof()) 43 base::setp(const_cast<CharT*>(str_.data()), 45 base::pbump(n+1);
|
put_time.pass.cpp | 23 typedef std::basic_streambuf<CharT> base; typedef in class:testbuf 31 {return std::basic_string<CharT>(base::pbase(), base::pptr());} 35 virtual typename base::int_type 36 overflow(typename base::int_type __c = base::traits_type::eof()) 38 if (__c != base::traits_type::eof()) 43 base::setp(const_cast<CharT*>(str_.data()), 45 base::pbump(n+1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream_sentry/ |
ctor.pass.cpp | 27 typedef std::basic_streambuf<CharT> base; typedef in struct:testbuf 36 base::setg(const_cast<CharT*>(str_.data()), 41 CharT* eback() const {return base::eback();} 42 CharT* gptr() const {return base::gptr();} 43 CharT* egptr() const {return base::egptr();}
|