Searched refs:std (Results 201 - 225 of 2002) sorted by relevance

1234567891011>>

/haiku/src/tests/kits/app/bcursor/
H A DBCursorTester.h26 BCursorTester(std::string name) : TestCase(name) {;}
/haiku/headers/private/kernel/arch/generic/
H A Duser_memory.h31 std::atomic_signal_fence(std::memory_order_acq_rel);
37 std::atomic_signal_fence(std::memory_order_acq_rel);
/haiku/src/tests/kits/translation/
H A DBitmapStreamTest.h44 BitmapStreamTest(std::string name = "");
H A DTranslationUtilsTest.h44 TranslationUtilsTest(std::string name = "");
H A DTranslatorTest.h43 TranslatorTest(std::string name = "");
/haiku/src/system/libroot/os/
H A Dsystem_info.cpp80 error = _kern_get_cpu_info(0, std::min(systemInfo.cpu_count, uint32(8)),
86 info->cpu_count = std::min(systemInfo.cpu_count, uint32(8));
99 topology = new(std::nothrow) cpu_topology_node_info[topologyNodeCount];
118 info->max_pages = std::min(systemInfo.max_pages, uint64(INT32_MAX));
119 info->used_pages = std::min(systemInfo.used_pages, uint64(INT32_MAX));
120 info->cached_pages = std::min(systemInfo.cached_pages, uint64(INT32_MAX));
121 info->ignored_pages = std::min(systemInfo.ignored_pages, uint64(INT32_MAX));
122 info->page_faults = std::min(systemInfo.page_faults, uint32(INT32_MAX));
123 info->max_sems = std::min(systemInfo.max_sems, uint32(INT32_MAX));
124 info->used_sems = std
[all...]
/haiku/src/kits/package/
H A DDownloadFileRequest.cpp55 FetchFileJob* fetchJob = new (std::nothrow) FetchFileJob(fContext,
70 ValidateChecksumJob* validateJob = new (std::nothrow) ValidateChecksumJob(
72 new (std::nothrow) StringChecksumAccessor(fChecksum),
73 new (std::nothrow) GeneralFileChecksumAccessor(fTargetEntry, true));
H A DRefreshRepositoryRequest.cpp70 FetchFileJob* fetchChecksumJob = new (std::nothrow) FetchFileJob(
90 = new (std::nothrow) ValidateChecksumJob(fContext,
92 new (std::nothrow) ChecksumFileChecksumAccessor(
94 new (std::nothrow) GeneralFileChecksumAccessor(repoCache.Entry(),
137 FetchFileJob* fetchCacheJob = new (std::nothrow) FetchFileJob(fContext,
150 = new (std::nothrow) ValidateChecksumJob(fContext,
152 new (std::nothrow) ChecksumFileChecksumAccessor(
154 new (std::nothrow) GeneralFileChecksumAccessor(tempRepoCache));
173 = new (std::nothrow) ActivateRepositoryCacheJob(fContext,
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNodeMonitor.cpp56 event = new(std::nothrow) EntryCreatedEvent;
59 event = new(std::nothrow) EntryRemovedEvent;
62 event = new(std::nothrow) EntryMovedEvent;
65 event = new(std::nothrow) StatChangedEvent;
68 event = new(std::nothrow) AttributeChangedEvent;
71 event = new(std::nothrow) VolumeMountedEvent;
74 event = new(std::nothrow) VolumeUnmountedEvent;
/haiku/headers/private/storage/sniffer/
H A DParser.h75 virtual const std::string& String() const;
92 StringToken(const std::string &str, const ssize_t pos);
94 virtual const std::string& String() const;
96 std::string fString;
137 TokenStream(const std::string &string);
141 status_t SetTo(const std::string &string);
158 void AddString(const std::string &str, ssize_t pos);
162 std::vector<Token*> fTokenList;
279 std::string ErrorMessage(Err *err, const char *rule);
290 std
[all...]
/haiku/headers/private/netservices2/
H A DHttpRequest.h43 BHttpMethod(const std::string_view& method);
57 const std::string_view Method() const noexcept;
60 std::variant<Verb, BString> fMethod;
115 void SetRequestBody(std::unique_ptr<BDataIO> input, BString mimeType,
116 std::optional<off_t> size);
123 std::unique_ptr<BDataIO> ClearRequestBody() noexcept;
136 std::unique_ptr<Data> fData;
141 std::unique_ptr<BDataIO> input;
143 std::optional<off_t> size;
144 std
[all...]
/haiku/src/system/boot/platform/bios_ia32/
H A Dmenu.cpp44 item = new(std::nothrow) MenuItem("Select screen resolution",
56 item = new(std::nothrow) MenuItem("Use fail-safe graphics driver");
67 item = new(std::nothrow) MenuItem("Don't call the BIOS");
75 item = new(std::nothrow) MenuItem("Disable APM");
85 item = new(std::nothrow) MenuItem("Disable ACPI");
/haiku/src/kits/network/libnetservices2/
H A DHttpSerializer.cpp17 using namespace std::literals;
99 std::optional<size_t> maxReadSize = std::nullopt;
112 return fBodySize == std::nullopt;
120 buffer.WriteTo([target, &bytesWritten](const std::byte* buffer, size_t size) {
/haiku/src/apps/haikudepot/textview/
H A DCharacterStyleData.cpp104 CharacterStyleData* ret = new(std::nothrow) CharacterStyleData(*this);
119 CharacterStyleData* ret = new(std::nothrow) CharacterStyleData(*this);
146 CharacterStyleData* ret = new(std::nothrow) CharacterStyleData(*this);
173 CharacterStyleData* ret = new(std::nothrow) CharacterStyleData(*this);
188 CharacterStyleData* ret = new(std::nothrow) CharacterStyleData(*this);
203 CharacterStyleData* ret = new(std::nothrow) CharacterStyleData(*this);
218 CharacterStyleData* ret = new(std::nothrow) CharacterStyleData(*this);
234 CharacterStyleData* ret = new(std::nothrow) CharacterStyleData(*this);
249 CharacterStyleData* ret = new(std::nothrow) CharacterStyleData(*this);
265 CharacterStyleData* ret = new(std
[all...]
/haiku/src/kits/storage/mime/
H A DInstalledTypes.cpp113 std::map<std::string, Supertype>::iterator i = fSupertypes.find(supertype);
176 std::map<std::string, Supertype>::iterator i;
239 std::map<std::string, Supertype>::iterator &i)
277 std::map<std::string, Supertype>::iterator i;
336 std::map<std
[all...]
/haiku/headers/tools/cppunit/cppunit/
H A DTestAssert.h42 static std::string toString( const T& x )
55 std::string conditionExpression = "",
57 std::string fileName );
59 void CPPUNIT_API assertNotEqualImplementation( std::string expected,
60 std::string actual,
62 std::string fileName );
69 std::string fileName )
84 std::string fileName );
92 const std::string &message ="" )
H A DTestFailure.h40 virtual std::string failedTestName() const;
42 virtual std::string toString() const;
H A DTestSuite.h15 using std::string;
16 using std::vector;
H A DTextOutputter.h24 std::ostream &stream );
45 std::ostream &m_stream;
/haiku/src/servers/registrar/
H A DRecentEntries.cpp36 using namespace std;
69 /*! \var std::list<std::string> RecentEntries::fEntryList
116 std::list<recent_entry*>::iterator item;
177 std::list<recent_entry*> duplicateList;
178 std::list<recent_entry*>::iterator item;
207 for (std::list<recent_entry*>::iterator dupItem = duplicateList.begin();
239 std::list<recent_entry*>::iterator i;
253 std::list<recent_entry*>::iterator item;
283 std
[all...]
/haiku/src/kits/shared/
H A DArgumentVector.cpp98 const std::vector<std::string>& ArgVector() const
130 std::string fCurrentArg;
132 std::vector<std::string> fArgVector;
184 const std::string& sourceArgument = parser.ArgVector()[i];
/haiku/src/servers/registrar/mime/
H A DRegistrarThreadManager.cpp104 std::list<RegistrarThread*>::iterator i;
130 std::list<RegistrarThread*>::iterator i;
160 std::list<RegistrarThread*>::iterator i;
199 std::list<RegistrarThread*>::iterator i;
243 std::list<RegistrarThread*>::iterator&
244 RegistrarThreadManager::RemoveThread(std::list<RegistrarThread*>::iterator &i)
/haiku/headers/libs/agg/
H A Dagg_trans_affine.h323 return std::sqrt(x*x + y*y);
337 double ca = std::cos(a);
338 double sa = std::sin(a);
407 *x = std::sqrt(sx * sx + shx * shx);
408 *y = std::sqrt(shy * shy + sy * sy);
420 trans_affine(std::cos(a), std::sin(a), -std::sin(a), std::cos(a), 0.0, 0.0)
454 trans_affine(1.0, std
[all...]
/haiku/src/add-ons/print/transports/shared/
H A DSocket.h12 using namespace std;
14 #define std
/haiku/src/apps/cortex/RouteApp/
H A DNodeSetIOContext.h101 typedef std::pair<BString,media_node_id> node_entry;
102 typedef std::vector<node_entry> node_set;

Completed in 202 milliseconds

1234567891011>>