/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ |
H A D | vktTestPackage.cpp | 862 errThread->join(); in runTestsInSubprocess()
|
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluShaderLibrary.cpp | 1588 ShaderParser subParser (m_archive, de::FilePath::join(de::FilePath(m_filename).getDirName(), importFileName).getPath(), m_caseFactory); in parseImport()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | js-call-reducer.cc | 2668 // Join the exception edges. 2679 // Join control paths. 3194 // Join the exception edges. 3260 // Join the exception edges. 3942 // Join the exception edges.
|
/third_party/skia/third_party/externals/libwebp/ |
H A D | ChangeLog | 1049 c7f66c82 Merge "utils/thread.c,cosmetics: join a few lines" 1051 39f4ffbc utils/thread.c,cosmetics: join a few lines 1480 2b9d2495 Merge "rescaler: cosmetics, join two lines" 1486 acde0aae rescaler: cosmetics, join two lines 3615 f7ae5e37 cosmetics: join line
|
/third_party/skia/third_party/externals/freetype/docs/oldlogs/ |
H A D | ChangeLog.24 | 3547 o A new line join style, FT_STROKER_LINEJOIN_MITER_FIXED, has been 3574 The intersection point can only be used if the join is between 3589 because the line join will always cover the negative sector.) 3591 o When a curve is split, the arcs may not join smoothly (especially 3599 `basically a point'. This could cause a spurious join to be
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | nl80211_copy.h | 526 * @NL80211_CMD_JOIN_IBSS: Join a new IBSS -- given at least an SSID and a 696 * @NL80211_CMD_JOIN_MESH: Join a mesh. The mesh ID must be given, and initial 910 * @NL80211_CMD_JOIN_OCB: Join the OCB network. The center frequency and 938 * has been started, the NAN interface will create or join a 4063 * Mesh setup parameters. These are used to start/join a mesh and cannot be
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | nl80211_copy.h | 595 * @NL80211_CMD_JOIN_IBSS: Join a new IBSS -- given at least an SSID and a 780 * @NL80211_CMD_JOIN_MESH: Join a mesh. The mesh ID must be given, and initial 994 * @NL80211_CMD_JOIN_OCB: Join the OCB network. The center frequency and 1022 * has been started, the NAN interface will create or join a 4465 * Mesh setup parameters. These are used to start/join a mesh and cannot be
|
/third_party/node/lib/ |
H A D | fs.js | 1434 ArrayPrototypePush(pathsQueue, pathModule.join(dirent.path, dirent.name)); 1439 const resultPath = pathModule.join(path, readdirResult[i]);
|
/third_party/node/doc/api/ |
H A D | events.json | 1066 "desc": "<p>Synchronously calls each of the listeners registered for the event named\n<code>eventName</code>, in the order they were registered, passing the supplied arguments\nto each.</p>\n<p>Returns <code>true</code> if the event had listeners, <code>false</code> otherwise.</p>\n<pre><code class=\"language-mjs\">import { EventEmitter } from 'node:events';\nconst myEmitter = new EventEmitter();\n\n// First listener\nmyEmitter.on('event', function firstListener() {\n console.log('Helloooo! first listener');\n});\n// Second listener\nmyEmitter.on('event', function secondListener(arg1, arg2) {\n console.log(`event with parameters ${arg1}, ${arg2} in second listener`);\n});\n// Third listener\nmyEmitter.on('event', function thirdListener(...args) {\n const parameters = args.join(', ');\n console.log(`event with parameters ${parameters} in third listener`);\n});\n\nconsole.log(myEmitter.listeners('event'));\n\nmyEmitter.emit('event', 1, 2, 3, 4, 5);\n\n// Prints:\n// [\n// [Function: firstListener],\n// [Function: secondListener],\n// [Function: thirdListener]\n// ]\n// Helloooo! first listener\n// event with parameters 1, 2 in second listener\n// event with parameters 1, 2, 3, 4, 5 in third listener\n</code></pre>\n<pre><code class=\"language-cjs\">const EventEmitter = require('node:events');\nconst myEmitter = new EventEmitter();\n\n// First listener\nmyEmitter.on('event', function firstListener() {\n console.log('Helloooo! first listener');\n});\n// Second listener\nmyEmitter.on('event', function secondListener(arg1, arg2) {\n console.log(`event with parameters ${arg1}, ${arg2} in second listener`);\n});\n// Third listener\nmyEmitter.on('event', function thirdListener(...args) {\n const parameters = args.join(', ');\n console.log(`event with parameters ${parameters} in third listener`);\n});\n\nconsole.log(myEmitter.listeners('event'));\n\nmyEmitter.emit('event', 1, 2, 3, 4, 5);\n\n// Prints:\n// [\n// [Function: firstListener],\n// [Function: secondListener],\n// [Function: thirdListener]\n// ]\n// Helloooo! first listener\n// event with parameters 1, 2 in second listener\n// event with parameters 1, 2, 3, 4, 5 in third listener\n</code></pre>"
|
H A D | events.md | 546 const parameters = args.join(', '); 579 const parameters = args.join(', ');
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_emit_gk110.cpp | 2717 insn->join = 1; in emitInstruction() 2768 if (insn->join) in emitInstruction()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | compiler.cc | 2933 // Join with background thread and finalize compilation. in Compile() 2936 background_compile_thread.Join(); in Compile()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | property-sequences.cc | 42 buffer.push(' ' + codePoints.join(', ') + ', 0,'); 46 `${ buffer.join('\n') }\n 0 // null-terminating the list\n};\n`;
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha1-mb-x86_64.pl | 1608 return ".byte\t".join(',',@opcode); 1626 return ".byte\t".join(',',@opcode);
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 135 $self->{SOURCE} = join '', @{ $self->{SOURCE} }; 517 eval { ($z = join('', @_)), eval '#' . substr($z, 0, 0); 1 } # LOD
|
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
H A D | aesni-sha256-x86_64.pl | 295 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n"; 1794 return ".byte\t".join(',',@opcode);
|
/third_party/python/Lib/ |
H A D | _pyio.py | 1114 return b"".join(chunks) or nodata_val 1136 out = b"".join(chunks)
|
/third_party/python/Doc/whatsnew/ |
H A D | 2.4.rst | 50 >>> ''.join(a) # convert back into a string 970 you shouldn't rely on it; using the :meth:`join` method of strings is still
|
/third_party/openssl/crypto/aes/asm/ |
H A D | aesni-sha256-x86_64.pl | 295 $code .= "\t$opcode\t".join(',',$arg,reverse @_)."\n"; 1794 return ".byte\t".join(',',@opcode);
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkRayTracingUtil.cpp | 474 // there is not need to join any threads to the deferred operation, in finishDeferredOperation() 509 threads[threadNdx]->join(); in finishDeferredOperation()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiObjectManagementTests.cpp | 138 using de::Thread::join; 183 (*threadIter)->join(); in run()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiObjectManagementTests.cpp | 138 using de::Thread::join; 183 (*threadIter)->join(); in run()
|
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 135 $self->{SOURCE} = join '', @{ $self->{SOURCE} }; 517 eval { ($z = join('', @_)), eval '#' . substr($z, 0, 0); 1 } # LOD
|
/third_party/openssl/crypto/sha/asm/ |
H A D | sha1-mb-x86_64.pl | 1608 return ".byte\t".join(',',@opcode); 1626 return ".byte\t".join(',',@opcode);
|
/third_party/python/Lib/test/ |
H A D | test_generators.py | 1663 print("|" + "|".join(squares) + "|") 1859 print("|" + "|".join(row) + "|")
|