Home
last modified time | relevance | path

Searched full:given (Results 1 – 25 of 9790) sorted by relevance

12345678910>>...392

/third_party/protobuf/ruby/tests/
Dtype_errors.rb16 … "Invalid argument for string field 'optional_string' (given #{IntegerType.name})." do
20 "Invalid argument for string field 'oneof_string' (given #{IntegerType.name})." do
24 … "Expected array as initializer value for repeated field 'repeated_string' (given String)." do
31 "Expected number type for float field 'optional_float' (given TrueClass)." do
35 "Expected number type for float field 'oneof_float' (given TrueClass)." do
39 … "Expected array as initializer value for repeated field 'repeated_float' (given String)." do
46 "Expected number type for double field 'optional_double' (given Symbol)." do
50 "Expected number type for double field 'oneof_double' (given Symbol)." do
54 … "Expected array as initializer value for repeated field 'repeated_double' (given FalseClass)." do
61 "Invalid argument for boolean field 'optional_bool' (given Float)." do
[all …]
/third_party/protobuf/js/experimental/runtime/kernel/
Dkernel.js69 * Reads the last entry of the index array using the given read function.
87 * Converts all entries of the index array to the template type using given read
124 * Converts all entries of the index array to the template type using the given
144 * Converts all entries of the index array to the template type using the given
204 * Merges all index entries of the index array using the given read function.
220 * Merges all index entries of the index array using the given read function.
240 * Merges all index entries of the index array using the given read function.
287 * Writes the array of Messages into the writer for the given field number.
299 * Writes the array of Messages into the writer for the given field number.
345 * Create a Kernel for the given binary bytes.
[all …]
/third_party/protobuf/objectivec/
DGPBArray.h60 * Creates and initializes a GPBInt32Array with the single element given.
69 * Creates and initializes a GPBInt32Array with the contents of the given
79 * Creates and initializes a GPBInt32Array with the given capacity.
93 * Initializes the array, copying the given values.
104 * Initializes the array, copying the given values.
113 * Initializes the array with the given capacity.
122 * Gets the value at the given index.
126 * @return The value at the given index.
131 * Enumerates the values on this array with the given block.
141 * Enumerates the values on this array with the given block.
[all …]
DGPBDictionary.h64 * Initializes this dictionary, copying the given values and keys.
77 * Initializes this dictionary, copying the entries from the given dictionary.
81 * @return A newly initialized dictionary with the entries of the given dictionary.
95 * Gets the value for the given key.
105 * Enumerates the keys and values on this dictionary with the given block.
124 * Sets the value for the given key.
132 * Removes the entry for the given key.
159 * Initializes this dictionary, copying the given values and keys.
172 * Initializes this dictionary, copying the entries from the given dictionary.
176 * @return A newly initialized dictionary with the entries of the given dictionary.
[all …]
DGPBCodedOutputStream.h69 * Creates a stream to fill in the given data. Data must be sized to fit or
79 * Creates a stream to write into the given NSOutputStream.
88 * Initializes a stream to fill in the given data. Data must be sized to fit
98 * Initializes a stream to write into the given @c NSOutputStream.
119 * Write the tag for the given field number and wire format.
168 * Writes out the given data.
183 * Write a double for the given field number.
190 * Write a packed array of double for the given field number.
207 * Write a float for the given field number.
214 * Write a packed array of float for the given field number.
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/
DAMDGPUBaseInfo.h68 /// Streams isa version string for given subtarget \p STI into \p Stream.
71 /// \returns True if given subtarget \p STI supports code object version 3,
75 /// \returns Wavefront size for given subtarget \p STI.
78 /// \returns Local memory size in bytes for given subtarget \p STI.
81 /// \returns Number of execution units per compute unit for given subtarget \p
85 /// \returns Maximum number of work groups per compute unit for given subtarget
86 /// \p STI and limited by given \p FlatWorkGroupSize.
90 /// \returns Maximum number of waves per compute unit for given subtarget \p
94 /// \returns Maximum number of waves per compute unit for given subtarget \p
95 /// STI and limited by given \p FlatWorkGroupSize.
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DInstructionSimplify.h121 /// Given operand for an FNeg, fold the result or return null.
125 /// Given operands for an Add, fold the result or return null.
129 /// Given operands for a Sub, fold the result or return null.
133 /// Given operands for an FAdd, fold the result or return null.
137 /// Given operands for an FSub, fold the result or return null.
141 /// Given operands for an FMul, fold the result or return null.
145 /// Given operands for the multiplication of a FMA, fold the result or return
152 /// Given operands for a Mul, fold the result or return null.
155 /// Given operands for an SDiv, fold the result or return null.
158 /// Given operands for a UDiv, fold the result or return null.
[all …]
/third_party/python/Lib/test/
Dtest_urllib.py984 given = "a b cd e f"
985 expect = given.replace(' ', hexescape(' '))
986 result = urllib.parse.quote(given)
989 expect = given.replace(' ', '+')
990 result = urllib.parse.quote_plus(given)
1008 given = b"\xa2\xd8ab\xff"
1010 result = urllib.parse.quote(given)
1014 self.assertRaises(TypeError, urllib.parse.quote, given,
1017 result = urllib.parse.quote_from_bytes(given)
1024 given = "\xa2\xd8ab\xff"
[all …]
/third_party/skia/third_party/externals/spirv-tools/source/
Dopcode.h38 // Finds the named opcode in the given opcode table. On success, returns
44 // Finds the opcode by enumerant in the given opcode table. On success, returns
59 // Determine if the given opcode is a scalar type. Returns zero if false,
63 // Determines if the given opcode is a specialization constant. Returns zero if
67 // Determines if the given opcode is a constant. Returns zero if false, non-zero
71 // Returns true if the given opcode is a constant or undef.
74 // Returns true if the given opcode is a scalar specialization constant.
77 // Determines if the given opcode is a composite type. Returns zero if false,
81 // Determines if the given opcode results in a pointer when using the logical
85 // Returns whether the given opcode could result in a pointer or a variable
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
Dopcode.h38 // Finds the named opcode in the given opcode table. On success, returns
44 // Finds the opcode by enumerant in the given opcode table. On success, returns
59 // Determine if the given opcode is a scalar type. Returns zero if false,
63 // Determines if the given opcode is a specialization constant. Returns zero if
67 // Determines if the given opcode is a constant. Returns zero if false, non-zero
71 // Returns true if the given opcode is a constant or undef.
74 // Returns true if the given opcode is a scalar specialization constant.
77 // Determines if the given opcode is a composite type. Returns zero if false,
81 // Determines if the given opcode results in a pointer when using the logical
85 // Returns whether the given opcode could result in a pointer or a variable
[all …]
/third_party/skia/third_party/externals/tint/src/sem/
Dintrinsic.h29 /// Determines if the given `i` is a coarse derivative
31 /// @returns true if the given derivative is coarse.
34 /// Determines if the given `i` is a fine derivative
36 /// @returns true if the given derivative is fine.
39 /// Determine if the given `i` is a derivative intrinsic
41 /// @returns true if the given `i` is a derivative intrinsic
44 /// Determines if the given `i` is a float classification intrinsic
46 /// @returns true if the given `i` is a float intrinsic
49 /// Determines if the given `i` is a texture operation intrinsic
51 /// @returns true if the given `i` is a texture operation intrinsic
[all …]
/third_party/openssl/doc/man3/
DOSSL_CRMF_MSG_set1_regCtrl_regToken.pod58 returns the respective control X in the given I<msg>, if present.
60 OSSL_CRMF_MSG_set1_regCtrl_regToken() sets the regToken control in the given
61 I<msg> copying the given I<tok> as value. See RFC 4211, section 6.1.
64 the given I<msg> copying the given I<auth> as value. See RFC 4211, section 6.2.
66 OSSL_CRMF_MSG_PKIPublicationInfo_push0_SinglePubInfo() pushes the given I<spi>
69 OSSL_CRMF_MSG_set0_SinglePubInfo() sets in the given SinglePubInfo I<spi>
79 OSSL_CRMF_MSG_set_PKIPublicationInfo_action() sets the action in the given I<pi>
80 using the given I<action> as value. See RFC 4211, section 6.3.
86 control in the given I<msg> copying the given I<tok> as value. See RFC 4211,
90 the given I<msg> copying the given I<pubkey> as value. See RFC 4211 section 6.6.
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dgregocal.h176 * Constructs a GregorianCalendar based on the current time in the given time zone
177 * with the default locale. Clients are no longer responsible for deleting the given
180 * @param zoneToAdopt The given timezone.
188 * Constructs a GregorianCalendar based on the current time in the given time zone
191 * @param zone The given timezone.
200 * with the given locale.
202 * @param aLocale The given locale.
210 * Constructs a GregorianCalendar based on the current time in the given time zone
211 * with the given locale. Clients are no longer responsible for deleting the given
214 * @param zoneToAdopt The given timezone.
[all …]
Dcalendar.h194 * specific. Example ranges given are for illustration only; see specific Calendar
311 * Creates a Calendar using the given timezone and the default locale.
315 * @param zoneToAdopt The given timezone to be adopted.
325 * Creates a Calendar using the given timezone and the default locale. The TimeZone
338 * Creates a Calendar using the default timezone and the given locale.
340 * @param aLocale The given locale.
350 * Creates a Calendar using the given timezone and given locale.
354 * @param zoneToAdopt The given timezone to be adopted.
355 * @param aLocale The given locale.
365 * Gets a Calendar using the given timezone and given locale. The TimeZone
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf/
DFieldCodec.cs50 /// Retrieves a codec suitable for a string field with the given tag.
53 /// <returns>A codec for the given tag.</returns>
60 /// Retrieves a codec suitable for a bytes field with the given tag.
63 /// <returns>A codec for the given tag.</returns>
70 /// Retrieves a codec suitable for a bool field with the given tag.
73 /// <returns>A codec for the given tag.</returns>
80 /// Retrieves a codec suitable for an int32 field with the given tag.
83 /// <returns>A codec for the given tag.</returns>
90 /// Retrieves a codec suitable for an sint32 field with the given tag.
93 /// <returns>A codec for the given tag.</returns>
[all …]
/third_party/icu/icu4c/source/i18n/unicode/
Dgregocal.h176 * Constructs a GregorianCalendar based on the current time in the given time zone
177 * with the default locale. Clients are no longer responsible for deleting the given
180 * @param zoneToAdopt The given timezone.
188 * Constructs a GregorianCalendar based on the current time in the given time zone
191 * @param zone The given timezone.
200 * with the given locale.
202 * @param aLocale The given locale.
210 * Constructs a GregorianCalendar based on the current time in the given time zone
211 * with the given locale. Clients are no longer responsible for deleting the given
214 * @param zoneToAdopt The given timezone.
[all …]
/third_party/spirv-tools/source/
Dopcode.h38 // Finds the named opcode in the given opcode table. On success, returns
44 // Finds the opcode by enumerant in the given opcode table. On success, returns
59 // Determine if the given opcode is a scalar type. Returns zero if false,
63 // Determines if the given opcode is a specialization constant. Returns zero if
67 // Determines if the given opcode is a constant. Returns zero if false, non-zero
71 // Returns true if the given opcode is a constant or undef.
74 // Returns true if the given opcode is a scalar specialization constant.
77 // Determines if the given opcode is a composite type. Returns zero if false,
81 // Determines if the given opcode results in a pointer when using the logical
85 // Returns whether the given opcode could result in a pointer or a variable
[all …]
/third_party/elfutils/libelf/
Dgelf.h189 Elf32_Phdr or an Elf64_Phdr depending on whether the given ELF is
208 /* Retrieve REL relocation info at the given index. */
211 /* Retrieve RELA relocation info at the given index. */
214 /* Update REL relocation information at given index. */
217 /* Update RELA relocation information at given index. */
221 /* Retrieve symbol information from the symbol table at the given index. */
224 /* Update symbol information in the symbol table at the given index. */
229 symbol table at the given index. */
235 table at the given index. */
242 given index. */
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DPersonNameFormatterTest.java106 …new NameAndTestCases("locale=en_US,prefix=Mr.,given=Richard,given-informal=Rich,given2=Theodore,su… in TestEnglishName()
161 …new NameAndTestCases("locale=en_US,given=Willem,surname-prefix=van der,surname-core=Plas", new Str… in TestPrefixCore()
191 new NameAndTestCases("locale=en_US,given=Willem,surname=van der Plas", new String[][] { in TestPrefixCore()
212 …new NameAndTestCases("locale=en_US,given=Willem,surname-prefix=van der,surname-core=Plas,surname-i… in TestPrefixCore()
226 …new NameAndTestCases("locale=en_US,given=George,given2=Herbert Walker,surname=Bush", new String[][… in TestInitialGeneration()
234 … new NameAndTestCases("locale=en_US,given=Ralph,surname=Vaughan Williams", new String[][] { in TestInitialGeneration()
242 …new NameAndTestCases("locale=en_US,given=John Paul,given2=Stephen David George,surname=Smith", new… in TestInitialGeneration()
258 …new NameAndTestCases("locale=en_US,given=John,given2=Paul,surname=Smith,suffix=Jr.", new String[][… in TestLiteralTextElision()
261 … new NameAndTestCases("locale=en_US,given=John,given2=Paul,surname=Smith", new String[][] { in TestLiteralTextElision()
270 new NameAndTestCases("locale=en_US,given=John", new String[][] { in TestLiteralTextElision()
[all …]
/third_party/node/deps/icu-small/source/i18n/unicode/
Dgregocal.h176 * Constructs a GregorianCalendar based on the current time in the given time zone
177 * with the default locale. Clients are no longer responsible for deleting the given
180 * @param zoneToAdopt The given timezone.
188 * Constructs a GregorianCalendar based on the current time in the given time zone
191 * @param zone The given timezone.
200 * with the given locale.
202 * @param aLocale The given locale.
210 * Constructs a GregorianCalendar based on the current time in the given time zone
211 * with the given locale. Clients are no longer responsible for deleting the given
214 * @param zoneToAdopt The given timezone.
[all …]
/third_party/parse5/packages/parse5/lib/tree-adapters/
Dinterface.ts37 …* Copies attributes to the given element. Only attributes that are not yet present in the element …
45 * Appends a child node to the given parent node.
86 * Returns the given element's attributes in an array, in the form of name-value pairs.
94 * Returns the given node's children in an array.
101 * Returns the given comment node's content.
115 * Returns the given document type node's name.
122 * Returns the given document type node's public identifier.
129 * Returns the given document type node's system identifier.
136 * Returns the first child of the given node.
143 * Returns the given element's namespace.
[all …]
/third_party/openssl/doc/internal/man3/
Dossl_cmp_hdr_init.pod55 ossl_cmp_hdr_set_pvno() sets hdr->pvno to the given B<pvno>.
57 ossl_cmp_hdr_get_pvno() returns the pvno of the given B<hdr> or -1 on error.
62 ossl_cmp_hdr_get0_sendernonce() returns the sender nonce of the given PKIHeader.
64 ossl_cmp_general_name_is_NULL_DN() determines if the given GENERAL_NAME
67 ossl_cmp_hdr_set1_sender() sets the sender field in the given PKIHeader
68 to the given X509 Name value, without consuming the pointer.
70 ossl_cmp_hdr_set1_recipient() sets the recipient field in the given
71 PKIHeader to the given X509 Name value, without consuming the pointer.
80 ossl_cmp_hdr_set1_senderKID() Sets hdr->senderKID to the given string.
85 hdr->freeText and consumes the given pointer.
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dascii.h79 // Determines whether the given character is an alphabetic character.
86 // Determines whether the given character is an alphanumeric character.
93 // Determines whether the given character is a whitespace character (space,
101 // Determines whether the given character is a punctuation character.
108 // Determines whether the given character is a blank character (tab or space).
115 // Determines whether the given character is a control character.
122 // Determines whether the given character can be represented as a hexadecimal
130 // Determines whether the given character can be represented as a decimal
136 // Determines whether the given character is printable, including whitespace.
141 // Determines whether the given character has a graphical representation.
[all …]
/third_party/typescript/src/lib/
Des2020.sharedmemory.d.ts3 * Adds a value to the value at the given position in the array, returning the original value.
10 * Stores the bitwise AND of a value with the value at the given position in the array,
17 * Replaces the value at the given position in the array if the original value equals the given
24 * Replaces the value at the given position in the array, returning the original value. Until
31 * Returns the value at the given position in the array. Until this atomic operation completes,
37 * Stores the bitwise OR of a value with the value at the given position in the array,
44 * Stores a value at the given position in the array, returning the new value. Until this
50 * Subtracts a value from the value at the given position in the array, returning the original
57 * If the value at the given position in the array is equal to the provided value, the current
65 * Wakes up sleeping agents that are waiting on the given index of the array, returning the
[all …]
/third_party/qrcodegen/cpp/
Dqrcodegen.hpp87 * this mode in a QR Code at the given version number. The result is in the range [0, 16].
98 * Returns a segment representing the given binary data encoded in
106 * Returns a segment representing the given string of decimal digits encoded in numeric mode.
112 * Returns a segment representing the given text string encoded in alphanumeric mode.
120 * Returns a list of zero or more segments to represent the given text string. The result
128 * (ECI) designator with the given assignment value.
136 * Tests whether the given string can be encoded as a segment in numeric mode.
143 * Tests whether the given string can be encoded as a segment in alphanumeric mode.
169 * Creates a new QR Code segment with the given attributes and data.
171 * but the constraint isn't checked. The given bit buffer is copied and stored.
[all …]

12345678910>>...392