/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
H A D | NameTable.java | 107 private final int value; field in NameTable.NameId 109 private NameId(int value) { in NameId() argument 110 this.value = value; in NameId() 113 public int value() { in value() method in NameTable.NameId 114 return this.value; in value() 117 public boolean equals(int value) { in equals() argument 118 return value == this.value; in equals() 121 public static NameId valueOf(int value) { in valueOf() argument 135 private final int value; global() field in NameTable.UnicodeLanguageId 137 UnicodeLanguageId(int value) UnicodeLanguageId() argument 141 public int value() { value() method in NameTable.UnicodeLanguageId 145 equals(int value) equals() argument 149 valueOf(int value) valueOf() argument 284 private final int value; global() field in NameTable.MacintoshLanguageId 286 MacintoshLanguageId(int value) MacintoshLanguageId() argument 290 public int value() { value() method in NameTable.MacintoshLanguageId 294 equals(int value) equals() argument 298 valueOf(int value) valueOf() argument 519 private final int value; global() field in NameTable.WindowsLanguageId 521 WindowsLanguageId(int value) WindowsLanguageId() argument 525 public int value() { value() method in NameTable.WindowsLanguageId 529 equals(int value) equals() argument 533 valueOf(int value) valueOf() argument [all...] |
/third_party/python/Python/ |
H A D | errors.c | 32 _PyErr_Restore(PyThreadState *tstate, PyObject *type, PyObject *value, in _PyErr_Restore() argument 51 tstate->curexc_value = value; in _PyErr_Restore() 60 PyErr_Restore(PyObject *type, PyObject *value, PyObject *traceback) in PyErr_Restore() argument 63 _PyErr_Restore(tstate, type, value, traceback); in PyErr_Restore() 82 _PyErr_CreateException(PyObject *exception_type, PyObject *value) in _PyErr_CreateException() argument 86 if (value == NULL || value == Py_None) { in _PyErr_CreateException() 89 else if (PyTuple_Check(value)) { in _PyErr_CreateException() 90 exc = PyObject_Call(exception_type, value, NULL); in _PyErr_CreateException() 93 exc = PyObject_CallOneArg(exception_type, value); in _PyErr_CreateException() 108 _PyErr_SetObject(PyThreadState *tstate, PyObject *exception, PyObject *value) _PyErr_SetObject() argument 186 PyErr_SetObject(PyObject *exception, PyObject *value) PyErr_SetObject() argument 227 PyObject *value = PyUnicode_FromString(string); _PyErr_SetString() local 314 PyObject *type, *value, *initial_tb; _PyErr_NormalizeException() local 541 PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback) PyErr_SetExcInfo() argument [all...] |
/third_party/python/Objects/ |
H A D | odictobject.c | 38 4. have the value stored for each key be a (value, node) pair, and adjust 532 PyObject *value = NULL; in _odict_get_index_raw() local 536 ix = _Py_dict_lookup((PyDictObject *)od, key, hash, &value); in _odict_get_index_raw() 915 value: object = None 917 Create a new ordered dictionary with keys from iterable and values set to value. 921 OrderedDict_fromkeys_impl(PyTypeObject *type, PyObject *seq, PyObject *value) in OrderedDict_fromkeys_impl() argument 924 return _PyDict_FromKeys((PyObject *)type, seq, value); in OrderedDict_fromkeys_impl() 991 Insert key with a value of default if key is not in the dictionary. 993 Return the value fo 1041 PyObject *value = NULL; _odict_popkey_hash() local 1110 PyObject *key, *value, *item = NULL; OrderedDict_popitem_impl() local 1200 PyObject *value = _odictnode_VALUE(node, od); odict_copy() local 1214 PyObject *value = PyObject_GetItem((PyObject *)od, odict_copy() local 1395 PyObject *value = _odictnode_VALUE(node, self); odict_repr() local 1597 _PyODict_SetItem_KnownHash(PyObject *od, PyObject *key, PyObject *value, Py_hash_t hash) _PyODict_SetItem_KnownHash() argument 1615 PyODict_SetItem(PyObject *od, PyObject *key, PyObject *value) PyODict_SetItem() argument 1731 PyObject *result, *value; odictiter_iternext() local 2144 PyObject *key = NULL, *value = NULL; mutablemapping_add_pairs() local 2223 PyObject *value = PyObject_GetItem(arg, key); mutablemapping_update_arg() local [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | json_format_test.py | 75 message.message_value.value = 10 96 message.repeated_message_value.add().value = 10 97 message.repeated_message_value.add().value = 11 145 '"messageValue": {"value": 10},' 156 '"repeatedMessageValue": [{"value": 10}, {"value": 11}],' 261 message.Extensions[ext].value = 'stuff' 267 'value': u'stuff', 441 message.value.seconds = 0 442 message.value [all...] |
/third_party/rust/crates/serde/serde/src/de/ |
H A D | impls.rs | 707 while let Some(value) = tri!(seq.next_element()) { in visit_seq() 708 values.push(value); in visit_seq() 845 // FIXME: investigate whether branching on the old value being Some to 846 // deserialize_in_place the value is profitable (probably data-dependent?) 927 while let Some(value) = tri!($access.next_element()) { in deserialize() 928 $insert(&mut values, value); in deserialize() 965 while let Some(value) = tri!($access.next_element()) { in deserialize_in_place() 966 $insert(&mut self.0, value); in deserialize_in_place() 1071 while let Some(value) = tri!(seq.next_element()) { in deserialize() 1072 values.push(value); in deserialize() [all...] |
/foundation/arkui/ace_engine/frameworks/base/geometry/ |
H A D | size.h | 102 Size& AddWidth(double value) in AddWidth() argument 104 width_ += value; in AddWidth() 135 Size operator*(double value) const in operator *() 137 return Size(width_ * value, height_ * value); in operator *() 140 Size operator/(double value) const in operator /() 142 if (NearZero(value)) { in operator /() 145 return Size(width_ / value, height_ / value); in operator /()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/command/ |
H A D | rs_command_templates.h | 62 if constexpr (std::tuple_size<decltype(params_)>::value > 1) { 64 if constexpr (std::is_same<std::shared_ptr<Drawing::DrawCmdList>, ptrType>::value) { in onstexpr() 66 } else if constexpr (std::is_same<std::shared_ptr<RSRenderModifier>, ptrType>::value) { in onstexpr() 79 if (std::is_same<NodeId, idType>::value) { 127 static void PatchParameter(PatchFunction function, T& value) in PatchParameter() argument 129 if (std::is_same<NodeId, T>::value || std::is_same<AnimationId, T>::value || in PatchParameter() 130 std::is_same<PropertyId, T>::value) { in PatchParameter() 131 auto& id = reinterpret_cast<NodeId&>(value); in PatchParameter()
|
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/common/src/ |
H A D | js_ability.cpp | 134 std::shared_ptr<Context> JSAbility::GetContext(napi_env env, napi_value value) in GetContext() argument 137 AbilityRuntime::IsStageContext(env, value, mode); in GetContext() 139 return GetStageModeContext(env, value); in GetContext() 141 return GetCurrentAbility(env, value); in GetContext() 144 std::shared_ptr<Context> JSAbility::GetStageModeContext(napi_env env, napi_value value) in GetStageModeContext() argument 147 auto stageContext = AbilityRuntime::GetStageModeContext(env, value); in GetStageModeContext() 155 std::shared_ptr<Context> JSAbility::GetCurrentAbility(napi_env env, napi_value value) in GetCurrentAbility() argument 171 int32_t JSAbility::GetHapVersion(napi_env env, napi_value value) in GetHapVersion() argument 173 auto stageContext = AbilityRuntime::GetStageModeContext(env, value); in GetHapVersion()
|
/third_party/curl/lib/vauth/ |
H A D | krb5_gssapi.c | 108 spn_token.value = spn; in Curl_auth_create_gssapi_user_message() 131 input_token.value = (void *) Curl_bufref_ptr(chlg); in Curl_auth_create_gssapi_user_message() 147 if(output_token.value) in Curl_auth_create_gssapi_user_message() 156 if(output_token.value && output_token.length) { in Curl_auth_create_gssapi_user_message() 157 result = Curl_bufref_memdup(out, output_token.value, output_token.length); in Curl_auth_create_gssapi_user_message() 208 input_token.value = (void *) Curl_bufref_ptr(chlg); in Curl_auth_create_gssapi_security_message() 227 indata = output_token.value; in Curl_auth_create_gssapi_security_message() 272 input_token.value = message; in Curl_auth_create_gssapi_security_message() 287 result = Curl_bufref_memdup(out, output_token.value, output_token.length); in Curl_auth_create_gssapi_security_message()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | FieldsSet.java | 134 String value = ""; in parseFrom() 136 value = kv[1]; in parseFrom() 139 int field = handleParseName(inheritFrom, key, value); in parseFrom() 141 handleParseValue(inheritFrom, field, value); in parseFrom() 152 * lookup the enum value using udbg_* utilities, or else as an integer if 160 * @param substr the string in question (value side) 182 * @param substr the string in question (value side) 193 * to parse a decimal integer value, or inherit from inheritFrom if the 210 int value = Integer.parseInt(substr); in parseValueDefault() 211 set(field, value); in parseValueDefault() [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/ |
H A D | CldrDataProcessorTest.java | 28 // An overly simplistic value type for currency for testing purposes. In real code you would 82 // value action which adds the territory to a map in the State object. in createTestVisitor() 91 (map, value) -> map.put(value.getPath().get(TERRITORY_TYPE), value.getValue())); in createTestVisitor() 106 (data, value) -> data.name = value.getValue()); in createTestVisitor() 109 (data, value) -> data.symbol = value.getValue()); in createTestVisitor() 151 private static CldrValue ldml(String path, String value) { in ldml() argument [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | FieldsSet.java | 131 String value = ""; in parseFrom() 133 value = kv[1]; in parseFrom() 136 int field = handleParseName(inheritFrom, key, value); in parseFrom() 138 handleParseValue(inheritFrom, field, value); in parseFrom() 149 * lookup the enum value using udbg_* utilities, or else as an integer if 157 * @param substr the string in question (value side) 179 * @param substr the string in question (value side) 190 * to parse a decimal integer value, or inherit from inheritFrom if the 207 int value = Integer.parseInt(substr); in parseValueDefault() 208 set(field, value); in parseValueDefault() [all...] |
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | nodearray.h | 30 * In sparse mode, the array has elements with a 24-bit node index and a value. 34 * Function names follow ARM instruction names: orr does *elem |= value. 52 /* A value that may be stored in a nodearray element, used directly for dense 108 nodearray_encode(unsigned key, nodearray_value value) in nodearray_encode() argument 111 return ((nodearray_sparse) key << 16) | value; in nodearray_encode() 134 /* Encode the key using the highest possible value, so that the in nodearray_sparse_search() 161 nodearray_orr(nodearray *a, unsigned key, nodearray_value value, in nodearray_orr() argument 167 if (!value) in nodearray_orr() 180 *elem |= value; in nodearray_orr() 212 *elem = nodearray_encode(key, value); in nodearray_orr() 231 nodearray_value value = nodearray_sparse_value(x); nodearray_orr() variable [all...] |
/third_party/node/deps/v8/src/deoptimizer/ |
H A D | frame-description.h | 46 void SetRegister(unsigned n, intptr_t value) { 48 registers_[n] = value; 72 // tagged value. kZapUint32 looks like a valid tagged pointer, but it 133 void SetFrameSlot(unsigned offset, intptr_t value) { 134 *GetFrameSlotPointer(offset) = value; 137 void SetCallerPc(unsigned offset, intptr_t value); 139 void SetCallerFp(unsigned offset, intptr_t value); 141 void SetCallerConstantPool(unsigned offset, intptr_t value); 151 void SetRegister(unsigned n, intptr_t value) { 152 register_values_.SetRegister(n, value); [all...] |
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_emit.h | 58 etna_set_state(struct etna_cmd_stream *stream, uint32_t address, uint32_t value) in etna_set_state() argument 62 etna_cmd_stream_emit(stream, value); in etna_set_state() 161 uint32_t value = etna_cmd_stream_get(stream, offset); in etna_coalesce_end() local 163 value |= VIV_FE_LOAD_STATE_HEADER_COUNT(size); in etna_coalesce_end() 164 etna_cmd_stream_set(stream, offset, value); in etna_coalesce_end() 194 uint32_t value) in etna_coalsence_emit() 197 etna_cmd_stream_emit(stream, value); in etna_coalsence_emit() 203 uint32_t value) in etna_coalsence_emit_fixp() 206 etna_cmd_stream_emit(stream, value); in etna_coalsence_emit_fixp() 192 etna_coalsence_emit(struct etna_cmd_stream *stream, struct etna_coalesce *coalesce, uint32_t reg, uint32_t value) etna_coalsence_emit() argument 201 etna_coalsence_emit_fixp(struct etna_cmd_stream *stream, struct etna_coalesce *coalesce, uint32_t reg, uint32_t value) etna_coalsence_emit_fixp() argument
|
/third_party/mesa3d/src/nouveau/drm-shim/ |
H A D | nouveau_noop.c | 148 gp->value = device_info.chip_id; in nouveau_ioctl_get_param() 151 gp->value = 0x10de; in nouveau_ioctl_get_param() 154 gp->value = 0x1004; in nouveau_ioctl_get_param() 157 gp->value = 2 /* NV_PCIE */; in nouveau_ioctl_get_param() 160 gp->value = 3ULL << 30; in nouveau_ioctl_get_param() 163 gp->value = 1ULL << 40; in nouveau_ioctl_get_param() 166 gp->value = 0; in nouveau_ioctl_get_param() 169 gp->value = 1; in nouveau_ioctl_get_param() 172 gp->value = 0x01000001; in nouveau_ioctl_get_param()
|
/third_party/node/deps/undici/src/lib/cookies/ |
H A D | util.js | 6 function isCTLExcludingHtab (value) { 7 if (value.length === 0) { 11 for (const char of value) { 63 cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE ) 68 * @param {string} value 70 function validateCookieValue (value) { 71 for (const char of value) { 82 throw new Error('Invalid header value') 88 * path-value = <any CHAR except CTLs or ";"> 206 validateCookieValue(cookie.value) [all...] |
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | gen_packed_gl_enums.py | 15 EnumValue = namedtuple('EnumValue', ['name', 'gl_name', 'value']) 113 std::ostream &operator<<(std::ostream &os, {enum_name} value); 123 for value in enum.values: 124 value_declarations.append(' ' + value.name + ' = ' + str(value.value) + ',') 190 std::ostream &operator<<(std::ostream &os, {enum_name} value) 192 switch (value) 211 for value in enum.values: 212 qualified_name = enum.name + '::' + value [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | BlobCache.cpp | 109 void BlobCache::put(const BlobCache::Key &key, angle::MemoryBuffer &&value) in put() argument 114 mSetBlobFunc(key.data(), key.size(), value.data(), value.size()); in put() 118 populate(key, std::move(value), CacheSource::Memory); in put() 122 void BlobCache::putApplication(const BlobCache::Key &key, const angle::MemoryBuffer &value) in putApplication() argument 127 mSetBlobFunc(key.data(), key.size(), value.data(), value.size()); in putApplication() 131 void BlobCache::populate(const BlobCache::Key &key, angle::MemoryBuffer &&value, CacheSource source) in populate() argument 134 newEntry.first = std::move(value); in populate() 166 // Make sure the key/value pai in get() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/ |
H A D | ProgramNULL.cpp | 74 const GLfloat *value) in setUniformMatrix2fv() 80 const GLfloat *value) in setUniformMatrix3fv() 86 const GLfloat *value) in setUniformMatrix4fv() 92 const GLfloat *value) in setUniformMatrix2x3fv() 98 const GLfloat *value) in setUniformMatrix3x2fv() 104 const GLfloat *value) in setUniformMatrix2x4fv() 110 const GLfloat *value) in setUniformMatrix4x2fv() 116 const GLfloat *value) in setUniformMatrix3x4fv() 122 const GLfloat *value) in setUniformMatrix4x3fv() 71 setUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) setUniformMatrix2fv() argument 77 setUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) setUniformMatrix3fv() argument 83 setUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) setUniformMatrix4fv() argument 89 setUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) setUniformMatrix2x3fv() argument 95 setUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) setUniformMatrix3x2fv() argument 101 setUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) setUniformMatrix2x4fv() argument 107 setUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) setUniformMatrix4x2fv() argument 113 setUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) setUniformMatrix3x4fv() argument 119 setUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) setUniformMatrix4x3fv() argument
|
H A D | ProgramNULL.h | 52 const GLfloat *value) override; 56 const GLfloat *value) override; 60 const GLfloat *value) override; 64 const GLfloat *value) override; 68 const GLfloat *value) override; 72 const GLfloat *value) override; 76 const GLfloat *value) override; 80 const GLfloat *value) override; 84 const GLfloat *value) override;
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
H A D | Variable.hpp | 37 // Variable is a named value. 41 std::shared_ptr<Value> value; member 43 // operator bool returns true iff value is not nullptr. 44 operator bool() const { return value != nullptr; } in operator bool() 104 // put() places the variable with the given name and value into the container. 105 inline void put(const std::string &name, const std::shared_ptr<Value> &value); 162 return var.value; in get() 177 ASSERT(var.value); in put() 188 variables[it->second].value = var.value; in put() 192 put(const std::string &name, const std::shared_ptr<Value> &value) put() argument [all...] |
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | parser_impl_multiplicative_expression_test.cc | 28 ASSERT_NE(e.value, nullptr); in TEST_F() 39 ASSERT_TRUE(rel->rhs->As<ast::BoolLiteralExpression>()->value); in TEST_F() 48 ASSERT_NE(e.value, nullptr); in TEST_F() 59 ASSERT_TRUE(rel->rhs->As<ast::BoolLiteralExpression>()->value); in TEST_F() 68 ASSERT_NE(e.value, nullptr); in TEST_F() 79 ASSERT_TRUE(rel->rhs->As<ast::BoolLiteralExpression>()->value); in TEST_F() 88 EXPECT_EQ(e.value, nullptr); in TEST_F() 96 EXPECT_EQ(e.value, nullptr); in TEST_F() 107 ASSERT_NE(e.value, nullptr); in TEST_F()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | asyncImportNestedYield.js | 15 if (y = 0, t) op = [op[0] & 2, t.value];
18 case 4: _.label++; return { value: op[1], done: false };
31 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
41 function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
42 function fulfill(value) { resume("next", value); }
43 function reject(value) { resume("throw", value); }
|
H A D | jsDeclarationsExportForms.js | 63 Object.defineProperty(exports, "__esModule", { value: true });
73 Object.defineProperty(exports, "__esModule", { value: true });
93 Object.defineProperty(exports, "__esModule", { value: true });
111 Object.defineProperty(exports, "__esModule", { value: true });
116 Object.defineProperty(exports, "__esModule", { value: true });
122 Object.defineProperty(exports, "__esModule", { value: true });
127 Object.defineProperty(exports, "__esModule", { value: true });
133 Object.defineProperty(exports, "__esModule", { value: true });
151 Object.defineProperty(exports, "__esModule", { value: true });
|