Searched refs:Entry (Results 1 - 25 of 392) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/os/
H A DDropBoxManager.aidl19 parcelable DropBoxManager.Entry cpp_header "android/os/DropBoxManager.h";
H A DDropBoxManager.java50 /** Flag value: Entry's content was deleted to save space. */
92 public static class Entry implements Parcelable, Closeable { class in class:DropBoxManager
100 /** Create a new empty Entry with no contents. */
101 public Entry(String tag, long millis) { method in class:DropBoxManager.Entry
111 /** Create a new Entry with plain text contents. */
112 public Entry(String tag, long millis, String text) { method in class:DropBoxManager.Entry
124 * Create a new Entry with byte array contents.
127 public Entry(String tag, long millis, byte[] data, int flags) { method in class:DropBoxManager.Entry
141 * Create a new Entry with streaming data contents.
144 public Entry(Strin method in class:DropBoxManager.Entry
161 public Entry(String tag, long millis, File data, int flags) throws IOException { method in class:DropBoxManager.Entry
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DKernelWakelockStats.java23 public class KernelWakelockStats extends HashMap<String, KernelWakelockStats.Entry> {
24 public static class Entry { class in class:KernelWakelockStats
29 Entry(int count, long totalTime, int version) { method in class:KernelWakelockStats.Entry
H A DIDropBoxManagerService.aidl34 void add(in DropBoxManager.Entry entry);
40 DropBoxManager.Entry getNextEntry(String tag, long millis);
/frameworks/base/libs/hwui/
H A DLayerUpdateQueue.h35 struct Entry { struct in class:android::uirenderer::LayerUpdateQueue
36 Entry(RenderNode* renderNode, const Rect& damage) function in struct:android::uirenderer::LayerUpdateQueue::Entry
46 const std::vector<Entry>& entries() const { return mEntries; }
48 std::vector<Entry> mEntries;
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DLinkedHashMap_Delegate.java24 import java.util.Map.Entry;
32 public static <K,V> Map.Entry<K,V> eldest(LinkedHashMap<K,V> map) {
33 Iterator<Entry<K, V>> iterator = map.entrySet().iterator();
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOT.h20 * \brief GOT Entry with size of 4 bytes
22 class X86_32GOTEntry : public GOT::Entry<4> {
25 : GOT::Entry<4>(pContent, pParent) {}
42 * \brief GOT Entry with size of 8 bytes
44 class X86_64GOTEntry : public GOT::Entry<8> {
47 : GOT::Entry<8>(pContent, pParent) {}
H A DX86PLT.h57 // X86_32PLT Entry
59 class X86_32DynPLT0 : public PLT::Entry<sizeof(x86_32_dyn_plt0)> {
64 class X86_32DynPLT1 : public PLT::Entry<sizeof(x86_32_dyn_plt1)> {
69 class X86_32ExecPLT0 : public PLT::Entry<sizeof(x86_32_exec_plt0)> {
74 class X86_32ExecPLT1 : public PLT::Entry<sizeof(x86_32_exec_plt1)> {
80 // X86_64PLT Entry
82 class X86_64PLT0 : public PLT::Entry<sizeof(x86_64_plt0)> {
87 class X86_64PLT1 : public PLT::Entry<sizeof(x86_64_plt1)> {
/frameworks/base/libs/hwui/renderstate/
H A DOffscreenBufferPool.h122 struct Entry { struct in class:android::uirenderer::OffscreenBufferPool
123 Entry() {} function in struct:android::uirenderer::OffscreenBufferPool::Entry
125 Entry(const uint32_t layerWidth, const uint32_t layerHeight) function in struct:android::uirenderer::OffscreenBufferPool::Entry
129 explicit Entry(OffscreenBuffer* layer) function in struct:android::uirenderer::OffscreenBufferPool::Entry
135 static int compare(const Entry& lhs, const Entry& rhs);
137 bool operator==(const Entry& other) const {
141 bool operator!=(const Entry& other) const {
145 bool operator<(const Entry& other) const {
146 return Entry
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGOT.h20 * \brief GOT Entry with size of 4 bytes
22 class HexagonGOTEntry : public GOT::Entry<4> {
25 : GOT::Entry<4>(pContent, pParent) {}
/frameworks/base/libs/services/include/android/os/
H A DDropBoxManager.h53 // Create a new Entry with byte array contents. Makes a copy of the data.
56 // Create a new Entry from a file. The file will be opened in this process
61 class Entry : public virtual RefBase, public Parcelable { class in class:android::os::DropBoxManager
63 Entry();
64 virtual ~Entry();
70 Entry(const String16& tag, int32_t flags);
71 Entry(const String16& tag, int32_t flags, int fd);
88 Status add(const Entry& entry);
/frameworks/base/tools/aapt/tests/
H A DResourceTable_test.cpp38 configs->addEntry(defaultConfig, new ResourceTable::Entry(String16(), SourcePos()));
39 configs->addEntry(landConfig, new ResourceTable::Entry(String16(), SourcePos()));
40 configs->addEntry(sw600dpLandConfig, new ResourceTable::Entry(String16(), SourcePos()));
58 configs->addEntry(defaultConfig, new ResourceTable::Entry(String16(), SourcePos()));
59 configs->addEntry(v21Config, new ResourceTable::Entry(String16(), SourcePos()));
60 configs->addEntry(sw600dpV13Config, new ResourceTable::Entry(String16(), SourcePos()));
/frameworks/base/libs/services/src/os/
H A DDropBoxManager.cpp34 DropBoxManager::Entry::Entry() function in class:android::os::DropBoxManager::Entry
44 DropBoxManager::Entry::Entry(const String16& tag, int32_t flags) function in class:android::os::DropBoxManager::Entry
53 DropBoxManager::Entry::Entry(const String16& tag, int32_t flags, int fd) function in class:android::os::DropBoxManager::Entry
62 DropBoxManager::Entry::~Entry()
67 DropBoxManager::Entry::writeToParcel(Parcel* out) const
105 DropBoxManager::Entry
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRemoteInputController.java37 private final ArrayList<Pair<WeakReference<NotificationData.Entry>, Object>> mOpen
54 public void addRemoteInput(NotificationData.Entry entry, Object token) {
75 public void removeRemoteInput(NotificationData.Entry entry, Object token) {
116 private void apply(NotificationData.Entry entry) {
128 public boolean isRemoteInputActive(NotificationData.Entry entry) {
151 NotificationData.Entry contains, NotificationData.Entry remove, Object removeToken) {
154 NotificationData.Entry item = mOpen.get(i).first.get();
178 public void remoteInputSent(NotificationData.Entry entry) {
191 ArrayList<NotificationData.Entry> lis
[all...]
/frameworks/native/include/binder/
H A DPermissionCache.h42 struct Entry { struct in class:android::PermissionCache
46 inline bool operator < (const Entry& e) const {
55 SortedVector< Entry > mCache;
/frameworks/native/libs/binder/include/binder/
H A DPermissionCache.h42 struct Entry { struct in class:android::PermissionCache
46 inline bool operator < (const Entry& e) const {
55 SortedVector< Entry > mCache;
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFDynamic.h47 class Entry {}; class in namespace:mcld::elf_dynamic
50 class Entry<32, true> : public EntryIF { class in namespace:mcld::elf_dynamic
58 inline Entry();
60 inline ~Entry();
62 Entry* clone() const { return new Entry(); }
81 class Entry<64, true> : public EntryIF { class in namespace:mcld::elf_dynamic
89 inline Entry();
91 inline ~Entry();
93 Entry* clon
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DOnHeadsUpChangedListener.java49 default void onHeadsUpStateChanged(NotificationData.Entry entry, boolean isHeadsUp) {}
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DSimpleCache.java35 protected boolean removeEldestEntry(final Map.Entry<K, V> eldest) {
/frameworks/base/tools/aapt2/
H A DFormat.proto60 repeated Entry entries = 3;
75 message Entry {
138 message Entry {
147 repeated Entry entries = 3;
151 message Entry {
156 repeated Entry entries = 1;
160 message Entry {
165 repeated Entry entries = 1;
178 message Entry {
184 repeated Entry entrie
[all...]
H A DStringPool.h65 class Entry;
85 explicit Ref(Entry* entry);
87 Entry* entry_;
115 class Entry { class in class:aapt::StringPool
146 using const_iterator = std::vector<std::unique_ptr<Entry>>::const_iterator;
205 void Sort(const std::function<bool(const Entry&, const Entry&)>& cmp);
222 std::vector<std::unique_ptr<Entry>> strings_;
224 std::unordered_multimap<android::StringPiece, Entry*> indexed_strings_;
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DDropBoxTest.java70 DropBoxManager.Entry e0 = dropbox.getNextEntry("DropBoxTest", before);
71 DropBoxManager.Entry e1 = dropbox.getNextEntry("DropBoxTest", e0.getTimeMillis());
72 DropBoxManager.Entry e2 = dropbox.getNextEntry("DropBoxTest", e1.getTimeMillis());
99 DropBoxManager.Entry e = dropbox.getNextEntry("DropBoxTest", before);
145 DropBoxManager.Entry e0 = dropbox.getNextEntry("DropBoxTest", before);
146 DropBoxManager.Entry e1 = dropbox.getNextEntry("DropBoxTest", e0.getTimeMillis());
147 DropBoxManager.Entry e2 = dropbox.getNextEntry("DropBoxTest", e1.getTimeMillis());
148 DropBoxManager.Entry e3 = dropbox.getNextEntry("DropBoxTest", e2.getTimeMillis());
207 DropBoxManager.Entry e0 = dropbox.getNextEntry(null, before);
208 DropBoxManager.Entry e
[all...]
/frameworks/base/libs/common_time/
H A Dutils.h63 class Entry { class in class:android::LogRing
72 Entry* mRingBuffer;
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java37 public List<Entry> parse(InputStream in) throws XmlPullParserException, IOException {
49 private List<Entry> readFeed(XmlPullParser parser) throws XmlPullParserException, IOException {
50 List<Entry> entries = new ArrayList<Entry>();
70 public static class Entry { class in class:StackOverflowXmlParser
75 private Entry(String title, String summary, String link) { method in class:StackOverflowXmlParser.Entry
85 private Entry readEntry(XmlPullParser parser) throws XmlPullParserException, IOException {
105 return new Entry(title, summary, link);
/frameworks/base/services/core/java/com/android/server/
H A DAttributeCache.java51 private final SparseArray<ArrayMap<int[], Entry>> mMap = new SparseArray<>();
58 public final static class Entry { class in class:AttributeCache
62 public Entry(Context c, TypedArray ta) { method in class:AttributeCache.Entry
93 final ArrayMap<int[], Entry> map = pkg.mMap.valueAt(i);
119 public Entry get(String packageName, int resId, int[] styleable, int userId) {
122 ArrayMap<int[], Entry> map = null;
123 Entry ent = null;
153 ent = new Entry(pkg.context,

Completed in 937 milliseconds

1234567891011>>