Searched refs:nothrow (Results 51 - 75 of 1182) sorted by relevance

1234567891011>>

/haiku/src/apps/icon-o-matic/shape/commands/
H A DRemovePointsCommand.cpp25 using std::nothrow;
176 fIndex = new (nothrow) int32[count];
177 fPoint = new (nothrow) BPoint[count];
178 fPointIn = new (nothrow) BPoint[count];
179 fPointOut = new (nothrow) BPoint[count];
180 fConnected = new (nothrow) bool[count];
204 fOldSelection = new (nothrow) int32[selectionCount];
H A DTransformPointsCommand.cpp17 using std::nothrow;
44 new (nothrow) int32[count] : NULL),
46 new (nothrow) control_point[count] : NULL),
/haiku/src/kits/storage/
H A DQuery.cpp85 return _PushNode(new(nothrow) AttributeNode(attrName), true);
106 error = _PushNode(new(nothrow) BinaryOpNode(op), true);
109 error = _PushNode(new(nothrow) UnaryOpNode(op), true);
112 error = _PushNode(new(nothrow) SpecialOpNode(op), true);
123 return _PushNode(new(nothrow) UInt32ValueNode(value), true);
131 return _PushNode(new(nothrow) Int32ValueNode(value), true);
139 return _PushNode(new(nothrow) UInt64ValueNode(value), true);
147 return _PushNode(new(nothrow) Int64ValueNode(value), true);
155 return _PushNode(new(nothrow) FloatValueNode(value), true);
163 return _PushNode(new(nothrow) DoubleValueNod
[all...]
/haiku/src/libs/linprog/
H A DConstraint.cpp143 list->AddItem(new(std::nothrow) Summand(coeff1, var1));
153 list->AddItem(new(std::nothrow) Summand(coeff1, var1));
154 list->AddItem(new(std::nothrow) Summand(coeff2, var2));
165 list->AddItem(new(std::nothrow) Summand(coeff1, var1));
166 list->AddItem(new(std::nothrow) Summand(coeff2, var2));
167 list->AddItem(new(std::nothrow) Summand(coeff3, var3));
179 list->AddItem(new(std::nothrow) Summand(coeff1, var1));
180 list->AddItem(new(std::nothrow) Summand(coeff2, var2));
181 list->AddItem(new(std::nothrow) Summand(coeff3, var3));
182 list->AddItem(new(std::nothrow) Summan
[all...]
H A DLinearSpec.cpp138 Variable* variable = new(std::nothrow) Variable(this);
417 SummandList* summands = new(std::nothrow) SummandList(1);
420 summands->AddItem(new(std::nothrow) Summand(coeff1, var1));
444 SummandList* summands = new(std::nothrow) SummandList(2);
447 summands->AddItem(new(std::nothrow) Summand(coeff1, var1));
448 summands->AddItem(new(std::nothrow) Summand(coeff2, var2));
474 SummandList* summands = new(std::nothrow) SummandList(2);
477 summands->AddItem(new(std::nothrow) Summand(coeff1, var1));
478 summands->AddItem(new(std::nothrow) Summand(coeff2, var2));
479 summands->AddItem(new(std::nothrow) Summan
[all...]
/haiku/src/servers/app/
H A DScreenManager.cpp25 using std::nothrow;
144 interface = new(nothrow) ViewHWInterface();
146 interface = new(nothrow) RemoteHWInterface(target);
220 new(nothrow) Screen(interface, fScreenList.CountItems()));
229 screen_item* item = new(nothrow) screen_item;
235 new(nothrow) ScreenChangeListener(*this, item->screen.Get()));
/haiku/src/libs/icon/shape/
H A DReferenceImage.cpp24 using std::nothrow;
28 : Shape(new (nothrow) _ICON_NAMESPACE Style()),
53 : Shape(new (nothrow) _ICON_NAMESPACE Style()),
61 BBitmap* bitmap = new (nothrow) BBitmap(other.Style()->Bitmap());
73 : Shape(new (nothrow) _ICON_NAMESPACE Style()),
208 fPath = new (nothrow) VectorPath();
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DUserlandFS.cpp44 sUserlandFS = new(nothrow) UserlandFS;
92 fileSystemInitializer = new(nothrow) FileSystemInitializer(name);
141 fFileSystems = new(nothrow) FileSystemMap;
/haiku/src/system/boot/loader/file_systems/amiga_ffs/
H A DVolume.cpp21 using std::nothrow;
78 fRoot = new(nothrow) Directory(*this, fRootNode);
115 Volume *volume = new(nothrow) Volume(partition);
H A DDirectory.cpp18 using std::nothrow;
63 HashIterator *iterator = new(nothrow) HashIterator(fVolume.Device(), fNode);
108 return new(nothrow) File(fVolume, block);
110 return new(nothrow) Directory(fVolume, block);
/haiku/src/apps/debugger/user_interface/gui/value/value_handlers/
H A DFloatValueHandler.cpp48 FloatValueFormatter* formatter = new(std::nothrow) FloatValueFormatter;
72 = new(std::nothrow) TableCellFormattedValueRenderer(formatter);
95 TableCellFloatEditor* editor = new(std::nothrow)
/haiku/src/servers/app/drawing/
H A DBitmapDrawingEngine.cpp61 fBitmap.SetTo(new(std::nothrow) UtilityBitmap(BRect(0, 0, newWidth - 1,
66 fHWInterface.SetTo(new(std::nothrow) BitmapHWInterface(fBitmap));
89 UtilityBitmap *result = new(std::nothrow) UtilityBitmap(BRect(0, 0,
/haiku/src/system/boot/platform/riscv/
H A Dvideo.cpp51 Menu* menu = new(nothrow) Menu(CHOICE_MENU, "Select Video Mode");
54 menu->AddItem(item = new(nothrow) MenuItem("Default"));
62 menu->AddItem(item = new(nothrow) MenuItem("Return to main menu"));
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformObjectsCommand.cpp16 using std::nothrow;
40 new (nothrow) Transformable*[count] : NULL),
42 new (nothrow) double[
/haiku/src/kits/debugger/debug_info/
H A DDwarfTeamDebugInfo.cpp53 fManager = new(std::nothrow) DwarfManager(fArchitecture->AddressSize(), fArchitecture->IsBigEndian());
83 dwarfState = new(std::nothrow) DwarfImageDebugInfoLoadingState();
98 DwarfImageDebugInfo* debugInfo = new(std::nothrow) DwarfImageDebugInfo(
H A DDebuggerTeamDebugInfo.cpp40 = new(std::nothrow) DebuggerImageDebugInfo(imageInfo,
/haiku/src/kits/package/hpkg/
H A DRepositoryReader.cpp23 fImpl(new (std::nothrow) RepositoryReaderImpl(errorOutput))
/haiku/src/system/libroot/add-ons/icu/
H A DICUThreadLocalStorageValue.cpp39 tlsValue = new (std::nothrow) ICUThreadLocalStorageValue();
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRPCCallbackReply.cpp28 CallbackReply* reply = new(std::nothrow) CallbackReply;
/haiku/src/kits/package/
H A DDropRepositoryRequest.cpp47 = new (std::nothrow) RemoveRepositoryJob(fContext,
/haiku/src/kits/debugger/target_host_interface/local/
H A DLocalTargetHostInterfaceInfo.cpp58 = new(std::nothrow) LocalTargetHostInterface;
/haiku/src/add-ons/disk_systems/ntfs/
H A DNTFSAddOn.cpp34 using std::nothrow;
61 NTFSPartitionHandle* handle = new(nothrow) NTFSPartitionHandle(partition);
107 NTFSPartitionHandle* handle = new(nothrow) NTFSPartitionHandle(partition);
173 NTFSAddOn* addOn = new(nothrow) NTFSAddOn;
/haiku/src/add-ons/disk_systems/fat/
H A DFATAddOn.cpp35 using std::nothrow;
60 FATPartitionHandle* handle = new(nothrow) FATPartitionHandle(partition);
106 FATPartitionHandle* handle = new(nothrow) FATPartitionHandle(partition);
172 FATAddOn* addOn = new(nothrow) FATAddOn;
/haiku/src/kits/debugger/value/type_handlers/
H A DBListTypeHandler.cpp46 ValueNode* node = new(std::nothrow) BListValueNode(nodeChild,
/haiku/src/apps/mediaplayer/playlist/
H A DRandomizePLItemsCommand.cpp23 using std::nothrow;
32 fItems(fCount > 0 ? new (nothrow) PlaylistItem*[fCount] : NULL),
33 fListIndices(fCount > 0 ? new (nothrow) int32[fCount] : NULL),
34 fRandomInternalIndices(fCount > 0 ? new (nothrow) int32[fCount] : NULL)

Completed in 134 milliseconds

1234567891011>>