/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCInstrVSX.td | 1759 LE element can just be used (i.e. LE_BYTE_2 == BE_BYTE_13).
|
/third_party/vixl/src/aarch64/ |
H A D | disasm-aarch64.cc | 7366 c += 4; // Skip the characters we just read. in Disassembler()
|
H A D | logic-aarch64.cc | 4731 // the addition term, so just return that.
|
/third_party/typescript/src/compiler/ |
H A D | diagnosticMessages.json | 4269 "Allow default imports from modules with no default export. This does not affect code emit, just typechecking.": {
|
/third_party/typescript/src/compiler/factory/ |
H A D | nodeFactory.ts | 2384 // we end up with `[1, 2, ,]` instead of `[1, 2, ]` otherwise the `OmittedExpression` will just end up being treated like
|
/third_party/protobuf/php/ext/google/protobuf/ |
H A D | php-upb.c | 2096 * They're not really 'magic', they just happen to work well. */ in upb_murmur_hash2()
|
/third_party/rust/crates/regex/tests/ |
H A D | crates_regex.rs | 1372 // just-0.3.12: "^([^=]+)=(.*)$"
|
/third_party/spirv-tools/test/val/ |
H A D | val_image_test.cpp | 62 // In 1.4, the entry point must list all module-scope variables used. Just in GenerateShaderCode()
|
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan_format_traits.hpp | 373 // The class of the format (can't be just named "class"!)
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/query_pool/ |
H A D | vktQueryPoolStatisticsTests.cpp | 3932 /* This is just to check that driver doesn't return garbage for the partial, no wait case.
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/ |
H A D | vktRayTracingMiscTests.cpp | 8664 // Barrier for the output buffer just in case (no writes should take place). in nullMissInstance()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | p2p_supplicant.c | 9474 * The GO was just started or completed channel switch, no need in wpas_p2p_consider_moving_gos()
|
/third_party/backends/testsuite/tools/data/ |
H A D | ascii.ref | 1914 comment `Just an N640P in a different box?' 13007 comment `Not supported by SANE. However, it's detected as mass storage device so just mounting it is reported to work. See link for device data.'
|
H A D | xml.ref | 2230 <comment>Just an N640P in a different box?</comment> 15169 <comment>Not supported by SANE. However, it's detected as mass storage device so just mounting it is reported to work. See link for device data.</comment>
|
H A D | testfile.desc | 1633 :comment "Just an N640P in a different box?" 11495 :comment "Not supported by SANE. However, it's detected as mass storage device so just mounting it is reported to work. See link for device data."
|
H A D | html-backends-split.ref | 2172 <td>Just an N640P in a different box?</td> 13612 <td>Not supported by SANE. However, it's detected as mass storage device so just mounting it is reported to work. See link for device data.</td>
|
/third_party/node/doc/api/ |
H A D | fs.json | 6442 "desc": "<p>Watch for changes on <code>filename</code>. The callback <code>listener</code> will be called each\ntime the file is accessed.</p>\n<p>The <code>options</code> argument may be omitted. If provided, it should be an object. The\n<code>options</code> object may contain a boolean named <code>persistent</code> that indicates\nwhether the process should continue to run as long as files are being watched.\nThe <code>options</code> object may specify an <code>interval</code> property indicating how often the\ntarget should be polled in milliseconds.</p>\n<p>The <code>listener</code> gets two arguments the current stat object and the previous\nstat object:</p>\n<pre><code class=\"language-mjs\">import { watchFile } from 'node:fs';\n\nwatchFile('message.text', (curr, prev) => {\n console.log(`the current mtime is: ${curr.mtime}`);\n console.log(`the previous mtime was: ${prev.mtime}`);\n});\n</code></pre>\n<p>These stat objects are instances of <code>fs.Stat</code>. If the <code>bigint</code> option is <code>true</code>,\nthe numeric values in these objects are specified as <code>BigInt</code>s.</p>\n<p>To be notified when the file was modified, not just accessed, it is necessary\nto compare <code>curr.mtimeMs</code> and <code>prev.mtimeMs</code>.</p>\n<p>When an <code>fs.watchFile</code> operation results in an <code>ENOENT</code> error, it\nwill invoke the listener once, with all the fields zeroed (or, for dates, the\nUnix Epoch). If the file is created later on, the listener will be called\nagain, with the latest stat objects. This is a change in functionality since\nv0.10.</p>\n<p>Using <a href=\"#fswatchfilename-options-listener\"><code>fs.watch()</code></a> is more efficient than <code>fs.watchFile</code> and\n<code>fs.unwatchFile</code>. <code>fs.watch</code> should be used instead of <code>fs.watchFile</code> and\n<code>fs.unwatchFile</code> when possible.</p>\n<p>When a file being watched by <code>fs.watchFile()</code> disappears and reappears,\nthen the contents of <code>previous</code> in the second callback event (the file's\nreappearance) will be the same as the contents of <code>previous</code> in the first\ncallback event (its disappearance).</p>\n<p>This happens when:</p>\n<ul>\n<li>the file is deleted, followed by a restore</li>\n<li>the file is renamed and then renamed a second time back to its original name</li>\n</ul>" 10655 "desc": "<p>On Windows, <code>file:</code> <a href=\"url.html#the-whatwg-url-api\" class=\"type\"><URL></a>s with a host name convert to UNC paths, while <code>file:</code>\n<a href=\"url.html#the-whatwg-url-api\" class=\"type\"><URL></a>s with drive letters convert to local absolute paths. <code>file:</code> <a href=\"url.html#the-whatwg-url-api\" class=\"type\"><URL></a>s\nwith no host name and no drive letter will result in an error:</p>\n<pre><code class=\"language-mjs\">import { readFileSync } from 'node:fs';\n// On Windows :\n\n// - WHATWG file URLs with hostname convert to UNC path\n// file://hostname/p/a/t/h/file => \\\\hostname\\p\\a\\t\\h\\file\nreadFileSync(new URL('file://hostname/p/a/t/h/file'));\n\n// - WHATWG file URLs with drive letters convert to absolute path\n// file:///C:/tmp/hello => C:\\tmp\\hello\nreadFileSync(new URL('file:///C:/tmp/hello'));\n\n// - WHATWG file URLs without hostname must have a drive letters\nreadFileSync(new URL('file:///notdriveletter/p/a/t/h/file'));\nreadFileSync(new URL('file:///c/p/a/t/h/file'));\n// TypeError [ERR_INVALID_FILE_URL_PATH]: File URL path must be absolute\n</code></pre>\n<p><code>file:</code> <a href=\"url.html#the-whatwg-url-api\" class=\"type\"><URL></a>s with drive letters must use <code>:</code> as a separator just after\nthe drive letter. Using another separator will result in an error.</p>\n<p>On all other platforms, <code>file:</code> <a href=\"url.html#the-whatwg-url-api\" class=\"type\"><URL></a>s with a host name are unsupported and\nwill result in an error:</p>\n<pre><code class=\"language-mjs\">import { readFileSync } from 'node:fs';\n// On other platforms:\n\n// - WHATWG file URLs with hostname are unsupported\n// file://hostname/p/a/t/h/file => throw!\nreadFileSync(new URL('file://hostname/p/a/t/h/file'));\n// TypeError [ERR_INVALID_FILE_URL_PATH]: must be absolute\n\n// - WHATWG file URLs convert to absolute path\n// file:///tmp/hello => /tmp/hello\nreadFileSync(new URL('file:///tmp/hello'));\n</code></pre>\n<p>A <code>file:</code> <a href=\"url.html#the-whatwg-url-api\" class=\"type\"><URL></a> having encoded slash characters will result in an error on all\nplatforms:</p>\n<pre><code class=\"language-mjs\">import { readFileSync } from 'node:fs';\n\n// On Windows\nreadFileSync(new URL('file:///C:/p/a/t/h/%2F'));\nreadFileSync(new URL('file:///C:/p/a/t/h/%2f'));\n/* TypeError [ERR_INVALID_FILE_URL_PATH]: File URL path must not include encoded\n\\ or / characters */\n\n// On POSIX\nreadFileSync(new URL('file:///p/a/t/h/%2F'));\nreadFileSync(new URL('file:///p/a/t/h/%2f'));\n/* TypeError [ERR_INVALID_FILE_URL_PATH]: File URL path must not include encoded\n/ characters */\n</code></pre>\n<p>On Windows, <code>file:</code> <a href=\"url.html#the-whatwg-url-api\" class=\"type\"><URL></a>s having encoded backslash will result in an error:</p>\n<pre><code class=\"language-mjs\">import { readFileSync } from 'node:fs';\n\n// On Windows\nreadFileSync(new URL('file:///C:/path/%5C'));\nreadFileSync(new URL('file:///C:/path/%5c'));\n/* TypeError [ERR_INVALID_FILE_URL_PATH]: File URL path must not include encoded\n\\ or / characters */\n</code></pre>",
|
H A D | all.html | 6774 <code>expected</code> separated by the provided <code>operator</code>. If just the two <code>actual</code> and 8523 event in <code>net.createServer()</code>, or just a single time like in <code>fs.open()</code>. 8562 <span class="hljs-comment">// before() is called just before the resource's callback is called. It can be</span> 8567 <span class="hljs-comment">// after() is called just after the resource's callback has finished.</span> 8606 <span class="hljs-comment">// before() is called just before the resource's callback is called. It can be</span> 8611 <span class="hljs-comment">// after() is called just after the resource's callback has finished.</span> 8971 called to notify the user. The <code>before</code> callback is called just before said [all...] |
H A D | crypto.html | 3364 cryptographically random. They do not have to be secret: IVs are typically just 3461 cryptographically random. They do not have to be secret: IVs are typically just
|
/third_party/vixl/test/aarch64/ |
H A D | test-disasm-sve-aarch64.cc | 186 // Simple immediates just pass through to 'Add'. in TEST() 4656 // Other cases fall back on Adr. We test Adr separately, so here we just test in TEST()
|
/third_party/node/doc/changelogs/ |
H A D | CHANGELOG_V14.md | 104 In practical terms, **Corepack will let you use Yarn and pnpm without having to install them** - just like what currently happens with npm, which is shipped in Node.js by default. 1273 With `diagnostics_channel`, Node.js core and module authors can publish contextual data about what they are doing at a given time. This could be the hostname and query string of a mysql query, for example. Just create a named channel with `dc.channel(name)` and call `channel.publish(data)` to send the data to any listeners to that channel. 2001 * Affected Node.js versions are vulnerable to denial of service attacks when the whitelist includes “localhost6”. When “localhost6” is not present in /etc/hosts, it is just an ordinary domain that is resolved via DNS, i.e., over network. If the attacker controls the victim's DNS server or can spoof its responses, the DNS rebinding protection can be bypassed by using the “localhost6” domain. As long as the attacker uses the “localhost6” domain, they can still apply the attack described in CVE-2018-7160.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86InstrAVX512.td | 286 // ($src1) is already tied to $dst so we just use that for the preserved 5682 // There are just too many permuations due to commutability and bitcasts.
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
H A D | dhd_pcie.c | 10611 /* Just halt ARM but do not reset the core */ in dhdpcie_arm_clear_clk_req()
|
/foundation/ability/ability_runtime/services/abilitymgr/src/ |
H A D | ability_manager_service.cpp | 8581 // just need check the read permission and write permission of extension ability or data ability in CheckStaticCfgPermission()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_pattern.cpp | 8985 /* no fixed attr below, just return */ in ToJsonValue()
|