HomeSort by relevance Sort by last modified time
    Searched defs:find (Results 101 - 125 of 1457) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/python/cpython3/Objects/stringlib/
find.h 1 /* stringlib: find/index implementation */
8 STRINGLIB(find)(const STRINGLIB_CHAR* str, Py_ssize_t str_len, function
50 return STRINGLIB(find)(str + start, end - start, sub, sub_len, start);
66 return STRINGLIB(find)(
75 This function is a helper for the "find" family (find, rfind, index,
  /external/skia/src/core/
SkRefDict.cpp 24 SkRefCnt* SkRefDict::find(const char name[]) const { function in class:SkRefDict
  /external/skqp/src/core/
SkRefDict.cpp 24 SkRefCnt* SkRefDict::find(const char name[]) const { function in class:SkRefDict
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveInterval.cpp 33 LiveInterval::iterator LiveInterval::find(SlotIndex Pos) { function in class:LiveInterval
297 // Find the LiveRange containing this span.
298 Ranges::iterator I = find(Start);
356 /// findDefinedVNInfo - Find the VNInfo defined by the specified
  /external/v8/benchmarks/spinning-balls/
splay-tree.js 95 * @param {number} key Key to find and remove from the tree.
126 * @param {number} key Key to find in the tree.
129 SplayTree.prototype.find = function(key) { method in class:SplayTree
  /external/v8/src/inspector/
string-util.h 35 static size_t find(const String& s, const char* needle) { function in class:v8_inspector::protocol::StringUtil
36 return s.find(needle);
38 static size_t find(const String& s, const String& needle) { function in class:v8_inspector::protocol::StringUtil
39 return s.find(needle);
  /external/webrtc/talk/app/webrtc/
streamcollection.h 62 virtual MediaStreamInterface* find(const std::string& label) { function in class:webrtc::StreamCollection
  /frameworks/base/tools/aapt2/util/
ImmutableMap.h 53 const_iterator find(const TKey2& key) const { function in class:aapt::ImmutableMap
  /frameworks/compile/mclinker/include/mcld/Support/
UniqueGCFactory.h 40 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/MC/
SearchDirs.cpp 70 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
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
ModeTest.java 36 assertTrue(m.find());
38 assertFalse(m.find());
42 assertTrue(m.find());
44 assertTrue(m.find());
46 assertFalse(m.find());
50 assertTrue(m.find());
52 assertTrue(m.find());
54 assertFalse(m.find());
63 assertTrue(m.find());
65 assertFalse(m.find());
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/support/
A.java 10 public String find(String key) { method in class:A
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
ModeTest.java 36 assertTrue(m.find());
38 assertFalse(m.find());
43 assertTrue(m.find());
45 assertTrue(m.find());
47 assertFalse(m.find());
52 assertTrue(m.find());
54 assertTrue(m.find());
56 assertFalse(m.find());
64 assertTrue(m.find());
66 assertFalse(m.find());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 44 find(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
68 find(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 44 find(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
68 find(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
lca_test.go 10 find(a, b *Block) *Block
16 if lca1.find(b, c) != lca2.find(b, c) {
35 l1 := lca1.find(b, c)
36 l2 := lca2.find(b, c)
78 func (lca *lcaEasy) find(a, b *Block) *Block { func
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
lca_test.go 10 find(a, b *Block) *Block
16 if lca1.find(b, c) != lca2.find(b, c) {
35 l1 := lca1.find(b, c)
36 l2 := lca2.find(b, c)
78 func (lca *lcaEasy) find(a, b *Block) *Block { func
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
constexpr_char_traits.hpp 39 static TEST_CONSTEXPR_CXX14 const char_type* find(const char_type* __s, size_t __n, const char_type& __a);
87 constexpr_char_traits<_CharT>::find(const char_type* __s, size_t __n, const char_type& __a) function in class:constexpr_char_traits
  /system/bt/osi/test/
list_test.cc 188 int find = 4; local
189 list_node_t* rc = list_foreach(list, list_callback_find_int, &find);
194 find = 1;
195 rc = list_foreach(list, list_callback_find_int, &find);
200 find = 5;
201 rc = list_foreach(list, list_callback_find_int, &find);
206 find = 0;
207 rc = list_foreach(list, list_callback_find_int, &find);
  /system/bt/stack/a2dp/
a2dp_int.h 52 tA2DP_FIND_CB find; /* find service control block */ member in struct:__anon2094
  /bionic/libc/malloc_debug/
MapData.cpp 127 auto it = entries_.find(entry);
145 // Find the containing map info for the PC.
146 const MapEntry* MapData::find(uintptr_t pc, uintptr_t* rel_pc) { function in class:MapData
151 auto it = entries_.find(&pc_entry);
155 it = entries_.find(&pc_entry);
  /cts/tools/dasm/src/java_cup/
terminal.java 69 public static terminal find(String with_name) method in class:terminal
83 public static terminal find(int indx) method in class:terminal
  /development/vndk/snapshot/
utils.py 101 def find(path, names): function
105 path: string, absolute path of directory from which to find files
106 names: list of strings, names of the files to find
  /development/vndk/tools/definition-tool/assets/visual/
dep-graph.js 293 function find(name, tag, data) { function in function:tagHierarchy
298 node.parent = find(tag, tag.substring(0, tag.lastIndexOf(".")));
306 depDumps.forEach(function(d) { find(d.name, d.tag, d); });
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/
ElementPath.py 184 if elem.find(tag) is not None:
281 # Find first matching object.
283 def find(elem, path, namespaces=None): function
290 # Find all matching objects.
296 # Find text for first matching object.

Completed in 770 milliseconds

1 2 3 45 6 7 8 91011>>