Home
last modified time | relevance | path

Searched refs:Between (Results 1 – 25 of 100) sorted by relevance

1234

/third_party/googletest/googlemock/test/
Dgmock-cardinalities_test.cc44 using testing::Between;
240 Between(-1, 2); in TEST()
248 Between(1, -2); in TEST()
256 Between(2, 1); in TEST()
263 const Cardinality c = Between(0, 0); in TEST()
277 const Cardinality c = Between(0, 2); in TEST()
294 const Cardinality c = Between(3, 3); in TEST()
311 const Cardinality c = Between(3, 5); in TEST()
331 const Cardinality c = Between(3, 5); in TEST()
/third_party/node/deps/v8/src/date/
Ddateparser.h45 static inline bool Between(int x, int lo, int hi) { in Between() function
313 static bool IsMinute(int x) { return Between(x, 0, 59); } in IsMinute()
314 static bool IsHour(int x) { return Between(x, 0, 23); } in IsHour()
315 static bool IsSecond(int x) { return Between(x, 0, 59); } in IsSecond()
318 static bool IsHour12(int x) { return Between(x, 0, 12); } in IsHour12()
319 static bool IsMillisecond(int x) { return Between(x, 0, 999); } in IsMillisecond()
342 static bool IsMonth(int x) { return Between(x, 1, 12); } in IsMonth()
343 static bool IsDay(int x) { return Between(x, 1, 31); } in IsDay()
Ddateparser.cc53 if (Between(year, 0, 49)) in Write()
55 else if (Between(year, 50, 99)) in Write()
Ddateparser-inl.h278 !Between(scanner->Peek().number(), 0, 24)) { in ParseES5DateTime()
/third_party/googletest/googlemock/src/
Dgmock-cardinalities.cc139 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); } in AtLeast()
142 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); } in AtMost()
148 GTEST_API_ Cardinality Between(int min, int max) { in Between() function
153 GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); } in Exactly()
/third_party/skia/third_party/externals/angle2/extensions/
DANGLE_webgl_compatibility.txt63 the WebGL specification entitled "Differences Between WebGL and OpenGL ES
64 2.0" and "Differences Between WebGL and OpenGL ES 3.0".
/third_party/libcoap/examples/riot/examples_libcoap_server/
DREADME.md5 ## Fast configuration (Between RIOT instances):
/third_party/libcoap/examples/riot/examples_libcoap_client/
DREADME.md5 ## Fast configuration (Between RIOT instances):
/third_party/googletest/googlemock/include/gmock/
Dgmock-cardinalities.h145 GTEST_API_ Cardinality Between(int min, int max);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/
DTransformFeedbackViaExtension.md26 Between the pause and resume there needs to be a memory barrier for the counter buffers with a
/third_party/icu/docs/userguide/format_parse/numbers/
Dskeletons.md212 | `.0#` | Between 1 and 2 fraction digits | `Precision::minMaxFraction(1, 2)` |
252 | `@@#` | Between 2 and 3 significant digits | `...::minMaxSignificantDigits(2, 3)` |
299 | `integer-width/##0` | - | Between 1 and 3 <br/> integer digits | `IntegerWidth::zeroFillTo(1)` <b…
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_EXT_transform_feedback.adoc71 Between the pause and resume there needs to be a memory barrier for the
DVK_EXT_transform_feedback.txt71 Between the pause and resume there needs to be a memory barrier for the
DVK_NV_fragment_shading_rate_enums.adoc73 . Between this extension, VK_KHR_fragment_shading_rate, and
DVK_NV_fragment_shading_rate_enums.txt73 . Between this extension, VK_KHR_fragment_shading_rate, and
/third_party/openGLES/extensions/EXT/
DEXT_texture_compression_astc_decode_mode.txt108 In Table C.2.1 (Differences Between LDR and HDR Modes) in KHR_texture_compression_astc_hdr:
120 Table C.2.1 - Differences Between LDR and HDR Modes
DEXT_static_vertex_array.txt76 Between LockArraysEXT and UnlockArraysEXT the application
DEXT_compiled_vertex_array.txt84 Between LockArraysEXT and UnlockArraysEXT the application
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_texture_compression_astc_decode_mode.txt108 In Table C.2.1 (Differences Between LDR and HDR Modes) in KHR_texture_compression_astc_hdr:
120 Table C.2.1 - Differences Between LDR and HDR Modes
DEXT_compiled_vertex_array.txt84 Between LockArraysEXT and UnlockArraysEXT the application
DEXT_static_vertex_array.txt76 Between LockArraysEXT and UnlockArraysEXT the application
/third_party/skia/third_party/externals/libwebp/cmake/
Dcpu.cmake128 # Between 3.17.0 and 3.18.2 check_cxx_compiler_flag() sets a normal
/third_party/vk-gl-cts/doc/testspecs/GLES2/
Dstress.long.txt75 This concludes an iteration. Between iterations, the usual post-iteration
/third_party/openGLES/extensions/NV/
DNV_copy_buffer.txt66 Add a new subsection "Copying Between Buffers" to section 2.9:
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_copy_buffer.txt66 Add a new subsection "Copying Between Buffers" to section 2.9:

1234