Searched defs:entry (Results 76 - 95 of 95) sorted by relevance

1234

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java701 protected boolean inflateViews(NotificationData.Entry entry, ViewGroup parent) { argument
706 StatusBarNotification sbn = entry.notification;
782 debug.setText("U " + entry.notification.getUserId());
785 entry.row = row;
786 entry.content = content;
787 entry.expanded = expandedOneU;
788 entry.setLargeView(expandedLarge);
889 NotificationData.Entry entry = mNotificationData.remove(key);
890 if (entry == null) {
895 ViewGroup rowParent = (ViewGroup)entry
943 expandView(NotificationData.Entry entry, boolean expand) argument
988 isTopNotification(ViewGroup parent, NotificationData.Entry entry) argument
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp3032 OMXCodec::CodecNameAndQuirks *entry = &matchingCodecs.editItemAt(index); local
3033 entry->mName = String8(componentName.c_str());
3036 componentName.c_str(), &entry->mQuirks)) {
3037 entry->mQuirks = 0;
H A DOMXCodec.cpp221 CodecNameAndQuirks *entry = &matchingCodecs->editItemAt(index); local
222 entry->mName = String8(componentName);
223 entry->mQuirks = getComponentQuirks(list, matchIndex);
226 entry->mName.string(), entry->mQuirks);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode.cpp2734 Int residual, vlc_code_mag, bits, entry; local
2739 entry = vlc_code_mag + 65;
2741 entry = vlc_code_mag;
2743 bits = PutMV(entry, bs);
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Device.cpp821 result = String8::format(" Queue entry %d:\n", i);
1418 QueueEntry entry; local
1419 entry.handle = handle;
1420 entry.releaseListener = releaseListener;
1421 mQueue.push_back(entry);
1461 QueueEntry &entry = *(stream->mQueue.begin()); local
1463 *buffer = entry.handle;
1465 stream->mInFlightQueue.push_back(entry);
/frameworks/av/services/camera/libcameraservice/camera2/
H A DParameters.cpp933 camera_metadata_ro_entry_t entry; local
934 entry = info->find(ANDROID_QUIRKS_TRIGGER_AF_WITH_AUTO);
935 quirks.triggerAfWithAuto = (entry.count != 0 && entry.data.u8[0] == 1);
939 entry = info->find(ANDROID_QUIRKS_USE_ZSL_FORMAT);
940 quirks.useZslFormat = (entry.count != 0 && entry.data.u8[0] == 1);
944 entry = info->find(ANDROID_QUIRKS_METERING_CROP_REGION);
945 quirks.meteringCropRegion = (entry.count != 0 && entry
955 camera_metadata_ro_entry_t entry = info->find(tag); local
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp733 const ResTable::bag_entry* entry = NULL; local
735 ssize_t entryCount = res.getBagLocked(ident, &entry, &typeSpecFlags);
738 if (((uint32_t)bagEntryId) == entry->map.name.ident) {
739 block = entry->stringBlock;
740 value = entry->map.value;
742 entry++;
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp291 const ZipEntryRO entry = zip->findEntryByName(entryFilename); local
292 if (entry == NULL) {
295 if (!zip->getEntryInfo(entry, NULL, NULL, NULL, NULL, NULL, (long*)pCrc)) {
810 ZipEntryRO entry; local
815 entry = pZip->findEntryByName(path.string());
816 if (entry != NULL) {
818 pAsset = openAssetFromZipLocked(pZip, entry, mode, path);
964 ZipEntryRO entry; local
969 entry = pZip->findEntryByName(path.string());
970 if (entry !
1079 openAssetFromZipLocked(const ZipFileRO* pZipFile, const ZipEntryRO entry, AccessMode mode, const String8& entryName) argument
1383 struct dirent* entry; local
1476 ZipEntryRO entry; local
[all...]
H A DResourceTypes.cpp245 const uint32_t entry = Res_GETENTRY(key); local
268 if (entryCount == 0 || entry < entryOffset || entry - entryOffset > entryCount - 1) {
272 const uint32_t index = typeOffset + 2 + entry - entryOffset;
274 ALOGW("Resource ID map: entry index=%d exceeds size of map=%d\n", index, (int)size);
373 ALOGW("Bad string block: entry of %d items extends past data size %d\n",
456 ALOGW("Bad string block: entry of %d styles extends past data size %d\n",
626 ALOGW("Bad string block: string #%d entry is at %d, past end at %d\n",
653 ALOGW("Bad string block: string #%d entry is at %d, past end at %d\n",
683 ALOGW("Bad string block: style #%d entry i
2971 const ResTable_entry* entry; local
3072 const ResTable_entry* entry; local
3349 const ResTable_entry* entry; local
3726 const ResTable_entry* const entry = (const ResTable_entry*) local
4936 const ResTable_entry* const entry = (const ResTable_entry*) local
[all...]
/frameworks/base/services/input/
H A DInputDispatcher.h565 // A command entry captures state and behavior for an action to be performed in the
615 inline void enqueueAtTail(T* entry) { argument
616 entry->prev = tail;
618 tail->next = entry;
620 head = entry;
622 entry->next = NULL;
623 tail = entry;
626 inline void enqueueAtHead(T* entry) { argument
627 entry->next = head;
629 head->prev = entry;
637 dequeue(T* entry) argument
651 T* entry = head; local
[all...]
H A DInputDispatcher.cpp299 // Inbound queue has at least one entry.
398 bool InputDispatcher::enqueueInboundEventLocked(EventEntry* entry) { argument
400 mInboundQueue.enqueueAtTail(entry);
403 switch (entry->type) {
408 KeyEntry* keyEntry = static_cast<KeyEntry*>(entry);
431 MotionEntry* motionEntry = static_cast<MotionEntry*>(entry);
488 void InputDispatcher::dropInboundEventLocked(EventEntry* entry, DropReason dropReason) { argument
520 switch (entry->type) {
527 MotionEntry* motionEntry = static_cast<MotionEntry*>(entry);
567 bool InputDispatcher::isStaleEventLocked(nsecs_t currentTime, EventEntry* entry) { argument
600 EventEntry* entry = mInboundQueue.dequeueAtHead(); local
614 releaseInboundEventLocked(EventEntry* entry) argument
636 KeyEntry* entry = mKeyRepeatState.lastKeyEntry; local
667 dispatchConfigurationChangedLocked( nsecs_t currentTime, ConfigurationChangedEntry* entry) argument
683 dispatchDeviceResetLocked( nsecs_t currentTime, DeviceResetEntry* entry) argument
696 dispatchKeyLocked(nsecs_t currentTime, KeyEntry* entry, DropReason* dropReason, nsecs_t* nextWakeupTime) argument
794 logOutboundKeyDetailsLocked(const char* prefix, const KeyEntry* entry) argument
806 dispatchMotionLocked( nsecs_t currentTime, MotionEntry* entry, DropReason* dropReason, nsecs_t* nextWakeupTime) argument
863 logOutboundMotionDetailsLocked(const char* prefix, const MotionEntry* entry) argument
923 handleTargetsNotReadyLocked(nsecs_t currentTime, const EventEntry* entry, const sp<InputApplicationHandle>& applicationHandle, const sp<InputWindowHandle>& windowHandle, nsecs_t* nextWakeupTime, const char* reason) argument
1040 findFocusedWindowTargetsLocked(nsecs_t currentTime, const EventEntry* entry, Vector<InputTarget>& inputTargets, nsecs_t* nextWakeupTime) argument
1104 findTouchedWindowTargetsLocked(nsecs_t currentTime, const MotionEntry* entry, Vector<InputTarget>& inputTargets, nsecs_t* nextWakeupTime, bool* outConflictingPointerActions) argument
2722 setInjectionResultLocked(EventEntry* entry, int32_t injectionResult) argument
2755 incrementPendingForegroundDispatchesLocked(EventEntry* entry) argument
2762 decrementPendingForegroundDispatchesLocked(EventEntry* entry) argument
3424 KeyEntry* entry = commandEntry->keyEntry; local
3684 initializeKeyEvent(KeyEvent* event, const KeyEntry* entry) argument
3690 updateDispatchStatisticsLocked(nsecs_t currentTime, const EventEntry* entry, int32_t injectionResult, nsecs_t timeSpentWaitingForApplication) argument
3943 trackKey(const KeyEntry* entry, int32_t action, int32_t flags) argument
3994 trackMotion(const MotionEntry* entry, int32_t action, int32_t flags) argument
4086 findMotionMemento(const MotionEntry* entry, bool hovering) const argument
4100 addKeyMemento(const KeyEntry* entry, int32_t flags) argument
4113 addMotionMemento(const MotionEntry* entry, int32_t flags, bool hovering) argument
4129 setPointers(const MotionEntry* entry) argument
[all...]
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp1765 struct dirent* entry; local
1767 entry = readdir(dir);
1768 if (entry == NULL)
1771 if (isHidden(srcDir.string(), entry->d_name))
1774 String8 name(entry->d_name);
1938 const AaptSymbolEntry& entry = javaSymbols->mSymbols.valueAt(i); local
1941 entry.sourcePos.error("Symbol '%s' declared with <java-symbol> not defined\n", name.string());
1946 // i, N, name.string(), entry.isJavaSymbol ? 1 : 0);
1947 mSymbols.editValueAt(pos).isJavaSymbol = entry.isJavaSymbol;
1994 const String8& filePath, const AaptGroupEntry& entry,
1993 addFile( const String8& filePath, const AaptGroupEntry& entry, const String8& srcDir, sp<AaptGroup>* outGroup, const String8& resType) argument
2234 struct dirent* entry = readdir(dir); local
2322 ZipEntry* entry = zip->getEntryByIndex(i); local
[all...]
H A DAaptAssets.h543 const AaptGroupEntry& entry,
553 void addGroupEntry(const AaptGroupEntry& entry) { mGroupEntries.add(entry); } argument
H A DCommand.cpp4 // Android Asset Packaging Tool main entry point.
126 const ZipEntry* entry; local
154 entry = zip->getEntryByIndex(i);
159 when = entry->getModWhen();
164 (long) entry->getUncompressedLen(),
165 compressionName(entry->getCompressionMethod()),
166 (long) entry->getCompressedLen(),
167 calcPercent(entry->getUncompressedLen(),
168 entry->getCompressedLen()),
169 (size_t) entry
1606 ZipEntry* entry; local
[all...]
H A DResourceTable.cpp595 NOISY(printf("Adding resource bag entry l=%c%c c=%c%c orien=%d d=%d "
707 NOISY(printf("Adding resource entry l=%c%c c=%c%c orien=%d d=%d id=%s: %s\n",
1665 // Every resource table always has one first entry, the bag attributes.
1719 printf("Adding entry left: file=%s, line=%d, type=%s, value=%s\n",
2656 // If this entry has no values for other configs,
2760 // each resource entry in this type.
2884 // Set the offset for this entry in its type.
2891 // Create the entry.
3083 sourcePos.error("Resource entry %s is already defined as a single item.\n"
3100 sourcePos.error("Resource entry
3461 getEntry(const String16& entry, const SourcePos& sourcePos, const ResTable_config* config, bool doSetIndex, bool overlay, bool autoAddOverlay) argument
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java474 // autocomplete text entry area. Make sure to leave space for padding
517 // autocomplete text entry area. Make sure to leave space for padding
551 // TODO: cache this in the recipient entry?
874 Log.d(TAG, "There were extra characters after the last tokenizable entry."
884 * point, this chip will be attached to a real contact entry, if one exists.
897 RecipientEntry entry = createTokenizedEntry(token);
898 if (entry != null) {
899 String destText = createAddressText(entry);
910 entry,
913 TextUtils.isEmpty(entry
1495 createAddressText(RecipientEntry entry) argument
1524 createChipDisplayText(RecipientEntry entry) argument
1547 createChip(RecipientEntry entry, boolean pressed) argument
2055 replaceChip(RecipientChip chip, RecipientEntry entry) argument
2326 createFreeChip(RecipientEntry entry) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaScanner.java89 * gathered and inserts an entry in to the database.
104 * Once MediaScanner processFile returns, an entry is inserted in to the database.
472 FileEntry entry = makeEntryFor(path);
474 long delta = (entry != null) ? (lastModified - entry.mLastModified) : 0;
476 if (entry == null || wasModified) {
478 entry.mLastModified = lastModified;
480 entry = new FileEntry(0, path, lastModified,
483 entry.mLastModifiedChanged = true;
487 mPlayLists.add(entry);
809 endFile(FileEntry entry, boolean ringtones, boolean notifications, boolean alarms, boolean music, boolean podcasts) argument
1752 processPlayList(FileEntry entry, Cursor fileList) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java715 NotificationData.Entry entry = mNotificationData.get(N-1-mNotificationPeekIndex);
716 entry.icon.setBackgroundColor(0);
725 NotificationData.Entry entry =
730 entry.key,
731 entry.notification,
732 entry.icon);
747 entry.icon.setBackgroundColor(0x20FFFFFF);
761 mNotificationPeekKey = entry.key;
772 NotificationData.Entry entry =
776 entry
1518 isTopNotification(ViewGroup parent, NotificationData.Entry entry) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1478 private boolean relax(int[] locations, Arc entry) { argument
1479 if (!entry.valid) {
1482 Interval span = entry.span;
1485 int value = entry.value.value;
1615 // External entry points
2163 // this overwrite duplicates, retaining the last equivalent entry
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1399 private boolean relax(int[] locations, Arc entry) { argument
1400 if (!entry.valid) {
1403 Interval span = entry.span;
1406 int value = entry.value.value;
1550 // External entry points
2096 // this overwrite duplicates, retaining the last equivalent entry

Completed in 9221 milliseconds

1234