Home
last modified time | relevance | path

Searched refs:find_it (Results 1 – 11 of 11) sorted by relevance

/external/libtextclassifier/native/utils/utf8/
Dunilib-common.cc462 const auto find_it = std::lower_bound(array, end, c); in GetMatchIndex() local
463 if (find_it != end && *find_it == c) { in GetMatchIndex()
464 return find_it - array; in GetMatchIndex()
476 const auto find_it = std::lower_bound(arr, end, c); in GetOverlappingRangeIndex() local
477 if (find_it == end) { in GetOverlappingRangeIndex()
481 const char32 range_end = *find_it; in GetOverlappingRangeIndex()
486 return find_it - arr; in GetOverlappingRangeIndex()
495 const auto find_it = std::lower_bound(end_arr, end_arr_end, c); in GetOverlappingRangeIndex() local
496 if (find_it == end_arr_end) { in GetOverlappingRangeIndex()
500 const int range_index = find_it - end_arr; in GetOverlappingRangeIndex()
[all …]
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/DarwinLog/
DDarwinLogCollector.cpp473 auto find_it = m_activity_map.find(activity_id); in GetActivityForID() local
474 return (find_it != m_activity_map.end()) ? find_it->second.m_name.c_str() in GetActivityForID()
491 auto find_it = m_activity_map.find(activity_id); in GetActivityChainForID_internal() local
492 if (find_it == m_activity_map.end()) { in GetActivityChainForID_internal()
499 GetActivityChainForID_internal(find_it->second.m_parent_id, result, in GetActivityChainForID_internal()
503 result += find_it->second.m_name; in GetActivityChainForID_internal()
/external/llvm-project/lldb/source/Target/
DModuleCache.cpp217 const auto find_it = in Get() local
219 if (find_it != m_loaded_modules.end()) { in Get()
220 cached_module_sp = (*find_it).second.lock(); in Get()
223 m_loaded_modules.erase(find_it); in Get()
DProcess.cpp4360 auto find_it = m_structured_data_plugin_map.find(type_name); in GetStructuredDataPlugin() local
4361 if (find_it != m_structured_data_plugin_map.end()) in GetStructuredDataPlugin()
4362 return find_it->second; in GetStructuredDataPlugin()
6107 auto find_it = m_structured_data_plugin_map.find(type_name); in RouteAsyncStructuredData() local
6108 if (find_it == m_structured_data_plugin_map.end()) { in RouteAsyncStructuredData()
6114 find_it->second->HandleArrivalOfStructuredData(*this, type_name, object_sp); in RouteAsyncStructuredData()
/external/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
DStructuredDataDarwinLog.cpp85 auto find_it = options_map.find(debugger_wp); in GetGlobalEnableOptions() local
86 if (find_it != options_map.end()) in GetGlobalEnableOptions()
87 return find_it->second; in GetGlobalEnableOptions()
97 auto find_it = options_map.find(debugger_wp); in SetGlobalEnableOptions() local
98 if (find_it != options_map.end()) in SetGlobalEnableOptions()
99 find_it->second = options_sp; in SetGlobalEnableOptions()
200 auto find_it = map.find(operation); in CreateRule() local
201 if (find_it == map.end()) { in CreateRule()
208 return find_it->second(match_accepts, attribute, op_arg, error); in CreateRule()
/external/openscreen/discovery/dnssd/impl/
Dpublisher_impl.cc185 auto find_it = changed_records.find(key); in UpdatePublishedRegistration() local
186 if (find_it == changed_records.end()) { in UpdatePublishedRegistration()
191 find_it->second.second = std::move(new_records[i]); in UpdatePublishedRegistration()
/external/python/cpython2/Lib/idlelib/
DReplaceDialog.py47 self.make_button("Find", self.find_it)
52 def find_it(self, event=None): member in ReplaceDialog
/external/python/cpython3/Lib/idlelib/
Dreplace.py88 self.make_button("Find", self.find_it)
93 def find_it(self, event=None): member in ReplaceDialog
/external/tensorflow/tensorflow/compiler/tf2xla/
Dtf2xla_util.cc458 auto find_it = node_by_name.find(name); in PruneGraphDefInto() local
459 if (find_it == node_by_name.end()) { in PruneGraphDefInto()
463 auto& map_entry = find_it->second; in PruneGraphDefInto()
/external/tensorflow/tensorflow/python/debug/cli/
Ddebugger_cli_common.py415 find_it = re_prog.finditer(line)
418 for match in find_it:
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_replace.py123 self.dialog.find_it(0)