Home
last modified time | relevance | path

Searched refs:value (Results 8726 - 8750 of 27198) sorted by relevance

1...<<341342343344345346347348349350>>...1088

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-promise.c47 * Reject the promise if the value is error.
52 * @return ecma value of the new promise.
53 * Returned value must be freed with ecma_free_value.
56 ecma_builtin_promise_reject_abrupt (ecma_value_t value, /**< value */ in ecma_builtin_promise_reject_abrupt() argument
59 if (!ECMA_IS_VALUE_ERROR (value)) in ecma_builtin_promise_reject_abrupt()
61 return value; in ecma_builtin_promise_reject_abrupt()
92 * @return ecma value of the new promise.
93 * Returned value must be freed with ecma_free_value.
108 * @return ecma value o
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_phi_precision.c277 if (lc->value[i].i32 != (int32_t)(int16_t)lc->value[i].i32) in can_convert_load_const()
281 if (lc->value[i].u32 != (uint32_t)(uint16_t)lc->value[i].u32) in can_convert_load_const()
285 if (lc->value[i].f32 != _mesa_half_to_float( in can_convert_load_const()
286 _mesa_float_to_half(lc->value[i].f32))) in can_convert_load_const()
/third_party/node/lib/
H A Ddiagnostics_channel.js39 set(key, value) {
40 this.#finalizers.register(value, key);
41 return super.set(key, new WeakReference(value));
246 function assertChannel(value, name) {
247 if (!(value instanceof Channel)) {
248 throw new ERR_INVALID_ARG_TYPE(name, ['Channel'], value);
/third_party/node/lib/internal/crypto/
H A Dcipher.js107 let value;
108 if (options && (value = options[key]) != null) {
109 if (value >>> 0 !== value)
110 throw new ERR_INVALID_ARG_VALUE(`options.${key}`, value);
111 return value;
/third_party/node/deps/v8/tools/release/
H A Dgit_recipes.py273 its SVN revision value is returned.
279 value = footer_map.get(COMMIT_POSITION_FOOTER_KEY)
280 if value:
281 match = COMMIT_POSITION_RE.match(value)
286 value = footer_map.get(GIT_SVN_ID_FOOTER_KEY)
287 if value:
288 match = GIT_SVN_ID_RE.match(value)
/third_party/node/test/fixtures/wpt/resources/webidl2/lib/
H A Dwriter.js13 return it.value;
31 if (tp === "boolean") return it.value ? "true" : "false";
35 else if (tp === "number") return it.value;
37 else return `"${it.value}"`;
52 if (it.rhs.type === "identifier-list") ret += `=(${it.rhs.value.join(",")})`;
53 else ret += `=${it.rhs.value}`;
130 return `${ret}const ${type(it.idlType)}${it.nullable ? "?" : ""} ${it.name} = ${const_value(it.value)};`;
153 ret += `"${v.value}",`;
/third_party/node/deps/v8/tools/testrunner/testproc/
H A Dfuzzer.py91 analysis_value: value returned by the analyzer. None if there is no
258 value = analysis_value // 10
260 value = 10000
262 yield ['--random-gc-interval=%d' % value]
335 value = analysis_value // 2
337 value = 10000
338 interval = rng.randint(self._min, max(value, self._min))
/third_party/node/tools/inspector_protocol/jinja2/
H A Ddebug.py207 for name, value in iteritems(real_locals):
208 if not name.startswith('l_') or value is missing:
217 local_overrides[name] = (depth, value)
219 for name, (_, value) in iteritems(local_overrides):
220 if value is missing:
223 locals[name] = value
/third_party/ntfs-3g/include/ntfs-3g/
H A Dsecurity.h269 const char *name, char *value, size_t size);
271 const char *name, const char *value, size_t size,
278 char *value, size_t size);
280 const char *value, size_t size, int flags);
282 int ntfs_get_ntfs_attrib(ntfs_inode *ni, char *value, size_t size);
284 const char *value, size_t size, int flags);
/third_party/ninja/misc/
H A Dninja_syntax.py48 value: Optional[Union[bool, int, float, str, List[str]]],
51 if value is None:
53 if isinstance(value, list):
54 value = ' '.join(filter(None, value)) # Filter out empty strings.
55 self._line('%s = %s' % (key, value), indent)
/third_party/node/deps/icu-small/source/common/unicode/
H A Dmessagepattern.h107 * The value indicates the nesting level, starting with 0 for the main message.
118 * The value indicates the nesting level, starting with 0 for the main message.
126 * The value is undefined and currently always 0.
133 * The value is the character code of the insertion character. (U+0027=APOSTROPHE)
140 * (value-offset) for the plural argument value.
141 * The value is undefined and currently always 0.
148 * The value is the ordinal value of the ArgType. Use getArgType().
159 * The value i
830 int16_t value; global() member in MessagePattern::Part
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_nir_lower_mem_access_bit_sizes.c163 nir_ssa_def *value = intrin->src[0].ssa; in lower_mem_store_bit_size() local
165 assert(intrin->num_components == value->num_components); in lower_mem_store_bit_size()
166 const unsigned bit_size = value->bit_size; in lower_mem_store_bit_size()
176 if ((value->bit_size <= 32 && num_components == 1) || in lower_mem_store_bit_size()
177 (value->bit_size == 32 && num_components <= 4 && align >= 32 && in lower_mem_store_bit_size()
228 nir_ssa_def *packed = nir_extract_bits(b, &value, 1, start * 8, in lower_mem_store_bit_size()
/third_party/node/deps/icu-small/source/i18n/
H A Dnumber_compact.cpp168 void CompactData::CompactDataSink::put(const char *key, ResourceValue &value, UBool /*noFallback*/, in put() argument
171 ResourceTable powersOfTenTable = value.getTable(status); in put()
173 for (int i3 = 0; powersOfTenTable.getKeyAndValue(i3, key, value); ++i3) { in put()
186 ResourceTable pluralVariantsTable = value.getTable(status); in put()
188 for (int i4 = 0; pluralVariantsTable.getKeyAndValue(i4, key, value); ++i4) { in put()
197 // The value "0" means that we need to use the default pattern and not fall back in put()
200 const char16_t *patternString = value.getString(patternLength, status); in put()
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Ddecimfmt.h177 * value is multiplied by 100 before being displayed.
430 * DecimalFormatSymbols object. This is the only value for which
760 void setParseAllInput(UNumberFormatAttributeValue value);
781 * @param newValue new value
794 * @return the attribute value. Undefined if there is an error.
810 * @param value set True, this format will parse numbers as integers
815 void setParseIntegerOnly(UBool value) override;
920 * @param number The value to be formatted.
934 * @param number The value to be formatted.
950 * @param number The value t
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A D_parser.py14 def __init__(self, value: str) -> None:
15 self.value = value
18 return self.value
337 value = ast.literal_eval(python_str)
338 return Value(str(value))
/third_party/icu/icu4c/source/test/perf/perldriver/
H A DOutput.pm52 my $value = shift;
54 my $mean = $value->getMean;
55 my $error = $value->getError;
58 print HTML "value";
85 my $value = shift;
87 print HTML $value;
88 #print HTML formatNumber(2, 1, $value);
119 printLeg("<a name=\"mean_op_$i\">ratio $i /op</a> - ratio and error of per $operationIs time, calculated as: (($headers[0] - $headers[$i])/$headers[$i])*100%, mean value");
132 printLeg("<a name=\"mean_ev_$i\">ratio $i /ev</a> - ratio and error of per $eventIs time, calculated as: (($headers[0] - $headers[$i])/$headers[$i])*100%, mean value");
224 td.value { borde
[all...]
/third_party/icu/icu4c/source/test/perf/utfperf/
H A Dutfperf.cpp75 charset = options[CHARSET].value; in UtfPerformanceTest()
77 chunkLength = atoi(options[CHUNK_LENGTH].value); in UtfPerformanceTest()
83 pivotLength = atoi(options[PIVOT_LENGTH].value); in UtfPerformanceTest()
344 options[CHARSET].value = "UTF-8"; in main()
345 options[CHUNK_LENGTH].value = "4096"; in main()
346 options[PIVOT_LENGTH].value = "1024"; in main()
/third_party/ltp/testcases/kernel/security/tomoyo/
H A Dinclude.h87 static inline int write_sysctl(const char *path, const char *value) in write_sysctl() argument
92 fputs(value, fp); in write_sysctl()
97 static inline int read_sysctl(const char *path, char *value, int len) in read_sysctl() argument
103 if (!value) { in read_sysctl()
104 value = scratch; in read_sysctl()
107 if (fgets(value, len, fp)) in read_sysctl()
/third_party/lwip/src/apps/snmp/
H A Dsnmp_table.c116 /* resolve column and value */ in snmp_table_get_next_instance()
251 /* resolve column and value */ in snmp_table_simple_get_next_instance()
320 snmp_table_extract_value_from_s32ref(struct snmp_node_instance *instance, void *value) in snmp_table_extract_value_from_s32ref() argument
322 s32_t *dst = (s32_t *)value; in snmp_table_extract_value_from_s32ref()
328 snmp_table_extract_value_from_u32ref(struct snmp_node_instance *instance, void *value) in snmp_table_extract_value_from_u32ref() argument
330 u32_t *dst = (u32_t *)value; in snmp_table_extract_value_from_u32ref()
336 snmp_table_extract_value_from_refconstptr(struct snmp_node_instance *instance, void *value) in snmp_table_extract_value_from_refconstptr() argument
338 MEMCPY(value, instance->reference.const_ptr, instance->reference_len); in snmp_table_extract_value_from_refconstptr()
/third_party/node/deps/v8/src/date/
H A Ddateparser.h38 // [7]: UTC offset in seconds, or null value if no timezone specified
49 // Indicates a missing value.
52 // Maximal number of digits used to build the value of a numeral.
72 // Read a string of digits as an unsigned number. Cap value at
186 static DateToken Keyword(KeywordType tag, int value, int length) { in Keyword()
187 return DateToken(tag, length, value); in Keyword()
189 static DateToken Number(int value, int length) { in Number()
190 return DateToken(kNumberTag, length, value); in Number()
212 DateToken(int tag, int length, int value) in DateToken()
213 : tag_(tag), length_(length), value_(value) {} in DateToken()
[all...]
/third_party/node/deps/v8/src/asmjs/
H A Dasm-parser.h215 // For `+callsite(..)` or `fround(callsite(..))` use this value to pass
224 // value to flag that such a coercion must happen.
231 // The code position of the last heap access shift by an immediate value.
232 // For `heap[expr >> value:NumericLiteral]` this indicates from where to
275 inline bool CheckForDouble(double* value) { in CheckForDouble() argument
277 *value = scanner_.AsDouble(); in CheckForDouble()
285 inline bool CheckForUnsigned(uint32_t* value) { in CheckForUnsigned() argument
287 *value = scanner_.AsUnsigned(); in CheckForUnsigned()
295 inline bool CheckForUnsignedBelow(uint32_t limit, uint32_t* value) { in CheckForUnsignedBelow() argument
297 *value in CheckForUnsignedBelow()
[all...]
/third_party/node/deps/v8/src/handles/
H A Dglobal-handles.h102 Handle<Object> Create(Object value);
103 Handle<Object> Create(Address value);
106 inline Handle<T> Create(T value);
108 Handle<Object> CreateTraced(Object value, Address* slot,
111 Handle<Object> CreateTraced(Object value, Address* slot,
113 Handle<Object> CreateTraced(Address value, Address* slot,
/third_party/node/deps/v8/src/deoptimizer/
H A Dtranslation-array.cc53 int32_t value = base::VLQDecode(buffer_.GetDataStartAddress(), &index_); in Next() local
55 return value; in Next()
67 void TranslationArrayBuilder::Add(int32_t value) { in Add() argument
69 contents_for_compression_.push_back(value); in Add()
71 base::VLQEncode(&contents_, value); in Add()
128 Add(return_kind ? static_cast<int>(return_kind.value()) : kNoWasmReturnKind); in BeginJSToWasmBuiltinContinuationFrame()
/third_party/node/deps/v8/src/objects/
H A Delements.h113 Object value) = 0;
117 Handle<Object> value,
149 Handle<Object> value, size_t start,
156 Handle<Object> value, size_t start,
160 Handle<Object> value,
187 // and GetCapacity. Indices refer to elements in terms of the value that would
199 InternalIndex entry, Handle<Object> value,
/third_party/node/deps/v8/src/strings/
H A Dstring-builder.cc143 void FixedArrayBuilder::Add(Object value) { in Add() argument
144 DCHECK(!value.IsSmi()); in Add()
145 array_->set(length_, value); in Add()
150 void FixedArrayBuilder::Add(Smi value) { in Add() argument
151 DCHECK(value.IsSmi()); in Add()
152 array_->set(length_, value); in Add()

Completed in 24 milliseconds

1...<<341342343344345346347348349350>>...1088