Searched refs:Delete (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-10.3-release/contrib/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp24 /// Make sure GV is visible from both modules. Delete is true if it is
28 static void makeVisible(GlobalValue &GV, bool Delete) { argument
33 if (Local || Delete) {
86 bool Delete = local
88 if (!Delete) {
95 makeVisible(*I, Delete);
97 if (Delete)
103 bool Delete = local
105 if (!Delete) {
110 makeVisible(*I, Delete);
122 bool Delete = deleteStuff == (bool)Named.count(CurI); local
[all...]
/freebsd-10.3-release/usr.sbin/ctm/ctm/
H A Dctm_passb.c51 Delete(md5);
52 Delete(uid);
53 Delete(gid);
54 Delete(mode);
55 Delete(md5before);
56 Delete(trash);
57 Delete(name);
129 Delete(md5);
130 Delete(uid);
131 Delete(gi
[all...]
H A Dctm_pass3.c110 Delete(md5);
111 Delete(uid);
112 Delete(gid);
113 Delete(mode);
114 Delete(md5before);
115 Delete(trash);
116 Delete(name);
282 Delete(md5);
283 Delete(uid);
284 Delete(gi
[all...]
H A Dctm_pass1.c68 Delete(md5);
69 Delete(name);
70 Delete(trash);
225 Delete(md5);
226 Delete(name);
227 Delete(trash);
H A Dctm_pass2.c51 Delete(trash);
52 Delete(name);
53 Delete(md5);
292 Delete(trash);
293 Delete(name);
294 Delete(md5);
H A Dctm.h73 #define Delete(foo) if (!foo) ; else {Free(foo); foo = 0; } macro
H A Dctm.c226 Delete(FileName);
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DFormattedStream.h87 formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
89 setStream(Stream, Delete);
101 void setStream(raw_ostream &Stream, bool Delete = false) {
105 DeleteStream = Delete;
156 // Delete the stream if needed. Otherwise, transfer the buffer
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h92 Delete (const ConstString &type);
117 Delete (const ConstString &category);
H A DTypeCategoryMap.h51 Delete (KeyType name);
H A DFormattersContainer.h142 Delete (KeyType name) function in class:lldb_private::FormatMap
282 Delete (ConstString type) function in class:lldb_private::FormattersContainer
371 return m_format_map.Delete(type);
H A DFormatManager.h83 return m_categories_map.Delete(category_name);
H A DTypeCategory.h226 Delete (ConstString name,
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeCategory.cpp159 TypeCategoryImpl::Delete (ConstString name, function in class:TypeCategoryImpl
165 success = GetTypeFormatsContainer()->Delete(name) || success;
167 success = GetRegexTypeFormatsContainer()->Delete(name) || success;
170 success = GetTypeSummariesContainer()->Delete(name) || success;
172 success = GetRegexTypeSummariesContainer()->Delete(name) || success;
175 success = GetTypeFiltersContainer()->Delete(name) || success;
177 success = GetRegexTypeFiltersContainer()->Delete(name) || success;
181 success = GetTypeSyntheticsContainer()->Delete(name) || success;
183 success = GetRegexTypeSyntheticsContainer()->Delete(name) || success;
H A DDataVisualization.cpp133 DataVisualization::Categories::Delete (const ConstString &category) function in class:DataVisualization::Categories
217 DataVisualization::NamedSummaryFormats::Delete (const ConstString &type) function in class:DataVisualization::NamedSummaryFormats
219 return GetFormatManager().GetNamedSummaryContainer().Delete(type);
H A DTypeCategoryMap.cpp47 TypeCategoryMap::Delete (KeyType name) function in class:TypeCategoryMap
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DLogChannelDWARF.cpp80 LogChannelDWARF::Delete () function in class:LogChannelDWARF
115 Delete ();
131 Delete ();
H A DLogChannelDWARF.h65 Delete ();
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/API/
H A DSBTypeCategory.cpp332 return m_opaque_sp->GetRegexTypeFormatsContainer()->Delete(ConstString(type_name.GetName()));
334 return m_opaque_sp->GetTypeFormatsContainer()->Delete(ConstString(type_name.GetName()));
404 return m_opaque_sp->GetRegexTypeSummariesContainer()->Delete(ConstString(type_name.GetName()));
406 return m_opaque_sp->GetTypeSummariesContainer()->Delete(ConstString(type_name.GetName()));
440 return m_opaque_sp->GetRegexTypeFiltersContainer()->Delete(ConstString(type_name.GetName()));
442 return m_opaque_sp->GetTypeFiltersContainer()->Delete(ConstString(type_name.GetName()));
511 return m_opaque_sp->GetRegexTypeSyntheticsContainer()->Delete(ConstString(type_name.GetName()));
513 return m_opaque_sp->GetTypeSyntheticsContainer()->Delete(ConstString(type_name.GetName()));
/freebsd-10.3-release/share/examples/drivers/
H A Dmake_device_driver.sh822 (void)scp; /* Delete this line after using scp. */
831 (void)scp; /* Delete this line after using scp. */
856 (void)scp; /* Delete this line after using scp. */
868 (void)scp; /* Delete this line after using scp. */
882 (void)scp; /* Delete this line after using scp. */
897 (void)scp; /* Delete this line after using scp. */
911 (void)scp; /* Delete this line after using scp. */
929 (void)scp; /* Delete this line after using scp. */
/freebsd-10.3-release/contrib/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp103 Delete, ///< Delete the specified members enumerator in enum:ArchiveOperation
195 case 'd': ++NumOperations; Operation = Delete; break;
351 case Delete:
478 if (Operation == Delete)
556 if (Operation == Delete)
855 case Delete:
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp80 bool Delete = false; local
89 Delete = true;
103 << Delete;
107 Delete ? "delete" : "default", tok::semi);
H A DParser.cpp1117 bool Delete = false; local
1126 Delete = true;
1140 << Delete;
1144 Delete ? "delete" : "default", tok::semi);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectType.cpp857 category_sp->GetRegexTypeSummariesContainer()->Delete(typeCS);
974 category_sp->Delete(*name, eFormatCategoryItemValue | eFormatCategoryItemRegexValue);
982 "Delete an existing formatting style for a type.",
1035 bool delete_category = category->Delete(typeCS,
1057 { LLDB_OPT_SET_1, false, "all", 'a', OptionParser::eNoArgument, NULL, 0, eArgTypeNone, "Delete from every category."},
1058 { LLDB_OPT_SET_2, false, "category", 'w', OptionParser::eRequiredArgument, NULL, 0, eArgTypeName, "Delete from given category."},
1145 "Delete all existing format styles.",
1852 category->GetRegexTypeSummariesContainer()->Delete(type_name);
1969 category_sp->Delete(*name, eFormatCategoryItemSummary | eFormatCategoryItemRegexSummary);
1977 "Delete a
[all...]
/freebsd-10.3-release/sys/boot/efi/include/
H A Defiprot.h278 EFI_FILE_DELETE Delete; member in struct:_EFI_FILE_HANDLE

Completed in 162 milliseconds

12