Home
last modified time | relevance | path

Searched full:like (Results 1 – 25 of 8807) sorted by relevance

12345678910>>...353

/third_party/zlib/os400/
Dzlib.inc144 D like(gzFile)
149 D like(gzFile)
154 D like(gzFile)
160 D like(gzFile)
165 D file value like(gzFile) File pointer
169 D file value like(gzFile) File pointer
174 D file value like(gzFile) File pointer
182 D file value like(gzFile) File pointer
185 D file value like(gzFile) File pointer
193 D file value like(gzFile) File pointer
[all …]
/third_party/curl/packages/OS400/
Dcurl.inc.in935 d curl_ftpssl s like(curl_usessl)
2302 d msg like(CURLMSG)
2306 d result overlay(data) like(CURLcode)
2311 d fd like(curl_socket_t)
2357 d keytype like(curl_khtype)
2361 d option like(CURLformoption)
2366 d value_num overlay(value: 8) like(curl_off_t)
2376 d age like(CURLversion)
2434 d backend like(curl_sslbackend)
2440 d filetype like(curlfiletype)
[all …]
/third_party/python/Doc/library/
Dbase64.rst28 supports encoding :term:`bytes-like objects <bytes-like object>` to ASCII
29 :class:`bytes`, and decoding :term:`bytes-like objects <bytes-like object>` or
46 Any :term:`bytes-like objects <bytes-like object>` are now accepted by all
53 Encode the :term:`bytes-like object` *s* using Base64 and return the encoded
56 Optional *altchars* must be a :term:`bytes-like object` of length 2 which
62 :exc:`TypeError` if *altchars* is not a :term:`bytes-like object`.
67 Decode the Base64 encoded :term:`bytes-like object` or ASCII string
70 Optional *altchars* must be a :term:`bytes-like object` or ASCII string
89 Encode :term:`bytes-like object` *s* using the standard Base64 alphabet
95 Decode :term:`bytes-like object` or ASCII string *s* using the standard
[all …]
Dos.path.rst21 explicitly when an application desires shell-like path expansion. (See also
64 Accepts a :term:`path-like object`.
77 Accepts a :term:`path-like object`.
93 Accepts a sequence of :term:`path-like objects <path-like object>`.
117 Accepts a :term:`path-like object`.
126 Accepts a :term:`path-like object`.
142 Accepts a :term:`path-like object`.
152 Accepts a :term:`path-like object`.
178 Accepts a :term:`path-like object`.
198 Accepts a :term:`path-like object`.
[all …]
Demail.parser.rst55 course be used to parse an email message fully contained in a :term:`bytes-like
100 Feed the parser some more data. *data* should be a :term:`bytes-like
116 Works like :class:`BytesFeedParser` except that the input to the
130 of the message are available in a :term:`bytes-like object` or file. The
156 Read all the data from the binary file-like object *fp*, parse the
176 Similar to the :meth:`parse` method, except it takes a :term:`bytes-like
177 object` instead of a file-like object. Calling this method on a
178 :term:`bytes-like object` is equivalent to wrapping *bytes* in a
188 Exactly like :class:`BytesParser`, except that *headersonly*
205 Read all the data from the text-mode file-like object *fp*, parse the
[all …]
/third_party/typescript/tests/cases/fourslash/
DquickInfoOnUnionPropertiesWithIdenticalJSDocComments01.ts4 //// /** A language id, like `typescript`. */
6 //// /** A Uri [scheme](#Uri.scheme), like `file` or `untitled`. */
8 //// /** A glob pattern, like `*.{ts,js}`. */
11 //// /** A language id, like `typescript`. */
13 //// /** A Uri [scheme](#Uri.scheme), like `file` or `untitled`. */
15 //// /** A glob pattern, like `*.{ts,js}`. */
18 //// /** A language id, like `typescript`. */
20 //// /** A Uri [scheme](#Uri.scheme), like `file` or `untitled`. */
22 //// /** A glob pattern, like `*.{ts,js}`. */
/third_party/skia/third_party/externals/tint/fuzzers/tint_regex_fuzzer/
Dwgsl_mutator.h36 /// A function that finds all the identifiers in a WGSL-like string.
37 /// @param wgsl_code - the WGSL-like string where the identifiers will be found.
44 /// and the length of all the integer literals in a WGSL-like string.
45 /// @param wgsl_code - the WGSL-like string where the int literals
55 /// @param wgsl_code - the WGSL-like string where the closing brace.
64 /// @param wgsl_code - the WGSL-like string where the functions will be
102 /// Replaces a region of a WGSL-like string of length id2_len starting
121 /// @param wgsl_code - the WGSL-like string where the replacement will occur.
127 /// A function that, given WGSL-like string and a delimiter,
128 /// generates another WGSL-like string by picking two random regions
[all …]
/third_party/typescript/tests/baselines/reference/
DcontextualTypeWithUnionTypeMembers.js27 var i1Ori2: I1<number> | I2<number> = { // Like i1
35 var i1Ori2: I1<number> | I2<number> = { // Like i2
43 var i1Ori2: I1<number> | I2<number> = { // Like i1 and i2 both
53 var arrayI1OrI2: Array<I1<number> | I2<number>> = [i1, i2, { // Like i1
61 { // Like i2
68 }, { // Like i1 and i2 both
91 // Like i1
99 // Like i2
107 // Like i1
114 // Like i2
[all …]
DcontextualTypeWithUnionTypeMembers.types59 var i1Ori2: I1<number> | I2<number> = { // Like i1
61 >{ // Like i1 commonPropertyType: "hello", commonMethodType: a=> a, commonMethodWithTypePa…
90 var i1Ori2: I1<number> | I2<number> = { // Like i2
92 >{ // Like i2 commonPropertyType: "hello", commonMethodType: a=> a, commonMethodWithTypePa…
121 var i1Ori2: I1<number> | I2<number> = { // Like i1 and i2 both
123 >{ // Like i1 and i2 both commonPropertyType: "hello", commonMethodType: a=> a, commonMeth…
163 var arrayI1OrI2: Array<I1<number> | I2<number>> = [i1, i2, { // Like i1
165Like i1 commonPropertyType: "hello", commonMethodType: a=> a, commonMethodWit…
168 >{ // Like i1 commonPropertyType: "hello", commonMethodType: a=> a, commonMeth…
197 { // Like i2
[all …]
DtaggedPrimitiveNarrowing.types17 throw new Error("This doesn't look like a hash");
18 >new Error("This doesn't look like a hash") : Error
20 >"This doesn't look like a hash" : "This doesn't look like a hash"
39 throw new Error("This doesn't look like a hash");
40 >new Error("This doesn't look like a hash") : Error
42 >"This doesn't look like a hash" : "This doesn't look like a hash"
DdestructuringArrayBindingPatternAndAssignment2.js2 // V is an array assignment pattern, S is the type Any or an array-like type (section 3.3.2), and, …
7 // V is an array assignment pattern, S is the type Any or an array-like type (section 3.3.2), and, …
8 // S is a tuple- like type (section 3.3.3) with a property named N of a type that is assignabl…
20 // V is an array assignment pattern, S is the type Any or an array-like type (section 3.3.2), and, …
21 // S is not a tuple- like type and the numeric index signature type of S is assignable to the …
47 // V is an array assignment pattern, S is the type Any or an array-like type (section 3.3.2), and, …
51 // V is an array assignment pattern, S is the type Any or an array-like type (section 3.3.2), and, …
52 // S is a tuple- like type (section 3.3.3) with a property named N of a type that is assignabl…
59 // V is an array assignment pattern, S is the type Any or an array-like type (section 3.3.2), and, …
60 // S is not a tuple- like type and the numeric index signature type of S is assignable to the …
DmoduleResolutionWithSymlinks_notInNodeModules.js5 // A symlink file acts like the real thing. So, 2 symlinks act like 2 different files.
19 // A symlink file acts like the real thing. So, 2 symlinks act like 2 different files.
27 // A symlink file acts like the real thing. So, 2 symlinks act like 2 different files.
/third_party/rust/crates/io-lifetimes/src/
Draw.rs19 /// This is a portability abstraction over Unix-like [`RawFd`] and
26 /// This is a portability abstraction over Unix-like `RawFd` and
33 /// This is a portability abstraction over Unix-like [`RawFd`] and
40 /// This is a portability abstraction over Unix-like `RawFd` and
47 /// This is a portability abstraction over Unix-like [`AsRawFd`] and Windows'
63 /// This is a portability abstraction over Unix-like `AsRawFd` and Windows'
79 /// This is a portability abstraction over Unix-like [`AsRawFd`] and Windows'
95 /// This is a portability abstraction over Unix-like `AsRawFd` and Windows'
111 /// This is a portability abstraction over Unix-like [`IntoRawFd`] and Windows'
127 /// This is a portability abstraction over Unix-like `IntoRawFd` and Windows'
[all …]
Dportability.rs15 /// This is a portability abstraction over Unix-like [`BorrowedFd`] and
22 /// This is a portability abstraction over Unix-like `BorrowedFd` and
29 /// This is a portability abstraction over Unix-like [`BorrowedFd`] and
36 /// This is a portability abstraction over Unix-like `BorrowedFd` and
43 /// This is a portability abstraction over Unix-like [`OwnedFd`] and
50 /// This is a portability abstraction over Unix-like `OwnedFd` and
57 /// This is a portability abstraction over Unix-like [`OwnedFd`] and
64 /// This is a portability abstraction over Unix-like `OwnedFd` and
71 /// This is a portability abstraction over Unix-like [`AsFd`] and Windows'
96 /// the resuting view, like this:
[all …]
/third_party/typescript/tests/cases/conformance/types/union/
DcontextualTypeWithUnionTypeMembers.ts26 var i1Ori2: I1<number> | I2<number> = { // Like i1
34 var i1Ori2: I1<number> | I2<number> = { // Like i2
42 var i1Ori2: I1<number> | I2<number> = { // Like i1 and i2 both
52 var arrayI1OrI2: Array<I1<number> | I2<number>> = [i1, i2, { // Like i1
60 { // Like i2
67 }, { // Like i1 and i2 both
90 // Like i1
98 // Like i2
106 // Like i1
113 // Like i2
/third_party/skia/third_party/externals/dawn/docs/
Ddevice_facilities.md25 …- On creation a device might want to run some GPU commands (like initializing zero-buffers), which…
32 Initialization of a device looks like the following:
35 …- `backend::Device::Initialize` creates things like the underlying device and other stuff that doe…
50 Toggles are booleans that control code paths inside of Dawn, like lazy-clearing resources or using …
51 … control, because embedders of Dawn like Chromium want to be able to surface what toggles are used…
86 For toggles that are safe to enable, like workarounds, the tests can run against the base configura…
87 For toggles that are safe to disable, like using more advanced backing API features, the tests can …
91 A number of WebGPU objects are immutable once created, and can be expensive to create, like pipelin…
93 This is also useful to be able to compare objects by pointers like `BindGroupLayouts` since two BGL…
101 …kends can create parallel tables for internal informations about formats, like what they translate…
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DParser.java42 * like an encoding error, the cause of the thrown exception will be {@code null}. However, if an
50 // (like failure reading bytes from a socket) and invalid data (encoding error) via the type of
64 * Like {@link #parseFrom(CodedInputStream)}, but also parses extensions. The extensions that you
72 * Like {@link #parseFrom(CodedInputStream)}, but does not throw an exception if the message is
78 * Like {@link #parseFrom(CodedInputStream input, ExtensionRegistryLite)}, but does not throw an
114 * Like {@link #parseFrom(ByteString)}, but does not throw an exception if the message is missing
120 * Like {@link #parseFrom(ByteString, ExtensionRegistryLite)}, but does not throw an exception if
154 * Like {@link #parseFrom(byte[], int, int)}, but does not throw an exception if the message is
161 * Like {@link #parseFrom(ByteString, ExtensionRegistryLite)}, but does not throw an exception if
169 * Like {@link #parseFrom(byte[])}, but does not throw an exception if the message is missing
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/MCTargetDesc/
DRISCVFixupKinds.h20 // instructions like lui
23 // instructions like addi
29 // instructions like auipc
32 // instructions like addi
38 // instructions like auipc
41 // instructions like lui
44 // instructions like addi
53 // tls_ie_pcrel_hi(foo) for instructions like auipc
56 // tls_gd_pcrel_hi(foo) for instructions like auipc
/third_party/pulseaudio/sonic/doc/
Dindex.md24 designed to easily be integrated into streaming voice applications, like TTS
34 to improve their productivity with free software speech engines, like espeak.
82 in debian/control like libsndfile are there to compile the sonic command-line
87 call one function, like this:
99 it like this:
112 object like this:
134 speech is played. A 2.0 value will make you sound like a chipmunk talking very
135 fast. A 0.7 value will make you sound like a giant talking slowly.
140 too. If you want to make the person sound like the same person, but talking at
149 After setting the sound parameters, you write to the stream like this:
[all …]
/third_party/cJSON/tests/unity/docs/
DThrowTheSwitchCodingStandard.md25 out there. By quirky I mean "doesn't follow standards because they feel like
39 additions like gcc extensions or specifying `@0x1000` to force a variable to
40 compile to a particular location. It's just what we do, because we like
67 We want to read our code. This means we like names and flow that are more
74 We like descriptive names for things, especially functions and variables.
97 We like consistency, but we're not really obsessed with it. We try to name our
107 often we strive for descriptive AND unique... we like quirky names that stand
123 We've decided on our own style preferences. If you'd like to contribute to these
133 arguments or whatnot). When that happens, we like to indent further to line
163 //Like so. Even if only one line, we use braces.
[all …]
/third_party/unity/docs/
DThrowTheSwitchCodingStandard.md23 By quirky I mean "doesn't follow standards because they feel like they have a license to do as they…
34 …even if they were, they would still have to accept non-standard additions like gcc extensions or s…
35 It's just what we do, because we like everything to Just Work™.
58 This means we like names and flow that are more naturally read.
64 We like descriptive names for things, especially functions and variables.
81 We like consistency, but we're not really obsessed with it.
88 … simply descriptive, but often we strive for descriptive AND unique... we like quirky names that s…
104 If you'd like to contribute to these projects (and we hope that you do), then we ask if you do your…
113 When that happens, we like to indent further to line things up in nice tidy columns.
141 //Like so. Even if only one line, we use braces.
[all …]
/third_party/typescript/src/lib/
Des2015.iterable.d.ts243 * Creates an array from an array-like or iterable object.
244 * @param arrayLike An array-like or iterable object to convert to an array.
271 * Creates an array from an array-like or iterable object.
272 * @param arrayLike An array-like or iterable object to convert to an array.
302 * Creates an array from an array-like or iterable object.
303 * @param arrayLike An array-like or iterable object to convert to an array.
332 * Creates an array from an array-like or iterable object.
333 * @param arrayLike An array-like or iterable object to convert to an array.
360 * Creates an array from an array-like or iterable object.
361 * @param arrayLike An array-like or iterable object to convert to an array.
[all …]
/third_party/curl/docs/
DTheArtOfHttpScripting.md34 The client, curl, sends an HTTP request. The request contains a method (like
38 is the plain data you requested, like the actual HTML or the image etc.
53 receives. Use it like this:
88 particular resource on the Internet. You know these, you have seen URLs like
110 number immediately following the hostname. Like when doing HTTP to port
118 connect to the server. Like when using an HTTP proxy on port 4321:
225 the posted data to decide how to act. Like using the entered words to search
235 A GET-form uses the method GET, as specified in HTML like:
283 could do it like:
295 Recent curl versions can in fact url-encode POST data for you, like this:
[all …]
DCURLDOWN.md3 A markdown-like syntax for libcurl man pages.
14 Use a format that allows creating man pages that end up looking exactly like
18 by using a markdown-like syntax.
78 Following the header in the file, is the manual page using markdown-like
100 Write bold words or phrases within `**` like:
104 Write italics like:
118 All mentioned curl symbols that have their own man pages, like
/third_party/typescript/lib/
Dlib.es2015.iterable.d.ts263 * Creates an array from an array-like or iterable object.
264 * @param arrayLike An array-like or iterable object to convert to an array.
291 * Creates an array from an array-like or iterable object.
292 * @param arrayLike An array-like or iterable object to convert to an array.
322 * Creates an array from an array-like or iterable object.
323 * @param arrayLike An array-like or iterable object to convert to an array.
352 * Creates an array from an array-like or iterable object.
353 * @param arrayLike An array-like or iterable object to convert to an array.
380 * Creates an array from an array-like or iterable object.
381 * @param arrayLike An array-like or iterable object to convert to an array.
[all …]

12345678910>>...353