| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86AvoidTrailingCall.cpp | 109 bool IsEmpty = LastRealInstr == MBB.rend(); in runOnMachineFunction() local 110 bool IsCall = !IsEmpty && isCallInstruction(*LastRealInstr); in runOnMachineFunction() 111 if (IsEmpty || IsCall) { in runOnMachineFunction()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDebugAranges.h | 40 bool IsEmpty() const { return m_aranges.IsEmpty(); } in IsEmpty() function
|
| H A D | DWARFCompileUnit.cpp | 112 if (!func_aranges.IsEmpty()) in LookupAddress()
|
| H A D | DWARFDebugInfoEntry.cpp | 375 if (ranges.IsEmpty()) { in GetDIENamesAndRanges() 390 if (ranges.IsEmpty() || name == nullptr || mangled == nullptr) { in GetDIENamesAndRanges() 399 return !ranges.IsEmpty(); in GetDIENamesAndRanges()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | ConstString.h | 111 explicit operator bool() const { return !IsEmpty(); } 194 return (IsEmpty() ? value_if_empty : m_string); 304 bool IsEmpty() const { return m_string == nullptr || m_string[0] == '\0'; } in IsEmpty() function
|
| /freebsd-13.1/contrib/googletest/googletest/test/ |
| H A D | googletest-filepath-test.cc | 77 EXPECT_FALSE(original_dir.IsEmpty()); 100 EXPECT_TRUE(FilePath("").IsEmpty()); in TEST() 104 EXPECT_FALSE(FilePath("a").IsEmpty()); in TEST() 105 EXPECT_FALSE(FilePath(".").IsEmpty()); in TEST() 106 EXPECT_FALSE(FilePath("a/b").IsEmpty()); in TEST() 107 EXPECT_FALSE(FilePath("a\\b\\").IsEmpty()); in TEST()
|
| /freebsd-13.1/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-more-matchers.h | 61 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") {
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 245 if (contexts.IsEmpty()) { in GetPrintForDebuggerAddr() 248 if (contexts.IsEmpty()) in GetPrintForDebuggerAddr() 465 if (sc_list.IsEmpty()) in CalculateHasNewLiteralsAndIndexing() 468 return !sc_list.IsEmpty(); in CalculateHasNewLiteralsAndIndexing()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandHistory.h | 29 bool IsEmpty() const;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | CXXFunctionPointer.cpp | 40 if (target && !target->GetSectionLoadList().IsEmpty()) { in CXXFunctionPointerSummaryProvider()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | Module.cpp | 144 module_spec.GetObjectName().IsEmpty() ? "" : "(", in Module() 145 module_spec.GetObjectName().IsEmpty() in Module() 148 module_spec.GetObjectName().IsEmpty() ? "" : ")"); in Module() 255 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(", in Module() 256 m_object_name.IsEmpty() ? "" : m_object_name.AsCString(""), in Module() 257 m_object_name.IsEmpty() ? "" : ")"); in Module() 285 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(", in ~Module() 286 m_object_name.IsEmpty() ? "" : m_object_name.AsCString(""), in ~Module() 287 m_object_name.IsEmpty() ? "" : ")"); in ~Module()
|
| H A D | FileSpecList.cpp | 67 bool compare_filename_only = file_spec.GetDirectory().IsEmpty(); in FindFileIndex()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | SectionLoadList.h | 37 bool IsEmpty() const;
|
| H A D | SectionLoadHistory.h | 37 bool IsEmpty() const;
|
| H A D | PathMappingList.h | 45 bool IsEmpty() const { return m_pairs.empty(); } in IsEmpty() function
|
| /freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-filepath.h | 114 bool IsEmpty() const { return pathname_.empty(); } in IsEmpty() function
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | Pragma.h | 118 bool IsEmpty() const { return Handlers.empty(); } in IsEmpty() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ |
| H A D | CPPLanguageRuntime.cpp | 196 if (target.GetSectionLoadList().IsEmpty()) in FindLibCppStdFunctionCallableInfo() 348 if (target_sp->GetSectionLoadList().IsEmpty()) in GetStepThroughTrampolinePlan()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointSiteList.h | 155 bool IsEmpty() const { in IsEmpty() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | FileSpecList.h | 159 bool IsEmpty() const { return m_files.empty(); } in IsEmpty() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Block.cpp | 80 if (!m_ranges.IsEmpty()) { in Dump() 159 if (!m_ranges.IsEmpty()) { in DumpAddressRanges() 307 if (m_ranges.IsEmpty()) in GetStartAddress()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | LoopNestAnalysis.cpp | 217 auto IsEmpty = [](const BasicBlock *BB) { in skipEmptyBlockUntil() local 225 while (BB && BB != End && IsEmpty(BB) && !Visited.count(BB) && in skipEmptyBlockUntil()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandHistory.cpp | 21 bool CommandHistory::IsEmpty() const { in IsEmpty() function in CommandHistory
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | ObjCLanguage.h | 55 bool HasCategory() { return !GetCategory().IsEmpty(); } in HasCategory()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | Debug.h | 52 bool IsEmpty() const { return m_actions.empty(); } in IsEmpty() function
|