Searched full:path (Results 33626 - 33650 of 33860) sorted by relevance
1...<<1341134213431344134513461347134813491350>>...1355
| /third_party/googletest/googlemock/include/gmock/ |
| H A D | gmock-matchers.h | 1590 // The expected path here is that the matcher should match (i.e. that most in operator ()()
|
| /third_party/icu/icu4c/source/test/intltest/ |
| H A D | transtst.cpp | 291 // Now test the failure path in TestInstantiation()
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/ |
| H A D | UCharacter.java | 57 * class path, since it contains data files which supply the information used
|
| /third_party/mbedtls/library/ |
| H A D | psa_crypto.c | 6032 /* Go through the error path to wipe all confidential data now in psa_key_derivation_output_bytes()
|
| /third_party/mesa3d/src/imgui/ |
| H A D | imstb_truetype.h | 4479 int winding = stbtt__compute_crossings_x(x_gspace, y_gspace, num_verts, verts); // @OPTIMIZE: this could just be a rasterization, but needs to be line vs. non-tesselated curves so a new path
|
| /third_party/mesa3d/src/gallium/drivers/radeonsi/ |
| H A D | si_state.c | 5024 * into account would complicate the fast path (where everything in si_create_vertex_elements()
|
| H A D | si_state_shaders.cpp | 2663 * This path is also used for most shaders that don't need multiple
|
| /third_party/node/doc/api/ |
| H A D | util.json | 222 "desc": "<p>The <code>util.format()</code> method returns a formatted string using the first argument\nas a <code>printf</code>-like format string which can contain zero or more format\nspecifiers. Each specifier is replaced with the converted value from the\ncorresponding argument. Supported specifiers are:</p>\n<ul>\n<li><code>%s</code>: <code>String</code> will be used to convert all values except <code>BigInt</code>, <code>Object</code>\nand <code>-0</code>. <code>BigInt</code> values will be represented with an <code>n</code> and Objects that\nhave no user defined <code>toString</code> function are inspected using <code>util.inspect()</code>\nwith options <code>{ depth: 0, colors: false, compact: 3 }</code>.</li>\n<li><code>%d</code>: <code>Number</code> will be used to convert all values except <code>BigInt</code> and\n<code>Symbol</code>.</li>\n<li><code>%i</code>: <code>parseInt(value, 10)</code> is used for all values except <code>BigInt</code> and\n<code>Symbol</code>.</li>\n<li><code>%f</code>: <code>parseFloat(value)</code> is used for all values expect <code>Symbol</code>.</li>\n<li><code>%j</code>: JSON. Replaced with the string <code>'[Circular]'</code> if the argument contains\ncircular references.</li>\n<li><code>%o</code>: <code>Object</code>. A string representation of an object with generic JavaScript\nobject formatting. Similar to <code>util.inspect()</code> with options\n<code>{ showHidden: true, showProxy: true }</code>. This will show the full object\nincluding non-enumerable properties and proxies.</li>\n<li><code>%O</code>: <code>Object</code>. A string representation of an object with generic JavaScript\nobject formatting. Similar to <code>util.inspect()</code> without options. This will show\nthe full object not including non-enumerable properties and proxies.</li>\n<li><code>%c</code>: <code>CSS</code>. This specifier is ignored and will skip any CSS passed in.</li>\n<li><code>%%</code>: single percent sign (<code>'%'</code>). This does not consume an argument.</li>\n<li>Returns: <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type\" class=\"type\"><string></a> The formatted string</li>\n</ul>\n<p>If a specifier does not have a corresponding argument, it is not replaced:</p>\n<pre><code class=\"language-js\">util.format('%s:%s', 'foo');\n// Returns: 'foo:%s'\n</code></pre>\n<p>Values that are not part of the format string are formatted using\n<code>util.inspect()</code> if their type is not <code>string</code>.</p>\n<p>If there are more arguments passed to the <code>util.format()</code> method than the\nnumber of specifiers, the extra arguments are concatenated to the returned\nstring, separated by spaces:</p>\n<pre><code class=\"language-js\">util.format('%s:%s', 'foo', 'bar', 'baz');\n// Returns: 'foo:bar baz'\n</code></pre>\n<p>If the first argument does not contain a valid format specifier, <code>util.format()</code>\nreturns a string that is the concatenation of all arguments separated by spaces:</p>\n<pre><code class=\"language-js\">util.format(1, 2, 3);\n// Returns: '1 2 3'\n</code></pre>\n<p>If only one argument is passed to <code>util.format()</code>, it is returned as it is\nwithout any formatting:</p>\n<pre><code class=\"language-js\">util.format('%% %s');\n// Returns: '%% %s'\n</code></pre>\n<p><code>util.format()</code> is a synchronous method that is intended as a debugging tool.\nSome input values can have a significant performance overhead that can block the\nevent loop. Use this function with care and never in a hot code path.</p>"
|
| /third_party/openGLES/extensions/EXT/ |
| H A D | EXT_direct_state_access.txt | 4008 It is deemed undesirable for an non-EXT_direct_state_access path
|
| /third_party/nghttp2/third-party/llhttp/src/ |
| H A D | llhttp.c | 8735 state->reason = "Invalid char in url path"; in llhttp__internal__run()
|
| /third_party/node/deps/v8/src/builtins/mips/ |
| H A D | builtins-mips.cc | 1687 // We should never take the if_return path. in Generate_InterpreterEnterAtNextBytecode()
|
| /third_party/node/deps/v8/src/builtins/ia32/ |
| H A D | builtins-ia32.cc | 1675 // We should never take the if_return path. in Generate_InterpreterEnterAtNextBytecode()
|
| /third_party/node/deps/v8/src/init/ |
| H A D | bootstrapper.cc | 2581 // Store the initial RegExp.prototype map. This is used in fast-path in InitializeGlobal()
|
| /third_party/node/deps/v8/src/execution/ |
| H A D | isolate.cc | 5379 // We inline fast paths assuming certain locales. Since this path is rarely in ThrowInternal()
|
| /third_party/node/deps/v8/src/parsing/ |
| H A D | parser-base.h | 4063 // We should never get identifier patterns for the non-initializer path, in ParseVariableDeclarations()
|
| /third_party/node/deps/v8/src/wasm/baseline/ia32/ |
| H A D | liftoff-assembler-ia32.h | 1305 // Default path. in emit_i32_sub()
|
| /third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
| H A D | aesv8-armx.pl | 26 # compensated by implementing dedicated code path for 128-bit
|
| H A D | aes-586.pl | 37 # critical path... At least eliminating scaling resulted in 2.8x RC4
|
| /third_party/node/deps/v8/ |
| H A D | BUILD.bazel | 3330 --config_value protocol.path=$(location :include/js_protocol.pdl) \
|
| /third_party/rust/crates/clap/src/builder/ |
| H A D | arg.rs | 3880 if type_id == crate::parser::AnyValueId::of::<std::path::PathBuf>() { in get_value_hint()
|
| /third_party/python/Tools/peg_generator/data/ |
| H A D | top-pypi-packages-365-days.json | 4644 "project": "path-py"
|
| /third_party/pcre2/pcre2/src/ |
| H A D | pcre2_dfa_match.c | 291 current data for an active path through the match tree. It must consist
|
| /third_party/openssl/crypto/aes/asm/ |
| H A D | aesv8-armx.pl | 26 # compensated by implementing dedicated code path for 128-bit
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
| H A D | vktBindingDescriptorBufferTests.cpp | 4221 // Fill in the descriptor data structure. It can be used by the regular and templated update path.
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/ |
| H A D | vktRayQueryBuiltinTests.cpp | 1753 // This path is taken for barycentric coords, which can be returned in any order. in verify()
|
Completed in 212 milliseconds
1...<<1341134213431344134513461347134813491350>>...1355