.. |
gtest
|
Bug 1466475 - Make mozilla::Span produce aligned bogus pointers per new Rust rules. r=froydnj
|
2018-06-04 12:59:46 +03:00 |
TestAlgorithm.cpp
|
Bug 1449094 - Implement constexpr mozilla::AllOf. r=froydnj
|
2018-03-28 00:01:08 +09:00 |
TestArray.cpp
|
…
|
|
TestArrayUtils.cpp
|
…
|
|
TestAtomics.cpp
|
…
|
|
TestBinarySearch.cpp
|
…
|
|
TestBloomFilter.cpp
|
…
|
|
TestBufferList.cpp
|
Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
|
2018-06-01 10:45:27 +02:00 |
TestCasting.cpp
|
…
|
|
TestCeilingFloor.cpp
|
…
|
|
TestCheckedInt.cpp
|
…
|
|
TestCountPopulation.cpp
|
…
|
|
TestCountZeroes.cpp
|
…
|
|
TestDefineEnum.cpp
|
…
|
|
TestDoublyLinkedList.cpp
|
Bug 1396723 - Simplify the trait users of DoublyLinkedList need to define. r=froydnj
|
2017-09-02 08:09:58 +09:00 |
TestEndian.cpp
|
Bug 1442967 - Boo, MSVC warns when a cast will truncate a numeric constant. Arguably a desirable warning generally, but here we specifically intend the cast to narrow, so disable the warning. r=me in a CLOSED TREE
|
2018-03-12 19:20:42 -07:00 |
TestEnumSet.cpp
|
…
|
|
TestEnumTypeTraits.cpp
|
…
|
|
TestEnumeratedArray.cpp
|
…
|
|
TestFastBernoulliTrial.cpp
|
…
|
|
TestFloatingPoint.cpp
|
Bug 1438212 - Implement mozilla::IsFloat32Representable using an algorithm that handles NaN correctly and doesn't sometimes invoke undefined behavior. r=froydnj
|
2018-06-06 16:03:47 -07:00 |
TestIntegerPrintfMacros.cpp
|
…
|
|
TestIntegerRange.cpp
|
…
|
|
TestJSONWriter.cpp
|
Bug 1467759 - Escape all the property names in JSONWriter. r=froydnj
|
2018-06-08 19:50:25 +02:00 |
TestLinkedList.cpp
|
Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
|
2018-06-01 10:45:27 +02:00 |
TestMacroArgs.cpp
|
…
|
|
TestMacroForEach.cpp
|
…
|
|
TestMathAlgorithms.cpp
|
Bug 1441657 - Create a new mozilla/WrappingOperations.h header to contain implementations of common math operations with well-defined wraparound semantics. r=froydnj
|
2018-02-15 17:36:50 -08:00 |
TestMaybe.cpp
|
Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
|
2018-06-01 10:45:27 +02:00 |
TestNonDereferenceable.cpp
|
Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
|
2018-06-01 10:45:27 +02:00 |
TestNotNull.cpp
|
Bug 1410252 - MakeNotNull<PointerType, OptionalPointeeType>(Args...) - r=njn
|
2017-10-20 14:56:01 +11:00 |
TestPair.cpp
|
Bug 1453795 - MFTB - Initialize member fields in classes/ structures. r=waldo
|
2018-06-15 13:49:31 +03:00 |
TestPoisonArea.cpp
|
…
|
|
TestRange.cpp
|
…
|
|
TestRefPtr.cpp
|
…
|
|
TestResult.cpp
|
Bug 1419682 - add unwrap_or() for Result. r=Waldo
|
2017-11-22 17:14:28 +08:00 |
TestRollingMean.cpp
|
…
|
|
TestSHA1.cpp
|
…
|
|
TestSPSCQueue.cpp
|
Bug 1454385 - Add a single producer single consumer lock and wait free queue to mfbt/. r=froydnj
|
2018-04-13 17:14:05 +02:00 |
TestSaturate.cpp
|
…
|
|
TestScopeExit.cpp
|
…
|
|
TestSegmentedVector.cpp
|
Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
|
2018-06-01 10:45:27 +02:00 |
TestSmallPointerArray.cpp
|
Bug 1397056 - Add Contains and a return parameter to Remove for SmallPointerArray. r=froydnj
|
2017-09-12 14:11:47 -04:00 |
TestSplayTree.cpp
|
…
|
|
TestTemplateLib.cpp
|
…
|
|
TestTextUtils.cpp
|
Bug 1467336 - Implement mozilla::IsAscii to detect pure ASCII characters. r=froydnj
|
2018-06-07 02:17:10 -07:00 |
TestThreadSafeWeakPtr.cpp
|
Bug 1404742 - add test for ThreadSafeWeakPtr. r=nfroyd
|
2017-10-18 14:21:27 -04:00 |
TestTuple.cpp
|
Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
|
2018-06-01 10:45:27 +02:00 |
TestTypeTraits.cpp
|
Bug 1424866 - Update the comment for fix a warning: unnecessary parentheses in declaration of 'type name' r=gerald DONTBUILD
|
2018-01-04 11:59:13 +01:00 |
TestTypedEnum.cpp
|
…
|
|
TestUniquePtr.cpp
|
Bug 1466909 - Use AddLvalueReference for UniquePtr's operator*(). r=froydnj
|
2018-06-07 07:27:22 -07:00 |
TestUtf8.cpp
|
Bug 1426909 - Introduce a new mfbt/Utf8.h header for UTF-8-related functionality, including a UTF-8 code unit type that is compatible with, but doesn't directly interconvert with, |char|. r=froydnj
|
2018-01-11 11:29:53 -07:00 |
TestVariant.cpp
|
Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
|
2018-06-01 10:45:27 +02:00 |
TestVector.cpp
|
Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
|
2018-06-01 10:45:27 +02:00 |
TestWeakPtr.cpp
|
…
|
|
TestWrappingOperations.cpp
|
Bug 1445024 - Implement mozilla::WrappingSubtract. r=froydnj
|
2018-03-06 19:22:20 -08:00 |
TestXorShift128PlusRNG.cpp
|
…
|
|
moz.build
|
Bug 1426909 - Introduce a new mfbt/Utf8.h header for UTF-8-related functionality, including a UTF-8 code unit type that is compatible with, but doesn't directly interconvert with, |char|. r=froydnj
|
2018-01-11 11:29:53 -07:00 |