Searched refs:entry (Results 251 - 275 of 497) sorted by relevance

<<11121314151617181920

/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java421 ZipEntry entry = zipFile.getEntry(modifiedClassPath);
422 assertNotNull(entry);
424 try (InputStream inputStream = zipFile.getInputStream(entry)) {
459 ZipEntry entry;
461 entry = entries.nextElement();
462 if (entry.getName().endsWith(".class")) {
463 ClassReader cr = new ClassReader(zip.getInputStream(entry));
467 filesFound.put(entry.getName(), zip.getInputStream(entry));
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp242 LocalEntry entry(&pInfo, pAddend, reloc == llvm::ELF::R_MIPS_GOT16);
244 if (m_InputLocalSymbols.count(entry))
249 if (m_MergedLocalSymbols.count(entry)) {
252 m_InputLocalSymbols.insert(entry);
259 m_InputLocalSymbols.insert(entry);
487 void Mips32GOT::setEntryValue(Fragment* entry, uint64_t pValue) { argument
488 llvm::cast<Mips32GOTEntry>(entry)->setValue(pValue);
522 void Mips64GOT::setEntryValue(Fragment* entry, uint64_t pValue) { argument
523 llvm::cast<Mips64GOTEntry>(entry)->setValue(pValue);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseLinearLayoutManagerTest.java193 for (Map.Entry<Item, Rect> entry : before.entrySet()) {
194 sb.append(entry.getKey().mAdapterIndex + ":" + entry.getValue()).append("\n");
197 for (Map.Entry<Item, Rect> entry : after.entrySet()) {
198 sb.append(entry.getKey().mAdapterIndex + ":" + entry.getValue()).append("\n");
203 for (Map.Entry<Item, Rect> entry : before.entrySet()) {
204 final Item beforeItem = entry.getKey();
223 entry.getValue(), afterRect);
/frameworks/base/services/net/java/android/net/ip/
H A DIpReachabilityMonitor.java84 * - A neighbour's entry may be deleted (RTM_DELNEIGH), for example due
157 // information than a single NUD state entry.
253 for (Map.Entry<InetAddress, Short> entry : mIpWatchList.entrySet()) {
259 sb.append(entry.getKey().getHostAddress() + "/" +
260 StructNdMsg.stringForNudState(entry.getValue()));
344 for (Map.Entry<InetAddress, Short> entry : mIpWatchList.entrySet()) {
345 if (entry.getValue() != StructNdMsg.NUD_FAILED) {
349 ip = entry.getKey();
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp674 struct dirent* entry; local
676 entry = readdir(dir);
677 if (entry == NULL)
680 if (isHidden(srcDir.string(), entry->d_name))
683 String8 name(entry->d_name);
847 const AaptSymbolEntry& entry = javaSymbols->mSymbols.valueAt(i); local
850 entry.sourcePos.error("Symbol '%s' declared with <java-symbol> not defined\n", name.string());
855 // i, N, name.string(), entry.isJavaSymbol ? 1 : 0);
856 mSymbols.editValueAt(pos).isJavaSymbol = entry.isJavaSymbol;
903 const String8& filePath, const AaptGroupEntry& entry,
902 addFile( const String8& filePath, const AaptGroupEntry& entry, const String8& srcDir, sp<AaptGroup>* outGroup, const String8& resType) argument
1148 struct dirent* entry = readdir(dir); local
1236 ZipEntry* entry = zip->getEntryByIndex(i); local
[all...]
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp871 ZipEntryRO entry = pZip->findEntryByName(path.string()); local
872 if (entry != NULL) {
874 pAsset = openAssetFromZipLocked(pZip, entry, mode, path);
875 pZip->releaseEntry(entry);
1023 ZipEntryRO entry = pZip->findEntryByName(path.string()); local
1024 if (entry != NULL) {
1027 pAsset = openAssetFromZipLocked(pZip, entry, mode, path);
1028 pZip->releaseEntry(entry);
1129 * Given an entry in a Zip archive, create a new Asset object.
1131 * If the entry i
1134 openAssetFromZipLocked(const ZipFileRO* pZipFile, const ZipEntryRO entry, AccessMode mode, const String8& entryName) argument
1436 struct dirent* entry; local
1534 ZipEntryRO entry; local
[all...]
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DLocaleUtils.java222 for (final ScoreEntry entry : result) {
223 dest.add(sources.get(entry.mIndex));
/frameworks/base/libs/hwui/font/
H A DFont.h164 inline hash_t hash_type(const Font::FontDescription& entry) { argument
165 return entry.hash();
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DFalsingLog.java112 String entry = new StringBuilder().append(sInstance.mFormat.format(new Date()))
115 sInstance.mLog.add(entry);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
H A DTvStatusBar.java59 NotificationData.Entry entry) {
197 protected void updateHeadsUp(String key, NotificationData.Entry entry, boolean shouldPeek, argument
58 addNotification(StatusBarNotification notification, RankingMap ranking, NotificationData.Entry entry) argument
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbAlsaManager.java502 for (HashMap.Entry<UsbDevice,UsbAudioDevice> entry : mAudioDevices.entrySet()) {
503 devices.add(entry.getValue());
524 for (HashMap.Entry<UsbDevice,UsbAudioDevice> entry : mAudioDevices.entrySet()) {
526 Slog.i(TAG, "" + (entry != null ? entry.getKey() : "[none]"));
528 Slog.i(TAG, "" + entry.getValue());
537 for (HashMap.Entry<UsbDevice,UsbAudioDevice> entry : mAudioDevices.entrySet()) {
538 Slog.i(TAG, entry.getValue().toShortString());
/frameworks/base/tools/aapt2/
H A DStringPool.h68 Ref(Entry* entry);
91 StyleRef(StyleEntry* entry);
/frameworks/base/tools/aapt2/io/
H A DZipArchive.cpp27 ZipFile::ZipFile(ZipArchiveHandle handle, const ZipEntry& entry, const Source& source) : argument
28 mZipHandle(handle), mZipEntry(entry), mSource(source) {
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java215 for (Map.Entry<K, V> entry : map.entrySet()) {
216 toEvict = entry;
236 * Removes the entry for {@code key} if it exists.
269 * @param evicted true if the entry is being removed to make space, false
305 * Returns the size of the entry for {@code key} and {@code value} in
309 * <p>An entry's size must not change while it is in the cache.
316 * Clear the cache, calling {@link #entryRemoved} on each removed entry.
/frameworks/compile/mclinker/lib/LD/
H A DBranchIsland.cpp102 StubEntryType* entry = m_StubMap.insert(key, exist); local
104 entry->setValue(&pStub);
H A DGroupReader.cpp79 ArchiveListEntry* entry = new ArchiveListEntry(*ar, input); local
80 ar_list.push_back(entry);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java282 * @param entry RecipientEntry that contains information about the chip.
284 void onRecipientChipDeleted(RecipientEntry entry); argument
294 * @param entry RecipientEntry that contains information about the chip.
296 void onRecipientChipAdded(RecipientEntry entry); argument
609 // Do nothing; showing a single permissions entry. Resizing not required.
762 * @param contact The recipient entry to pull data from.
795 // autocomplete text entry area. Make sure to leave space for padding
887 * Returns the avatar icon to use for this recipient entry. Returns null if we don't want to
904 // TODO: cache this in the recipient entry?
1289 Log.d(TAG, "There were extra characters after the last tokenizable entry
1938 createAddressText(RecipientEntry entry) argument
1967 createChipDisplayText(RecipientEntry entry) argument
1982 createChip(RecipientEntry entry) argument
2009 onChipCreated(RecipientEntry entry) argument
2501 replaceChip(DrawableRecipientChip chip, RecipientEntry entry) argument
2827 createFreeChip(RecipientEntry entry) argument
3228 appendRecipientEntry(final RecipientEntry entry) argument
3252 removeRecipientEntry(final RecipientEntry entry) argument
[all...]
/frameworks/av/include/media/
H A Dmediascanner.h98 struct dirent* entry, char* fileSpot);
/frameworks/base/core/java/android/app/
H A DFragmentBreadCrumbs.java55 /** Listener to inform when a parent entry is clicked */
75 * @param flags Additional information about the entry. Currently
79 * the default action (popping back stack to this entry) to occur.
146 * Inserts an optional parent entry at the first position in the breadcrumbs. Selecting this
147 * entry will result in a call to the specified listener's
151 * @param title the title for the parent entry
152 * @param shortTitle the short title for the parent entry
154 * A null will result in no action being taken when the parent entry is clicked.
176 final BackStackRecord entry = new BackStackRecord(
178 entry
[all...]
/frameworks/base/tools/aapt2/link/
H A DLink.cpp307 bool linkAndVersionXmlFile(const ResourceEntry* entry, const ResourceFile& fileDesc,
328 bool ResourceFileFlattener::linkAndVersionXmlFile(const ResourceEntry* entry, argument
388 if (!shouldGenerateVersionedResource(entry, outFileOp->xmlToFlatten->file.config,
436 for (auto& entry : type->entries) {
439 for (size_t i = 0; i < entry->values.size(); i++) {
440 ResourceConfigValue* configValue = entry->values[i].get();
463 fileDesc.name = ResourceName(pkg->name, type->type, entry->name);
465 if (!linkAndVersionXmlFile(entry.get(), fileDesc, file, table, &fileOp)) {
478 const StringPiece16 entryName(entry->name);
608 for (const auto& entry
[all...]
H A DTableMerger.cpp198 << "can not merge entry '"
247 // Force create the entry if we didn't have it.
281 StringPiece16 prefix, entry, suffix; local
282 if (util::extractResFilePathParts(*fileRef.path, &prefix, &entry, &suffix)) {
283 std::u16string mangledEntry = NameMangler::mangleEntry(package, entry.toString());
305 ->findOrCreateEntry(fileDesc.name.entry)
/frameworks/compile/mclinker/include/mcld/
H A DLinkerScript.h83 /// entry point
84 const std::string& entry() const;
/frameworks/native/vulkan/nulldrv/
H A Dnull_driver_gen.cpp34 const auto& entry = std::lower_bound( local
37 if (entry == end || strcmp(entry->name, name) != 0)
39 return entry->proc;
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffWriter.h116 * Add an entry to the IFD with the given ID.
127 virtual status_t addEntry(const sp<TiffEntry>& entry, uint32_t ifd);
130 * Build an entry for a known tag and add it to the IFD with the given ID.
147 * Build an entry for a known tag. This tag must be one of the tags
150 * entry will be placed in the outEntry pointer.
179 * Return the TIFF entry with the given tag ID in the IFD with the given ID,
185 * Remove the TIFF entry with the given tag ID in the given IFD if it exists.
234 * Build an entry. No validation is done.
306 ALOGE("%s: Could not build entry for tag %x.", __FUNCTION__, tag);
316 TiffEntryImpl<T>* entry local
[all...]
/frameworks/base/core/java/android/accounts/
H A DChooseAccountTypeActivity.java77 for (Map.Entry<String, AuthInfo> entry: mTypeToAuthenticatorInfo.entrySet()) {
78 final String type = entry.getKey();
79 final AuthInfo info = entry.getValue();

Completed in 895 milliseconds

<<11121314151617181920