Searched defs:find (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/tools/aapt2/util/
H A DImmutableMap.h53 const_iterator find(const TKey2& key) const { function in class:aapt::ImmutableMap
/frameworks/base/tools/incident_report/
H A Dgeneric_message.cpp66 GenericMessage::find(int fieldId) const function in class:GenericMessage
/frameworks/compile/mclinker/include/mcld/Support/
H A DUniqueGCFactory.h40 DataType* find(const KeyType& pKey) { function in class:mcld::UniqueGCFactoryBase
41 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
47 const DataType* find(const KeyType& pKey) const { function in class:mcld::UniqueGCFactoryBase
48 typename KeyMap::const_iterator dataIter = f_KeyMap.find(pKey);
55 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
68 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
/frameworks/compile/mclinker/lib/LD/
H A DELFSegmentFactory.cpp18 ELFSegmentFactory::iterator ELFSegmentFactory::find(uint32_t pType, function in class:mcld::ELFSegmentFactory
32 ELFSegmentFactory::const_iterator ELFSegmentFactory::find( function in class:mcld::ELFSegmentFactory
47 ELFSegmentFactory::iterator ELFSegmentFactory::find(uint32_t pType, function in class:mcld::ELFSegmentFactory
62 ELFSegmentFactory::const_iterator ELFSegmentFactory::find( function in class:mcld::ELFSegmentFactory
/frameworks/support/
H A DAndroid.mk32 define find-files-in-subdirs-exclude
35 find -L $(4) -name $(2) -and -not -name $(3) -and -not -name ".*") \
47 $(call find-files-in-subdirs-exclude,$(LOCAL_PATH),"$(1)","$(2)",$(3))
/frameworks/base/core/java/com/android/internal/util/
H A DCollectionUtils.java152 return find(items, predicate) != null;
159 public static @Nullable <T> T find(@Nullable List<T> items, method in class:CollectionUtils
/frameworks/compile/mclinker/lib/MC/
H A DSearchDirs.cpp70 mcld::sys::fs::Path* SearchDirs::find(const std::string& pNamespec, function in class:mcld::SearchDirs
135 const mcld::sys::fs::Path* SearchDirs::find(const std::string& pNamespec, function in class:mcld::SearchDirs
/frameworks/av/include/media/stagefright/foundation/
H A DAData.h48 * EXPECT_TRUE(data.find(&i));
49 * EXPECT_FALSE(data.find(&f));
53 * EXPECT_FALSE(data.find(&i));
54 * EXPECT_TRUE(data.find(&f));
62 * EXPECT_TRUE(objdata.find(&buf2));
64 * EXPECT_FALSE(objdata.find(&i));
65 * EXPECT_TRUE(objdata.find(&obj));
70 * EXPECT_FALSE(objdata.find(&buf2)); // not stored as ABuffer(!)
71 * EXPECT_TRUE(objdata.find(&obj));
281 * is not enough to detect this, only if someone is trying to find th
709 bool find(T *data) const { function in struct:android::AData::Custom
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAString.cpp275 ssize_t AString::find(const char *substring, size_t start) const { function in class:android::AString
/frameworks/av/media/libstagefright/foundation/include/foundation/
H A DAData.h48 * EXPECT_TRUE(data.find(&i));
49 * EXPECT_FALSE(data.find(&f));
53 * EXPECT_FALSE(data.find(&i));
54 * EXPECT_TRUE(data.find(&f));
62 * EXPECT_TRUE(objdata.find(&buf2));
64 * EXPECT_FALSE(objdata.find(&i));
65 * EXPECT_TRUE(objdata.find(&obj));
70 * EXPECT_FALSE(objdata.find(&buf2)); // not stored as ABuffer(!)
71 * EXPECT_TRUE(objdata.find(&obj));
281 * is not enough to detect this, only if someone is trying to find th
709 bool find(T *data) const { function in struct:android::AData::Custom
[all...]
/frameworks/av/media/libstagefright/include/foundation/
H A DAData.h48 * EXPECT_TRUE(data.find(&i));
49 * EXPECT_FALSE(data.find(&f));
53 * EXPECT_FALSE(data.find(&i));
54 * EXPECT_TRUE(data.find(&f));
62 * EXPECT_TRUE(objdata.find(&buf2));
64 * EXPECT_FALSE(objdata.find(&i));
65 * EXPECT_TRUE(objdata.find(&obj));
70 * EXPECT_FALSE(objdata.find(&buf2)); // not stored as ABuffer(!)
71 * EXPECT_TRUE(objdata.find(&obj));
281 * is not enough to detect this, only if someone is trying to find th
709 bool find(T *data) const { function in struct:android::AData::Custom
[all...]
/frameworks/av/services/camera/libcameraservice/gui/
H A DRingBufferConsumer.cpp171 RingBufferItem& find = *it; local
172 if (item.mGraphicBuffer == find.mGraphicBuffer) {
173 find.mPinCount++;
208 RingBufferItem& find = *it; local
210 if (find.mPinCount > 0) {
218 if (find.mTimestamp < accIt->mTimestamp || accIt == end) {
261 BI_LOGW("All buffers pinned, could not find any to release");
334 RingBufferItem& find = *it; local
335 if (item.mGraphicBuffer == find.mGraphicBuffer) {
346 find
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp172 SectionMap::const_mapping SectionMap::find( function in class:mcld::SectionMap
186 SectionMap::mapping SectionMap::find(const std::string& pInputFile, function in class:mcld::SectionMap
200 SectionMap::const_iterator SectionMap::find( function in class:mcld::SectionMap
210 SectionMap::iterator SectionMap::find(const std::string& pOutputSection) { function in class:mcld::SectionMap
/frameworks/native/libs/binder/
H A DBpBinder.cpp62 void* BpBinder::ObjectManager::find(const void* objectID) const function in class:android::BpBinder::ObjectManager
298 return mObjects.find(objectID);
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp93 * Note that we will return <number> if we find it. This let us support
239 LOG_ALWAYS_FATAL_IF(!hnd, "couldn't find an OpenGL ES implementation");
274 // couldn't find the entry-point, use eglGetProcAddress()
322 static std::string find(const char* kind) { function in class:android::MatchFile
364 if (find(result, pattern, searchPaths[i], true)) {
376 if (find(result, pattern, searchPaths[i], false)) {
381 // we didn't find the driver. gah.
387 static bool find(std::string& result, function in class:android::MatchFile
425 std::string absolutePath = MatchFile::find(kind);
494 "can't find eglGetProcAddres
[all...]
/frameworks/rs/
H A DrsMap.h143 iterator find(const KeyType& key) const { function in class:android::renderscript::Map
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DViewInfoStoreTest.java63 assertSame(info2, find(vh, FLAG_PRE));
73 assertSame(info2, find(vh, FLAG_POST));
92 assertSame(info, find(vh, FLAG_PRE));
103 assertSame(info, find(vh, FLAG_POST));
105 assertNull(find(vh, FLAG_POST));
259 private RecyclerView.ItemAnimator.ItemHolderInfo find(RecyclerView.ViewHolder viewHolder, method in class:ViewInfoStoreTest
/frameworks/base/
H A DAndroid.mk19 # independently from its code, so we need to find where the resource
26 # TODO: find a more appropriate way to do this.
45 $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS)) \
854 define find-no-docs-pattern
855 $(addsuffix %, $(dir $(foreach dir, $(1), $(shell cd $(LOCAL_PATH); find $(dir) -name NO_DOCS))))
866 $(call find-no-docs-pattern, $(dirs_to_document))
875 $(call find-other-html-files, $(html_dirs)) \
880 $(filter-out $(patterns_to_not_document), $(call find-other-java-files, $(dirs_to_document))) \
885 $(call find-other-java-files, $(dirs_to_check_apis)) \
/frameworks/base/core/jni/
H A Dandroid_os_HwRemoteBinder.cpp197 sp<HwBinderDeathRecipient> HwBinderDeathRecipientList::find(jobject recipient) { function in class:android::HwBinderDeathRecipientList
394 // If we find the matching recipient, proceed to unlink using that
396 sp<HwBinderDeathRecipient> origJDR = list->find(recipient);
H A Dandroid_util_Binder.cpp379 sp<JavaDeathRecipient> find(jobject recipient);
537 sp<JavaDeathRecipient> DeathRecipientList::find(jobject recipient) { function in class:DeathRecipientList
1224 // If we find the matching recipient, proceed to unlink using that
1227 sp<JavaDeathRecipient> origJDR = list->find(recipient);
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSimpleSessionDescription.java568 private int find(String key, char delimiter) { method in class:SimpleSessionDescription.Fields
585 int index = find(key, delimiter);
604 int index = find(key, delimiter);
/frameworks/av/camera/
H A DCameraMetadata.cpp356 camera_metadata_entry_t CameraMetadata::find(uint32_t tag) { function in class:android::CameraMetadata
372 camera_metadata_ro_entry_t CameraMetadata::find(uint32_t tag) const { function in class:android::CameraMetadata
715 // First, find the section by the longest string match
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceHal.java443 public boolean find(int timeout) { method in class:SupplicantP2pIfaceHal
445 if (!checkSupplicantP2pIfaceAndLogFailure("find")) return false;
451 SupplicantResult<Void> result = new SupplicantResult("find(" + timeout + ")");
453 result.setResult(mISupplicantP2pIface.find(timeout));
695 * had been authorized to start group formation), stops P2P find (if in
1901 if (!match.find() || match.groupCount() != 3) {
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp171 const mkvparser::CuePoint::TrackPosition *MatroskaExtractor::TrackInfo::find( function in class:android::MatroskaExtractor::TrackInfo
408 // If the Cues have not been located then find them.
464 pTP = track.find(seekTimeNs);
671 // stream to find the target Cluster then iterating to finalize for
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java225 public int findAll(String find); argument
227 public void findAllAsync(String find); argument
306 * Only used by FindActionModeCallback to inform providers that the find dialog has

Completed in 373 milliseconds

12