Home
last modified time | relevance | path

Searched refs:implementation (Results 1 - 25 of 168) sorted by relevance

1234567

/third_party/node/lib/internal/test_runner/mock/
H A Dmock.js36 #implementation;
40 constructor(implementation, restore, times) {
43 this.#implementation = implementation;
65 * Sets a new implementation for the mock function.
66 * @param {Function} implementation - The new implementation for the mock function.
68 mockImplementation(implementation) {
69 validateFunction(implementation, 'implementation');
[all...]
/third_party/node/deps/v8/tools/testrunner/local/
H A Dutils.py141 ('implementation', ctypes.c_int),
145 if cfg.implementation == 0x4000:
147 elif cfg.implementation == 0x8000:
149 elif cfg.implementation == 0x10000:
151 elif cfg.implementation == 0x20000:
153 elif cfg.implementation == 0x40000:
/third_party/rust/crates/cxx/tests/ui/
H A Draw_ident_namespace.rs7 type Id = type_id!("org::r#box::implementation::QuotedRaw");
15 type Id = type_id!("org::box::implementation::QuotedKeyword");
23 type Id = type_id!(org::r#box::implementation::UnquotedRaw);
31 type Id = type_id!(org::box::implementation::UnquotedKeyword);
38 #[namespace = "org::r#box::implementation"]
41 #[namespace = "org::box::implementation"]
44 #[namespace = org::r#box::implementation]
48 // #[namespace = org::box::implementation]
/third_party/vulkan-loader/tests/
H A Dloader_unknown_ext_tests.cpp65 of the called function as a parameter, this is necessary to allow a generic layer implementation, as the layer must look up
144 // Add data to the function_list, which could be a driver or a layer list of implementation functions.
801 static VKAPI_ATTR uint32_t VKAPI_CALL implementation(DispatchableHandle, uint32_t a, uint32_t b) { return a + b; } in implementation() function
805 decltype(implementation)* func = in intercept()
806 reinterpret_cast<decltype(&implementation)>(LayerType::layer->get_custom_intercept_function(LayerType::name)); in intercept()
814 decltype(implementation)* returned_func = loader.load(parent, name); in check()
821 decltype(implementation)* returned_func = loader.load(parent, name); in check_no_implementation()
829 static VKAPI_ATTR uint32_t VKAPI_CALL implementation(DispatchableHandle, uint32_t a, uint32_t b, char c) { return a + b + c; } in implementation() function
833 decltype(implementation)* func = in intercept()
834 reinterpret_cast<decltype(&implementation)>(LayerTyp in intercept()
858 static VKAPI_ATTR float VKAPI_CALL implementation(DispatchableHandle, int* ptr_a, int* ptr_b) { implementation() function
893 static VKAPI_ATTR float VKAPI_CALL implementation(DispatchableHandle, int* ptr_a, float* ptr_b, uint32_t c) { implementation() function
931 static VKAPI_ATTR VkResult VKAPI_CALL implementation(DispatchableHandle, VkPhysicalDeviceLimits* limits, uint32_t* count, implementation() function
[all...]
/third_party/node/deps/npm/node_modules/function-bind/
H A Dindex.js3 var implementation = require('./implementation'); variable
5 module.exports = Function.prototype.bind || implementation;
/third_party/rust/crates/cxx/gen/cmd/src/gen/
H A Dmod.rs80 /// The bytes of a C++ implementation file (e.g. .cc, cpp etc.)
81 pub implementation: Vec<u8>,
174 // Some callers may wish to generate both header and implementation from the
177 let (mut header, mut implementation) = Default::default();
182 implementation = write::gen(apis, types, opt, false);
186 implementation,
/third_party/rust/crates/cxx/gen/src/
H A Dmod.rs80 /// The bytes of a C++ implementation file (e.g. .cc, cpp etc.)
81 pub implementation: Vec<u8>,
174 // Some callers may wish to generate both header and implementation from the
177 let (mut header, mut implementation) = Default::default();
182 implementation = write::gen(apis, types, opt, false);
186 implementation,
/third_party/rust/crates/cxx/gen/lib/src/gen/
H A Dmod.rs80 /// The bytes of a C++ implementation file (e.g. .cc, cpp etc.)
81 pub implementation: Vec<u8>,
174 // Some callers may wish to generate both header and implementation from the
177 let (mut header, mut implementation) = Default::default();
182 implementation = write::gen(apis, types, opt, false);
186 implementation,
/third_party/rust/crates/cxx/gen/build/src/gen/
H A Dmod.rs80 /// The bytes of a C++ implementation file (e.g. .cc, cpp etc.)
81 pub implementation: Vec<u8>,
174 // Some callers may wish to generate both header and implementation from the
177 let (mut header, mut implementation) = Default::default();
182 implementation = write::gen(apis, types, opt, false);
186 implementation,
/third_party/node/deps/simdutf/
H A Dsimdutf.cpp4 /* begin file src/implementation.cpp */
53 /* begin file src/simdutf/arm64/implementation.h */
65 class implementation final : public simdutf::implementation {
67 simdutf_really_inline implementation() : simdutf::implementation("arm64", "ARM NEON", internal::instruction_set::NEON) {} in implementation() function in simdutf::arm64::final
150 /* end file src/simdutf/arm64/implementation.h */
1103 // Visual Studio 2019 technically supports VBMI2, but the implementation
1250 /* begin file src/simdutf/icelake/implementation.h */
1262 class implementation fina
1264 simdutf_really_inline implementation() : simdutf::implementation( implementation() function in simdutf::icelake::final
1470 simdutf_really_inline implementation() : simdutf::implementation( implementation() function in simdutf::haswell::final
2405 simdutf_really_inline implementation() : simdutf::implementation("westmere", "Intel/AMD SSE4.2", internal::instruction_set::SSE42) {} implementation() function in simdutf::westmere::final
3344 simdutf_really_inline implementation() implementation() function in simdutf::ppc64::final
3999 simdutf_really_inline implementation() : simdutf::implementation( implementation() function in simdutf::fallback::final
[all...]
/third_party/rust/crates/cxx/tests/
H A Dcxx_gen.rs20 let output = str::from_utf8(&generated.implementation).unwrap(); in test_extern_c_function()
32 let output = str::from_utf8(&generated.implementation).unwrap(); in test_impl_annotation()
/third_party/python/Python/
H A Dpytime.c883 info->implementation = "GetSystemTimeAsFileTime()"; in py_get_system_clock()
924 info->implementation = "clock_gettime(CLOCK_REALTIME)"; in py_get_system_clock()
957 info->implementation = "gettimeofday()"; in py_get_system_clock()
1075 info->implementation = "GetTickCount64()"; in py_get_monotonic_clock()
1097 info->implementation = "mach_absolute_time()"; in py_get_monotonic_clock()
1125 info->implementation = "gethrtime()"; in py_get_monotonic_clock()
1135 const char *implementation = "clock_gettime(CLOCK_HIGHRES)"; in py_get_monotonic_clock() local
1138 const char *implementation = "clock_gettime(CLOCK_MONOTONIC)"; in py_get_monotonic_clock() local
1156 info->implementation = implementation; in py_get_monotonic_clock()
[all...]
/third_party/python/Tools/scripts/
H A Dimport_diagnostics.py25 for name, description, implementation, add_args in COMMANDS:
27 cmd.set_defaults(command=implementation)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DAtomic.cpp40 # error No memory fence implementation for your platform! in MemoryFence()
58 # error No compare-and-swap implementation for your platform! in CompareAndSwap()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DAtomic.cpp39 # error No memory fence implementation for your platform! in MemoryFence()
57 # error No compare-and-swap implementation for your platform! in CompareAndSwap()
/third_party/skia/third_party/externals/libjpeg-turbo/simd/nasm/
H A Djsimdcfg.inc.h69 ; On this SIMD implementation, this must be 'unsigned char'. variable
78 ; On this SIMD implementation, this must be 'short'. variable
84 ; On this SIMD implementation, this must be 'unsigned int'. variable
/third_party/python/Modules/
H A Dtimemodule.c158 info->implementation = "clock()"; in _PyTime_GetClockWithInfo()
519 /* XXX: the following implementation will not work for tm_year < 1970.
942 /* Inspired by Open Group reference implementation available at
1228 info->implementation = "GetProcessTimes()";
1266 info->implementation = function;
1292 info->implementation = "getrusage(RUSAGE_SELF)";
1348 info->implementation = "times()";
1421 info->implementation = "GetThreadTimes()";
1456 info->implementation = "thread_cputime()";
1473 info->implementation
[all...]
/third_party/python/Lib/distutils/tests/
H A Dtest_build_py.py65 self.assertIn("__init__.%s.pyc" % sys.implementation.cache_tag,
107 ['boiledeggs.%s.pyc' % sys.implementation.cache_tag])
125 expect = 'boiledeggs.{}.opt-1.pyc'.format(sys.implementation.cache_tag)
/third_party/python/Lib/test/test_importlib/
H A Dtest_util.py560 tag = sys.implementation.cache_tag
562 @unittest.skipIf(sys.implementation.cache_tag is None,
563 'requires sys.implementation.cache_tag not be None')
575 with support.swap_attr(sys.implementation, 'cache_tag', None):
683 @unittest.skipIf(sys.implementation.cache_tag is None,
684 'requires sys.implementation.cache_tag not be None')
692 @unittest.skipIf(sys.implementation.cache_tag is None,
693 'requires sys.implementation.cache_tag to not be None')
703 # If sys.implementation.cache_tag is None, raise NotImplementedError.
705 with support.swap_attr(sys.implementation, 'cache_ta
[all...]
/third_party/skia/tools/sk_app/
H A DDawnWindowContext.cpp46 swapChainDesc.implementation = reinterpret_cast<int64_t>(&fSwapChainImplementation); in initializeContext()
96 swapChainDesc.implementation = reinterpret_cast<int64_t>(&fSwapChainImplementation); in resize()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DSwapChain.cpp60 if (descriptor->implementation != 0) { in ValidateSwapChainDescriptor()
62 "Exactly one of surface or implementation must be set"); in ValidateSwapChainDescriptor()
65 reinterpret_cast<DawnSwapChainImplementation*>(descriptor->implementation); in ValidateSwapChainDescriptor()
73 "At least one of surface or implementation must be set"); in ValidateSwapChainDescriptor()
145 *reinterpret_cast<DawnSwapChainImplementation*>(descriptor->implementation)) { in OldSwapChainBase()
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/
H A Djfdctint-avx2.asm17 ; This file contains a slower but more accurate integer implementation of the
138 ; (This implementation)
164 ; (This implementation)
182 ; (This implementation)
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
H A Djfdctint-avx2.asm17 ; This file contains a slower but more accurate integer implementation of the
138 ; (This implementation)
164 ; (This implementation)
182 ; (This implementation)
/third_party/rust/crates/cxx/gen/lib/tests/
H A Dtest.rs20 assert!(!code.implementation.is_empty()); in test_positive()
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_idet.asm29 ; 16bit implementation that does 4/8-pixels at a time
79 ; SSE2 8-bit implementation that does 16-bytes at a time:

Completed in 28 milliseconds

1234567