Searched refs:find (Results 26 - 50 of 118) sorted by relevance

12345

/frameworks/compile/linkloader/lib/
H A DStubLayout.cpp37 std::map<void *, void *>::iterator index_iter = stub_index.find(addr);
/frameworks/compile/mclinker/include/mcld/LD/
H A DSectionMap.h53 // find - return the iterator to the mapping
54 iterator find(const std::string& pInput);
H A DSectionMerger.h68 iterator find(const std::string& pName);
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py52 index = self.buffer.find('\n', self.pos)
198 if line.find(': position') != -1:
206 if line.find(': OLD') != -1:
245 prefix_index = line.find(prefix)
249 delim_index = line.find(',', start_index)
/frameworks/av/services/camera/libcameraservice/camera2/
H A DZslProcessor.cpp75 entry = frame.find(ANDROID_SENSOR_TIMESTAMP);
272 entry = request.find(ANDROID_CONTROL_AE_STATE);
463 entry = queueEntry.frame.find(ANDROID_SENSOR_TIMESTAMP);
476 entry = frame.find(ANDROID_SENSOR_TIMESTAMP);
478 ALOGE("%s: Can't find timestamp in frame!",
520 entry = queueEntry.frame.find(ANDROID_SENSOR_TIMESTAMP);
522 entry = queueEntry.frame.find(ANDROID_CONTROL_AE_STATE);
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp152 ssize_t atPos = host->find("@");
160 ssize_t colonPos = userPass.find(":");
421 ssize_t i = request.find("\r\n\r\n");
629 ssize_t space1 = response->mStatusLine.find(" ");
633 ssize_t space2 = response->mStatusLine.find(" ", space1 + 1);
688 ssize_t colonPos = line.find(":");
760 ssize_t space1 = request->mStatusLine.find(" ");
899 i = value.find("nonce=");
902 ssize_t j = value.find("\"", i + 7);
944 ssize_t space1 = request.find(" ");
[all...]
/frameworks/base/core/java/android/webkit/
H A DSelectActionModeCallback.java61 // the user won't be able to type into the find on page UI. Disable this functionality.
74 setMenuVisibility(menu, canFind, com.android.internal.R.id.find);
116 case com.android.internal.R.id.find:
H A DFindActionModeCallback.java70 * the find next or find previous button to find all of the matches.
100 * @param next If true, find the next match further down in the document.
101 * If false, find the previous match, up in the document.
129 CharSequence find = mEditText.getText();
130 if (0 == find.length()) {
139 mWebView.findAllAsync(find.toString());
188 // will not be able to type into the find on page field. This
/frameworks/base/core/java/com/android/internal/http/
H A DHttpDateTime.java94 if (rfcMatcher.find()) {
101 if (ansicMatcher.find()) {
/frameworks/base/tests/DumpRenderTree2/assets/
H A Drun_apache2.py141 if err.find(envvars_path) != -1:
143 elif err.find('command not found') != -1:
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DGDBJITRegistrar.cpp158 assert(ObjectBufferMap.find(Object) == ObjectBufferMap.end()
187 RegisteredObjectBufferMap::iterator I = ObjectBufferMap.find(Object);
/frameworks/compile/mclinker/lib/LD/
H A DNamePool.cpp125 /// findInfo - find the resolved ResolveInfo
128 Table::iterator iter = m_Table.find(pName);
132 /// findInfo - find the resolved ResolveInfo
135 Table::const_iterator iter = m_Table.find(pName);
139 /// findSymbol - find the resolved output LDSymbol
148 /// findSymbol - find the resolved output LDSymbol
H A DSectionMap.cpp62 SectionMap::iterator SectionMap::find(const std::string& pInput) function in class:SectionMap
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.h97 TypeMapType::const_iterator I = TypeMap.find(T);
107 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer());
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.h97 TypeMapType::const_iterator I = TypeMap.find(T);
107 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer());
/frameworks/native/libs/utils/
H A DPropertyMap.cpp190 if (valueToken.find("\\", 0) >= 0 || valueToken.find("\"", 0) >= 0) {
/frameworks/av/include/media/stagefright/foundation/
H A DAString.h65 ssize_t find(const char *substring, size_t start = 0) const;
/frameworks/compile/linkloader/include/impl/
H A DELFSectionHeaderTable.hxx100 name_map.find(name);
/frameworks/compile/mclinker/lib/MC/
H A DSearchDirs.cpp45 mcld::sys::fs::Path* SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType) function in class:SearchDirs
/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp113 if (gl_extensions.find("GL_EXT_debug_marker") < 0) {
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java185 if (!match.find()) {
192 if (!match.find()) {
199 if (!match.find()) {
/frameworks/native/include/utils/
H A DBasicHashtable.h33 // may need to seek further along the chain to find the entry.
68 ssize_t find(ssize_t index, hash_t hash, const void* __restrict__ key) const;
275 * find the first matching entry.
279 inline ssize_t find(ssize_t index, hash_t hash, const TKey& key) const { function in class:android::BasicHashtable
280 return BasicHashtableImpl::find(index, hash, &key);
301 * to continue iterating over the hashtable using next() or find().
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java197 int find = TextUtils.lastIndexOf(text, '\n', where - 1);
198 if (find < 0)
199 find = 0;
201 find = find + 1;
204 int diff = where - find;
258 // find affected region of old layout
/frameworks/compile/libbcc/lib/Core/
H A DLinker.cpp50 "Cannot find -lnamespec",
170 // find out the real path of the namespec.
172 // In the system with shared object support, we can find both archive
177 path = mLDInfo->options().directories().find(pNameSpec,
181 // otherwise, with --Bdynamic, we can find either an archive or a
183 path = mLDInfo->options().directories().find(pNameSpec,
190 path = mLDInfo->options().directories().find(pNameSpec,
/frameworks/compile/mclinker/lib/CodeGen/
H A DSectLinker.cpp309 // find out the real path of the namespec.
311 // In the system with shared object support, we can find both archive
316 path = info.options().directories().find(namespec_option->namespec(),
320 // otherwise, with --Bdynamic, we can find either an archive or a
322 path = info.options().directories().find(namespec_option->namespec(),
329 path = info.options().directories().find(namespec_option->namespec(),

Completed in 520 milliseconds

12345