Searched defs:entry (Results 26 - 50 of 246) sorted by relevance

12345678910

/frameworks/compile/mclinker/include/mcld/Target/
H A DGNUInfo.h44 /// entry - the symbol name of the entry point
45 virtual const char* entry() const { return "_start"; } function in class:mcld::GNUInfo
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGNUInfo.cpp47 const char* MipsGNUInfo::entry() const { function in class:mcld::MipsGNUInfo
/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/opt/chips/src/com/android/ex/chips/
H A DPhotoManager.java39 void populatePhotoBytesAsync(RecipientEntry entry, PhotoManagerCallback callback); argument
H A DSingleRecipientArrayAdapter.java31 public SingleRecipientArrayAdapter(Context context, RecipientEntry entry, argument
33 this(context, entry, dropdownChipLayouter, null);
36 public SingleRecipientArrayAdapter(Context context, RecipientEntry entry, argument
40 new RecipientEntry[] { entry });
H A DDefaultPhotoManager.java64 public void populatePhotoBytesAsync(RecipientEntry entry, PhotoManagerCallback callback) { argument
65 final Uri photoThumbnailUri = entry.getPhotoThumbnailUri();
69 entry.setPhotoBytes(photoBytes);
75 Log.d(TAG, "No photo cache for " + entry.getDisplayName()
78 fetchPhotoAsync(entry, photoThumbnailUri, callback);
85 private void fetchPhotoAsync(final RecipientEntry entry, final Uri photoThumbnailUri, argument
132 entry.setPhotoBytes(photoBytes);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DContentValuesVerifier.java45 public void onEntryCreated(VCardEntry entry) { argument
47 mContentValuesVerifierElemList.get(mIndex).onEntryCreated(entry);
H A DContentValuesVerifierElem.java50 public void onEntryCreated(VCardEntry entry) { argument
51 mHandler.onEntryCreated(entry);
/frameworks/rs/rsov/compiler/spirit/
H A Dvisitor.cpp29 void DoNothingVisitor::visit(EntryPointDefinition *entry) { argument
30 entry->accept(this);
/frameworks/support/compat/tests/java/android/support/v4/util/
H A DArrayMapCompatTest.java73 private static <K, V> Map.Entry<K, V> copyOf(Map.Entry<K, V> entry) { argument
74 return entryOf(entry.getKey(), entry.getValue());
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.cpp56 QueueEntry entry; local
57 entry.mIsCommand = false;
58 entry.mIndex = index;
59 entry.mSize = size;
60 entry.mOffset = 0;
63 mQueue.push_back(entry);
78 QueueEntry entry; local
79 entry.mIsCommand = true;
80 entry.mCommand = cmd;
81 entry
113 QueueEntry *entry = &*mQueue.begin(); local
[all...]
/frameworks/base/cmds/incidentd/src/
H A Dreport_directory.cpp122 struct dirent* entry; local
138 while ((entry = readdir(dir)) != NULL) {
139 if (entry->d_name[0] == '.') {
142 String8 filename = dirbase + entry->d_name;
/frameworks/base/tools/aapt/
H A DFileFinder.cpp54 struct dirent* entry; local
55 while ((entry = dw->nextEntry()) != NULL) {
56 String8 entryName(entry->d_name);
57 if (entry->d_name[0] == '.') // Skip hidden files and directories
61 // If this entry is a directory we'll recurse into it
68 // If this entry is a file, we'll pass it over to checkAndAddFile
H A DResourceFilter.cpp27 std::pair<ConfigDescription, uint32_t>& entry = mConfigs.editItemAt(i); local
33 val.writeTo(&entry.first);
34 } else if (!AaptConfig::parse(part, &entry.first)) {
39 entry.second = mDefault.diff(entry.first);
42 entry.second &= ~ResTable_config::CONFIG_VERSION;
45 if ((entry.second & ResTable_config::CONFIG_DENSITY) != 0) {
46 fprintf(stderr, "warning: ignoring flag -c %s. Use --preferred-density instead.\n", entry.first.toString().string());
47 entry.first.density = 0;
48 entry
71 scriptsMatch(const ResTable_config& config, const ResTable_config& entry) argument
109 const std::pair<ConfigDescription, uint32_t>& entry = mConfigs[i]; local
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp34 const std::string& LinkerScript::entry() const { function in class:mcld::LinkerScript
/frameworks/compile/mclinker/lib/LD/
H A DSectionSymbolSet.cpp53 SectHashTableType::entry_type* entry = local
56 entry->setValue(sym);
97 SectHashTableType::iterator entry = m_pSectionSymbolMap->find(&pOutSect); local
98 return entry.getEntry()->value();
102 SectHashTableType::iterator entry = m_pSectionSymbolMap->find(&pOutSect); local
103 return entry.getEntry()->value();
/frameworks/opt/chips/sample/src/com/android/ex/chips/sample/
H A DMainActivity.java75 public void onRecipientChipAdded(RecipientEntry entry) { argument
76 Log.i("ChipsSample", entry.getDisplayName() + " recipient chip added");
80 public void onRecipientChipDeleted(RecipientEntry entry) { argument
81 Log.i("ChipsSample", entry.getDisplayName() + " recipient chip removed");
/frameworks/support/compat/java/android/support/v4/graphics/
H A DTypefaceCompatBaseImpl.java76 private FontFileResourceEntry findBestEntry(FontFamilyFilesResourceEntry entry, argument
81 for (final FontFileResourceEntry e : entry.getEntries()) {
96 FontFamilyFilesResourceEntry entry, Resources resources, int style) {
98 entry, ((style & Typeface.BOLD) == 0) ? 400 : 700, (style & Typeface.ITALIC) != 0);
95 createFromFontFamilyFilesResourceEntry(Context context, FontFamilyFilesResourceEntry entry, Resources resources, int style) argument
/frameworks/av/camera/ndk/
H A DNdkCaptureRequest.cpp90 const ACaptureRequest* req, uint32_t tag, ACameraMetadata_const_entry* entry) {
92 if (req == nullptr || entry == nullptr) {
93 ALOGE("%s: invalid argument! req 0x%p, tag 0x%x, entry 0x%p",
94 __FUNCTION__, req, tag, entry);
97 return req->settings->getConstEntry(tag, entry);
89 ACaptureRequest_getConstEntry( const ACaptureRequest* req, uint32_t tag, ACameraMetadata_const_entry* entry) argument
/frameworks/av/include/media/
H A DPluginLoader.h31 PluginLoader(const char *dir, const char *entry) { argument
47 T *plugin = loadOne(path, entry);
70 T* loadOne(const char *path, const char *entry) { argument
78 (CreateFactoryFunc)library->lookup(entry);
80 ALOGV("Found plugin factory entry %s in %s", entry, path);
/frameworks/av/media/libmedia/include/media/
H A DPluginLoader.h31 PluginLoader(const char *dir, const char *entry) { argument
47 T *plugin = loadOne(path, entry);
70 T* loadOne(const char *path, const char *entry) { argument
78 (CreateFactoryFunc)library->lookup(entry);
80 ALOGV("Found plugin factory entry %s in %s", entry, path);
/frameworks/av/media/libstagefright/
H A DHTTPBase.cpp48 BandwidthEntry entry; local
49 entry.mDelayUs = delayUs;
50 entry.mNumBytes = numBytes;
54 mBandwidthHistory.push_back(entry);
56 BandwidthEntry *entry = &*mBandwidthHistory.begin(); local
57 mTotalTransferTimeUs -= entry->mDelayUs;
58 mTotalTransferBytes -= entry->mNumBytes;
/frameworks/base/core/java/android/content/res/
H A DThemedResourceCache.java40 * Adds a new theme-dependent entry to the cache.
42 * @param key a key that uniquely identifies the entry
43 * @param theme the theme against which this entry was inflated, or
44 * {@code null} if the entry has no theme applied
45 * @param entry the entry to cache
47 public void put(long key, @Nullable Theme theme, @NonNull T entry) { argument
48 put(key, theme, entry, true);
52 * Adds a new entry to the cache.
54 * @param key a key that uniquely identifies the entry
61 put(long key, @Nullable Theme theme, @NonNull T entry, boolean usesTheme) argument
131 shouldInvalidateEntry(@onNull T entry, int configChanges) argument
230 pruneEntryLocked(@ullable T entry, @Config int configChanges) argument
[all...]
/frameworks/base/libs/androidfw/
H A DApkAssets.cpp57 ::ZipEntry entry; local
58 result = ::FindEntry(loaded_apk->zip_handle_.get(), entry_name, &entry);
64 if (entry.method == kCompressDeflated) {
91 ::ZipEntry entry; local
92 int32_t result = ::FindEntry(zip_handle_.get(), name, &entry);
94 LOG(ERROR) << "No entry '" << path << "' found in APK '" << path_ << "'";
98 if (entry.method == kCompressDeflated) {
100 if (!map->create(path_.c_str(), ::GetFileDescriptor(zip_handle_.get()), entry.offset,
101 entry.compressed_length, true /*readOnly*/)) {
107 Asset::createFromCompressedMap(std::move(map), entry
146 ::ZipEntry entry; local
[all...]
/frameworks/base/libs/hwui/font/
H A DFontCacheHistoryTracker.cpp30 void FontCacheHistoryTracker::dumpRenderEntry(String8& log, const RenderEntry& entry) { argument
31 if (entry.penX == -1 && entry.penY == -1) {
32 log.appendFormat(" glyph skipped in gen: %d\n", entry.glyph.generation);
35 dumpCachedGlyph(log, entry.glyph);
36 log.appendFormat(" at (%d, %d)\n", entry.penX, entry.penY);
64 RenderEntry& entry = mRenderHistory.next(); local
65 entry.glyph.generation = generation;
66 entry
[all...]

Completed in 8478 milliseconds

12345678910