Home
last modified time | relevance | path

Searched full:part (Results 23501 - 23525 of 23825) sorted by relevance

1...<<941942943944945946947948949950>>...953

/third_party/ffmpeg/libavformat/
H A Dmxfdec.c5 * This file is part of FFmpeg.
/third_party/ffmpeg/libavfilter/
H A Dvf_waveform.c5 * This file is part of FFmpeg.
/third_party/eudev/hwdb/
H A D20-acpi-vendor.hwdb1 # This file is part of systemd.
/third_party/ffmpeg/tests/ref/fate/
H A Dflv-demux608 format|filename=Enigma_Principles_of_Lust-part.flv|nb_streams=2|nb_programs=0|format_name=flv|start_time=0.000000|duration=210.209999|size=512000|bit_rate=19485|probe_score=100|tag:hasKeyframes=true|tag:hasMetadata=true|tag:datasize=11970544|tag:hasVideo=true|tag:canSeekToEnd=false|tag:lasttimestamp=210|tag:lastkeyframetimestamp=210|tag:audiosize=1791332|tag:hasAudio=true|tag:audiodelay=0|tag:videosize=10176110|tag:metadatadate=2011-02-27T11:00:33.125000Z|tag:metadatacreator=inlet media FLVTool2 v1.0.6 - http://www.inlet-media.de/flvtool2|tag:hasCuePoints=false
/third_party/backends/ChangeLogs/
H A DChangeLog-1.0.28245 genesys: Preparation for infrared channel support on 8600F (part 2)
/third_party/alsa-lib/src/
H A Dconf.c69 (they remain as part of the string). For example:
/third_party/backends/backend/genesys/
H A Dtables_sensor.cpp5 This file is part of the SANE package.
/third_party/backends/sanei/
H A Dsanei_scsi.c4 This file is part of the SANE package.
/third_party/backends/tools/
H A Dcheck-usb-chip.c10 This file is part of the SANE package.
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSimpleDateFormat.java2657 // This part is a problem: When we call parsedDate.after, we compute the time. in parse()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcbiditst.c3597 /* this part would have to be modified for UTF-x */ in getStringFromDirProps()
/third_party/icu/icu4c/source/test/intltest/
H A Dloctest.cpp67 // (part of Euro support).
H A Drbbitst.cpp2462 // Note: STerm | ATerm are added to the negated part of the expression by a in next()
/third_party/FreeBSD/sys/dev/usb/implementation/
H A Dusbdevs.h3824 /* Green House and CompUSA OEM this part */
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DSimpleDateFormat.java2634 // This part is a problem: When we call parsedDate.after, we compute the time. in parse()
/third_party/icu/icu4c/source/i18n/
H A Dsmpdtfmt.cpp2539 // This part is a problem: When we call parsedDate.after, we compute the time. in parse()
/third_party/mesa3d/src/amd/llvm/
H A Dac_llvm_build.c49 /* Loop exit or next part of if/else/endif. */
/third_party/mesa3d/src/imgui/
H A Dimstb_truetype.h798 // Gets the bounding box of the visible part of the glyph, in unscaled coordinates
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_state.c132 sctx->shader.ps.cso ? sctx->shader.ps.current->key.ps.part.epilog.spi_shader_col_format in si_emit_cb_render_state()
/third_party/node/doc/api/
H A Dworker_threads.html875 are part of the channel.</p>
H A Dutil.json222 "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\">&lt;string&gt;</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>"
H A Dnet.html1623 buffer. Returns <code>false</code> if all or part of the data was queued in user memory.
/third_party/node/deps/v8/src/wasm/
H A Dfunction-body-decoder-impl.h2152 // The {Zone} is implicitly stored in the {ZoneAllocator} which is part of
/third_party/openGLES/extensions/EXT/
H A DEXT_tessellation_shader.txt2726 18 04/20/15 Jon Leech Remove "per-patch" part of description of
/third_party/musl/porting/linux/user/ldso/
H A Ddynlink.c3084 * not become part of the global namespace. */ in __dls3()

Completed in 239 milliseconds

1...<<941942943944945946947948949950>>...953