Home
last modified time | relevance | path

Searched refs:IsEmpty (Results 1 – 25 of 111) sorted by relevance

12345

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndexSet.cpp116 if (!set.function_basenames.IsEmpty()) { in EncodeIndexSet()
120 if (!set.function_fullnames.IsEmpty()) { in EncodeIndexSet()
124 if (!set.function_methods.IsEmpty()) { in EncodeIndexSet()
128 if (!set.function_selectors.IsEmpty()) { in EncodeIndexSet()
132 if (!set.objc_class_selectors.IsEmpty()) { in EncodeIndexSet()
136 if (!set.globals.IsEmpty()) { in EncodeIndexSet()
140 if (!set.types.IsEmpty()) { in EncodeIndexSet()
144 if (!set.namespaces.IsEmpty()) { in EncodeIndexSet()
H A DDWARFDebugAranges.h41 bool IsEmpty() const { return m_aranges.IsEmpty(); } in GetNumRanges()
40 bool IsEmpty() const { return m_aranges.IsEmpty(); } IsEmpty() function
H A DNameToDIE.h84 bool IsEmpty() const { return m_map.IsEmpty(); }
85 bool IsEmpty() const { return m_map.IsEmpty(); } IsEmpty() function
H A DDWARFCompileUnit.cpp109 if (!func_aranges.IsEmpty()) in LookupAddress()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AvoidTrailingCall.cpp110 bool IsEmpty = LastRealInstr == MBB.rend(); in runOnMachineFunction() local
111 bool IsCall = !IsEmpty && isCallInstruction(*LastRealInstr); in runOnMachineFunction()
112 if (IsEmpty || IsCall) { in runOnMachineFunction()
/freebsd/contrib/llvm-project/compiler-rt/lib/ctx_profile/tests/
H A DRootAutoDetectorTest.cpp7 using ::testing::IsEmpty;
47 ASSERT_THAT(Preorder, Not(IsEmpty())); in popAndCheck()
72 ASSERT_THAT(Preorder, IsEmpty()); in checkSame()
138 EXPECT_THAT(R, IsEmpty()); in TEST()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DConstString.h95 explicit operator bool() const { return !IsEmpty(); }
189 return (IsEmpty() ? value_if_empty : m_string);
304 bool IsEmpty() const { return m_string == nullptr || m_string[0] == '\0'; } in IsEmpty() function
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-filepath-test.cc77 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/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp253 if (contexts.IsEmpty()) { in GetPrintForDebuggerAddr()
256 if (contexts.IsEmpty()) in GetPrintForDebuggerAddr()
473 if (sc_list.IsEmpty()) in CalculateHasNewLiteralsAndIndexing()
476 return !sc_list.IsEmpty(); in CalculateHasNewLiteralsAndIndexing()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DFileSpecList.cpp81 bool compare_filename_only = file_spec.GetDirectory().IsEmpty(); in FindFileIndex()
128 const bool full = !file_spec.GetDirectory().IsEmpty(); in IsCompatible()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandHistory.h30 bool IsEmpty() const;
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-more-matchers.h93 inline PolymorphicMatcher<internal::IsEmptyMatcher> IsEmpty() { in IsEmpty() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DSectionLoadList.h37 bool IsEmpty() const;
H A DSectionLoadHistory.h37 bool IsEmpty() const;
H A DPathMappingList.h54 bool IsEmpty() const { in IsEmpty() function
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPragma.h118 bool IsEmpty() const { return Handlers.empty(); } in IsEmpty() function
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/
H A DDependencyGraph.h458 bool IsEmpty = InstrToNodeMap.empty(); in empty() local
459 assert(IsEmpty == DAGInterval.empty() && in empty()
461 return IsEmpty; in empty()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h124 bool IsEmpty() const { return pathname_.empty(); } in IsEmpty() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointSiteList.h
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp149 module_spec.GetObjectName().IsEmpty() ? "" : "(", in Module()
151 module_spec.GetObjectName().IsEmpty() ? "" : ")"); in Module()
255 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(", in Module()
256 m_object_name.AsCString(""), m_object_name.IsEmpty() ? "" : ")"); in Module()
285 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(", in ~Module()
286 m_object_name.AsCString(""), m_object_name.IsEmpty() ? "" : ")"); in ~Module()
1064 if (file_name.IsEmpty()) in ReportWarningOptimization()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp82 if (!m_ranges.IsEmpty()) { in Dump()
170 if (!m_ranges.IsEmpty()) { in DumpAddressRanges()
319 if (!func_addr.GetModule() || m_ranges.IsEmpty()) in GetStartAddress()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc140 EXPECT_THAT(container, IsEmpty()); in TEST()
142 EXPECT_THAT(container, Not(IsEmpty())); in TEST()
144 EXPECT_THAT(container, Not(IsEmpty())); in TEST()
149 EXPECT_THAT(text, IsEmpty()); in TEST()
151 EXPECT_THAT(text, Not(IsEmpty())); in TEST()
153 EXPECT_THAT(text, Not(IsEmpty())); in TEST()
157 Matcher<vector<int>> m = IsEmpty(); in TEST()
163 Matcher<vector<int>> m = IsEmpty(); in TEST()
172 EXPECT_CALL(helper, Call(IsEmpty())); in TEST()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DDebug.h50 bool IsEmpty() const { return m_actions.empty(); } in IsEmpty() function
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandHistory.cpp22 bool CommandHistory::IsEmpty() const { in IsEmpty() function in CommandHistory
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopNestAnalysis.cpp297 auto IsEmpty = [](const BasicBlock *BB) { in skipEmptyBlockUntil() local
305 while (BB && BB != End && IsEmpty(BB) && !Visited.count(BB) && in skipEmptyBlockUntil()

12345