Home
last modified time | relevance | path

Searched refs:Find (Results 1 – 25 of 156) sorted by relevance

1234567

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp418 m_set.globals.Find(basename, in GetGlobalVariables()
426 m_set.globals.Find(regex, DIERefCallback(callback, regex.GetText())); in GetGlobalVariables()
438 m_set.objc_class_selectors.Find( in GetObjCMethods()
446 m_set.types.Find(class_name, in GetCompleteObjCClass()
453 m_set.types.Find(name, DIERefCallback(callback, name.GetStringRef())); in GetTypes()
461 m_set.types.Find(ConstString(name), in GetTypes()
468 m_set.namespaces.Find(name, DIERefCallback(callback, name.GetStringRef())); in GetNamespaces()
480 if (!m_set.function_fullnames.Find( in GetFunctions()
492 if (!m_set.function_basenames.Find( in GetFunctions()
505 if (!m_set.function_methods.Find( in GetFunctions()
[all …]
H A DUniqueDWARFASTType.h69 UniqueDWARFASTType *Find(const DWARFDIE &die, const Declaration &decl,
88 UniqueDWARFASTType *Find(ConstString name, const DWARFDIE &die, in Find() function
94 return pos->second.Find(die, decl, byte_size, is_forward_declaration); in Find()
H A DNameToDIE.h37 bool Find(ConstString name,
40 bool Find(const RegularExpression &regex,
H A DNameToDIE.cpp34 bool NameToDIE::Find(ConstString name, in Find()
42 bool NameToDIE::Find(const RegularExpression &regex, in Find()
33 bool NameToDIE::Find(ConstString name, Find() function in NameToDIE
41 bool NameToDIE::Find(const RegularExpression &regex, Find() function in NameToDIE
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp27 static const T *Find(StringRef S, ArrayRef<T> A) { in Find() function
67 Find(SubtargetFeatures::StripFlag(Feature), FeatureTable); in ApplyFeatureFlag()
191 const SubtargetSubTypeKV *CPUEntry = Find(CPU, ProcDesc); in getFeatures()
204 const SubtargetSubTypeKV *CPUEntry = Find(TuneCPU, ProcDesc); in getFeatures()
292 Find(SubtargetFeatures::StripFlag(Feature), ProcFeatures); in ToggleFeature()
325 Find(SubtargetFeatures::StripFlag(F), ProcFeatures); in checkFeatures()
340 const SubtargetSubTypeKV *CPUEntry = Find(CPU, ProcDesc); in getSchedModelForCPU()
/freebsd/cddl/usr.sbin/zfsd/
H A Dcase_file.h97 static CaseFile *Find(DevdCtl::Guid poolGUID, DevdCtl::Guid vdevGUID);
109 static void Find(DevdCtl::Guid poolGUID, DevdCtl::Guid vdevGUID,
121 static CaseFile *Find(const string &physPath);
H A Dzfsd_event.cc148 CaseFile *caseFile(CaseFile::Find(physPath)); in Process()
241 CaseFile::Find(vdev.PoolGUID(),vdev.GUID(), case_list); in OnlineByLabel()
308 CaseFile *caseFile(CaseFile::Find(PoolGUID(), VdevGUID())); in Process()
344 nvlist_t *vdevConfig = VdevIterator(zpl.front()).Find(VdevGUID()); in Process()
423 CaseFile *caseFile(CaseFile::Find(PoolGUID(), VdevGUID())); in ProcessPoolEvent()
H A Dcase_file.cc98 CaseFile::Find(Guid poolGUID, Guid vdevGUID) in Find() function in CaseFile
117 CaseFile::Find(Guid poolGUID, Guid vdevGUID, CaseFileList &cases) in Find() function in CaseFile
137 CaseFile::Find(const string &physPath) in Find() function in CaseFile
177 activeCase = Find(vdev.PoolGUID(), vdev.GUID()); in Create()
805 existingCaseFile = Find(Guid(poolGUID), Guid(vdevGUID)); in DeSerializeFile()
826 .Find(vdevGUID)) == NULL) { in DeSerializeFile()
1044 || (VdevIterator(zhp).Find(m_vdevGUID)) == NULL) { in OnGracePeriodEnded()
1275 return (VdevIterator(zhp).Find(VdevGUID())); in CaseVdev()
H A Dvdev_iterator.h105 nvlist_t *Find(DevdCtl::Guid vdevGUID);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSTLAlgorithmModeling.cpp30 void Find(CheckerContext &C, const CallEvent &Call, unsigned paramNum) const;
116 Find(C, Call, 0); in evalFind()
123 Find(C, Call, 1); in evalFind()
130 void STLAlgorithmModeling::Find(CheckerContext &C, const CallEvent &Call, in Find() function in __anon0b7998770111::STLAlgorithmModeling
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDynamicLibrary.cpp38 HandleList::iterator Find(void *Handle) { return find(Handles, Handle); } in Find() function in DynamicLibrary::HandleSet
41 return Handle == Process || Find(Handle) != Handles.end(); in Contains()
53 if (!AllowDuplicates && Find(Handle) != Handles.end()) { in AddLibrary()
75 HandleList::iterator it = Find(Handle); in CloseLibrary()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBInstructionListExtensions.i18 # Find an instruction by index
24 # Find an instruction using a lldb.SBAddress object
/freebsd/contrib/libpcap/cmake/Modules/
H A DFindAirPcap.cmake5 # Find the AirPcap library and include files.
48 # Find the header
53 # Find the library
H A DFindPacket.cmake27 # Find the Packet library and include files.
73 # Find the header
78 # Find the library
/freebsd/contrib/pam-krb5/tests/tap/perl/Test/RRA/
H A DAutomake.pm24 use File::Find qw(find);
104 my $path = $File::Find::name;
107 $File::Find::prune = 1;
/freebsd/usr.sbin/bsdconfig/share/
H A Dgeom.subr244 # Find one or more registered GEOMs by name, type, or both. Returns a space-
288 # Find GEOM-related struct where $prop of the struct is equal to $find. Returns
292 # NULL Find any of the below
293 # class Find GEOM_CLASS struct
294 # geom Find GEOM_GEOM struct
295 # consumer Find GEOM_CONSUMER struct
296 # provider Find GEOM_PROVIDER struct
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp215 auto Find = [=](const char *String) -> bool { return Name.contains(String); }; in isSystemEntry() local
222 if (Find("_s__")) in isSystemEntry()
224 if (Find("_CatchableType") || Find("_TypeDescriptor")) in isSystemEntry()
226 if (Find("Intermediate\\vctools")) in isSystemEntry()
228 if (Find("$initializer$") || Find("dynamic initializer")) in isSystemEntry()
230 if (Find("`vftable'") || Find("_GLOBAL__sub")) in isSystemEntry()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PreAMXConfig.cpp
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFindingAction.cpp61 std::vector<std::string> Find() { in Find() function in clang::tooling::__anon980dcc460111::AdditionalUSRFinder
213 return Finder.Find(); in getUSRsForDeclaration()
277 USRList.push_back(Finder.Find()); in FindSymbol()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DZipFile.h24 static bool Find(lldb::DataBufferSP zip_data, const llvm::StringRef file_path,
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DHexagon.cpp421 auto Find = [&HTC] (const std::string &RootDir, const std::string &SubDir, in constructHexagonLinkArgs() local
433 std::string Crt0SA = Find(RootDir, StartSubDir, "/crt0_standalone.o"); in constructHexagonLinkArgs()
436 std::string Crt0 = Find(RootDir, StartSubDir, "/crt0.o"); in constructHexagonLinkArgs()
440 ? Find(RootDir, StartSubDir + "/pic", "/initS.o") in constructHexagonLinkArgs()
441 : Find(RootDir, StartSubDir, "/init.o"); in constructHexagonLinkArgs()
489 ? Find(RootDir, StartSubDir + "/pic", "/finiS.o") in constructHexagonLinkArgs()
490 : Find(RootDir, StartSubDir, "/fini.o"); in constructHexagonLinkArgs()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h57 size_t Find(ExecutionContextScope *exe_scope, const char *key,
118 if (scavenger && scavenger->Find(exe_scope, key, results, append)) in Find_Impl()
143 success = scavenger->Find(exe_scope, key, results, append) || success; in Find_Impl()
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DVlanConfig.h128 EFI_VLAN_CONFIG_FIND Find; member
/freebsd/sys/riscv/iommu/
H A Diommu_if.m97 # Find a domain allocated for a dev.
104 # Find an allocated context for a device.
/freebsd/tools/build/
H A Dfreebsd-yeet.pl13 use File::Find;

1234567