Home
last modified time | relevance | path

Searched refs:value (Results 801 - 825 of 21012) sorted by relevance

1...<<31323334353637383940>>...841

/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dgl_enum_utils.cpp20 void OutputGLenumString(std::ostream &out, GLenumGroup enumGroup, unsigned int value) in OutputGLenumString() argument
22 const char *enumStr = GLenumToString(enumGroup, value); in OutputGLenumString()
31 // If an unknown enum was submitted as GLboolean, just write out the value. in OutputGLenumString()
34 out << value; in OutputGLenumString() local
47 enumStr = GLenumToString(GLenumGroup::DefaultGroup, value); in OutputGLenumString()
55 out << std::hex << "0x" << std::setfill('0') << std::setw(4) << value << std::dec; in OutputGLenumString()
58 void OutputGLbitfieldString(std::ostream &out, GLenumGroup enumGroup, unsigned int value) in OutputGLbitfieldString() argument
60 out << GLbitfieldToString(enumGroup, value); in OutputGLbitfieldString()
63 const char *GLbooleanToString(unsigned int value) in GLbooleanToString() argument
65 return GLenumToString(GLenumGroup::Boolean, value); in GLbooleanToString()
68 GLbitfieldToString(GLenumGroup enumGroup, unsigned int value) GLbitfieldToString() argument
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dtrie2test.c35 uint32_t value; member
41 * value is set from the previous boundary's limit to before
49 uint32_t value; member
64 *pErrorValue=checkRanges[i++].value; in getSpecialValues()
69 *pInitialValue=checkRanges[i++].value; in getSpecialValues()
76 /* utrie2_enum() callback, modifies a value */
78 testEnumValue(const void *context, uint32_t value) { in testEnumValue() argument
80 return value^0x5555; in testEnumValue()
85 testEnumRange(const void *context, UChar32 start, UChar32 end, uint32_t value) { in testEnumRange() argument
90 value in testEnumRange()
118 uint32_t value, value2; testTrieGetters() local
281 uint32_t value; testTrieUTF16() local
385 uint32_t value, bytes; testTrieUTF8() local
524 uint32_t value, value2; testFrozenTrie() local
768 uint32_t value, value2; testTrieSerialize() local
837 uint32_t value; makeTrieWithRanges() local
1299 uint32_t value; makeNewTrie1WithRanges() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/
H A Dtext_styles.cpp27 textStyle.func((group)->prop##name.value()); \
93 std::string GetFontSizeInJson(const std::optional<Dimension>& value) in GetFontSizeInJson() argument
95 return value.value_or(TEXT_DEFAULT_FONT_SIZE).ToString(); in GetFontSizeInJson()
97 std::string GetFontStyleInJson(const std::optional<Ace::FontStyle>& value) in GetFontStyleInJson() argument
99 return value.value_or(Ace::FontStyle::NORMAL) == Ace::FontStyle::NORMAL ? "FontStyle.Normal" : "FontStyle.Italic"; in GetFontStyleInJson()
101 std::string GetFontWeightInJson(const std::optional<FontWeight>& value) in GetFontWeightInJson() argument
103 return V2::ConvertWrapFontWeightToStirng(value.value_or(FontWeight::NORMAL)); in GetFontWeightInJson()
105 std::string GetFontFamilyInJson(const std::optional<std::vector<std::string>>& value) in GetFontFamilyInJson() argument
107 std::vector<std::string> fontFamilyVector = value.value_or<std::vector<std::string>>({ "HarmonyOS Sans" }); in GetFontFamilyInJson()
117 std::string GetSymbolRenderingStrategyInJson(const std::optional<uint32_t>& value) in GetSymbolRenderingStrategyInJson() argument
129 GetSymbolEffectStrategyInJson(const std::optional<uint32_t>& value) GetSymbolEffectStrategyInJson() argument
143 GetLineBreakStrategyInJson(const std::optional<Ace::LineBreakStrategy>& value) GetLineBreakStrategyInJson() argument
156 GetSymbolEffectOptionsInJson(const std::optional<SymbolEffectOptions>& value) GetSymbolEffectOptionsInJson() argument
[all...]
/foundation/arkui/napi/interfaces/inner_api/napi/
H A Dnative_node_api.h55 NAPI_EXTERN napi_status napi_is_callable(napi_env env, napi_value value, bool* result);
84 NAPI_EXTERN napi_status napi_is_arguments_object(napi_env env, napi_value value, bool* result);
85 NAPI_EXTERN napi_status napi_is_async_function(napi_env env, napi_value value, bool* result);
86 NAPI_EXTERN napi_status napi_is_boolean_object(napi_env env, napi_value value, bool* result);
87 NAPI_EXTERN napi_status napi_is_generator_function(napi_env env, napi_value value, bool* result);
88 NAPI_EXTERN napi_status napi_is_date(napi_env env, napi_value value, bool* result);
90 NAPI_EXTERN napi_status napi_is_map_iterator(napi_env env, napi_value value, bool* result);
91 NAPI_EXTERN napi_status napi_is_set_iterator(napi_env env, napi_value value, bool* result);
92 NAPI_EXTERN napi_status napi_is_generator_object(napi_env env, napi_value value, bool* result);
93 NAPI_EXTERN napi_status napi_is_module_namespace_object(napi_env env, napi_value value, boo
[all...]
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Duparse.cpp193 uint32_t value; in u_parseCodePoints() local
212 value=(uint32_t)uprv_strtoul(s, &end, 16); in u_parseCodePoints()
213 if(end<=s || (!U_IS_INV_WHITESPACE(*end) && *end!=';' && *end!=0) || value>=0x110000) { in u_parseCodePoints()
220 dest[count++]=value; in u_parseCodePoints()
242 uint32_t value; in u_parseString() local
272 value=(uint32_t)uprv_strtoul(s, &end, 16); in u_parseString()
273 if(end<=s || (!U_IS_INV_WHITESPACE(*end) && *end!=';' && *end!=0) || value>=0x110000) { in u_parseString()
280 *pFirst=value; in u_parseString()
285 if((destLength+U16_LENGTH(value))<=destCapacity) { in u_parseString()
286 U16_APPEND_UNSAFE(dest, destLength, value); in u_parseString()
303 uint32_t value; u_parseCodePointRangeAnyTerminator() local
369 unsigned int value = 0; u_parseUTF8() local
[all...]
/third_party/icu/icu4c/source/tools/toolutil/
H A Duparse.cpp193 uint32_t value; in u_parseCodePoints() local
212 value=(uint32_t)uprv_strtoul(s, &end, 16); in u_parseCodePoints()
213 if(end<=s || (!U_IS_INV_WHITESPACE(*end) && *end!=';' && *end!=0) || value>=0x110000) { in u_parseCodePoints()
220 dest[count++]=value; in u_parseCodePoints()
242 uint32_t value; in u_parseString() local
272 value=(uint32_t)uprv_strtoul(s, &end, 16); in u_parseString()
273 if(end<=s || (!U_IS_INV_WHITESPACE(*end) && *end!=';' && *end!=0) || value>=0x110000) { in u_parseString()
280 *pFirst=value; in u_parseString()
285 if((destLength+U16_LENGTH(value))<=destCapacity) { in u_parseString()
286 U16_APPEND_UNSAFE(dest, destLength, value); in u_parseString()
303 uint32_t value; u_parseCodePointRangeAnyTerminator() local
369 unsigned int value = 0; u_parseUTF8() local
[all...]
/third_party/libinput/test/
H A Dlitest-device-waltop-tablet.c30 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN },
31 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN },
32 { .type = EV_ABS, .code = ABS_TILT_X, .value = LITEST_AUTO_ASSIGN },
33 { .type = EV_ABS, .code = ABS_TILT_Y, .value = LITEST_AUTO_ASSIGN },
34 { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN },
35 { .type = EV_KEY, .code = LITEST_BTN_TOOL_AUTO, .value = 1 },
36 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
41 { .type = EV_ABS, .code = ABS_X, .value = 0 },
42 { .type = EV_ABS, .code = ABS_Y, .value = 0 },
43 { .type = EV_ABS, .code = ABS_TILT_X, .value
61 get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value) get_axis_default() argument
[all...]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Duparse.cpp193 uint32_t value; in u_parseCodePoints() local
212 value=(uint32_t)uprv_strtoul(s, &end, 16); in u_parseCodePoints()
213 if(end<=s || (!U_IS_INV_WHITESPACE(*end) && *end!=';' && *end!=0) || value>=0x110000) { in u_parseCodePoints()
220 dest[count++]=value; in u_parseCodePoints()
242 uint32_t value; in u_parseString() local
272 value=(uint32_t)uprv_strtoul(s, &end, 16); in u_parseString()
273 if(end<=s || (!U_IS_INV_WHITESPACE(*end) && *end!=';' && *end!=0) || value>=0x110000) { in u_parseString()
280 *pFirst=value; in u_parseString()
285 if((destLength+U16_LENGTH(value))<=destCapacity) { in u_parseString()
286 U16_APPEND_UNSAFE(dest, destLength, value); in u_parseString()
303 uint32_t value; u_parseCodePointRangeAnyTerminator() local
369 unsigned int value = 0; u_parseUTF8() local
[all...]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl_struct_decl_test.cc32 ASSERT_EQ(decos.value.size(), 0u); in TEST_F()
34 auto s = p->struct_decl(decos.value); in TEST_F()
38 ASSERT_NE(s.value, nullptr); in TEST_F()
54 ASSERT_EQ(decos.value.size(), 1u); in TEST_F()
56 auto s = p->struct_decl(decos.value); in TEST_F()
60 ASSERT_NE(s.value, nullptr); in TEST_F()
79 ASSERT_EQ(decos.value.size(), 2u); in TEST_F()
81 auto s = p->struct_decl(decos.value); in TEST_F()
85 ASSERT_NE(s.value, nullptr); in TEST_F()
100 ASSERT_EQ(decos.value in TEST_F()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DimportCallExpressionNestedCJS.js13 Object.defineProperty(exports, "__esModule", { value: true });
17 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
19 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
20 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
21 function step(result) { result.done ? resolve(result.value)
[all...]
H A DtypeInferenceFBoundedTypeParams.js4 function fold<a, r>(values: a[], result: r, fold: (result: r, value: a) => r): r {
5 for (let value of values) {
6 result = fold(result, value);
11 function append<a, b extends a>(values: a[], value: b): a[] {
12 values.push(value);
19 (result, value) => append(
30 var value = values_1[_i];
31 result = fold(result, value);
35 function append(values, value) {
36 values.push(value);
[all...]
/third_party/rust/crates/clap/src/builder/
H A Dvalue_parser.rs11 /// `ValueParser` defines how to convert a raw argument value into a validated and typed value for
88 /// if let Some((var, value)) = env.split_once('=') {
89 /// Ok((var.to_owned(), Some(value.to_owned())))
102 /// let m = cmd.try_get_matches_from_mut(["cmd", "key=value"]).unwrap();
105 /// assert_eq!(*port, ("key".into(), Some("value".into())));
224 /// When `arg` is `None`, an external subcommand value is being parsed.
229 value: &std::ffi::OsStr,
231 self.any_value_parser().parse_ref(cmd, arg, value)
239 /// Reflect on enumerated value propertie
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
H A Dany_test.cc42 explicit MoveOnly(int value) : value(value) {} in MoveOnly()
46 int value = 0; member
51 explicit CopyOnly(int value) : value(value) {} in CopyOnly()
57 int value = 0; member
63 int value) in MoveOnlyWithListConstructor()
64 : value(valu in MoveOnlyWithListConstructor()
69 int value = 0; global() member
76 int value; global() member
413 int value; global() member
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/indexer/
H A Dindexer_paint_property.h39 auto value = MakeRefPtr<IndexerPaintProperty>(); variable
40 value->PaintProperty::UpdatePaintProperty(DynamicCast<PaintProperty>(this));
41 value->propSelectedBackgroundColor_ = CloneSelectedBackgroundColor();
42 value->propPopupBackground_ = ClonePopupBackground();
43 value->propPopupSelectedColor_ = ClonePopupSelectedColor();
44 value->propPopupUnselectedColor_ = ClonePopupUnselectedColor();
45 value->propPopupItemBackground_ = ClonePopupItemBackground();
46 value->propPopupBorderRadius_ = ClonePopupBorderRadius();
47 value->propPopupItemBorderRadius_ = ClonePopupItemBorderRadius();
48 value
[all...]
/foundation/arkui/ace_engine/interfaces/napi/kits/utils/
H A Dnapi_utils.h62 bool GetNapiString(napi_env env, napi_value value, std::string& retStr, napi_valuetype& valueType);
64 bool NapiStringToString(napi_env env, napi_value value, std::string& retStr);
68 napi_value ParseCurve(napi_env env, napi_value value, std::string& curveTypeString, std::vector<float>& curveValue);
72 ResourceStruct CheckResourceStruct(napi_env env, napi_value value);
74 void CompleteResourceParam(napi_env env, napi_value value);
76 void CompleteResourceParamV1(napi_env env, napi_value value);
78 void CompleteResourceParamV2(napi_env env, napi_value value);
80 void ModifyResourceParam(napi_env env, napi_value value, const ResourceType& resType, const std::string& resName);
84 void PreFixEmptyBundleName(napi_env env, napi_value value);
87 napi_env env, napi_value value, ResourceTyp
[all...]
/foundation/distributeddatamgr/preferences/frameworks/ndk/src/
H A Doh_preferences_value.cpp25 static OH_PreferencesValueImpl *GetSelf(const OH_PreferencesValue *value) in GetSelf() argument
27 if (value == nullptr || in GetSelf()
29 value->cid, PreferencesNdkStructId::PREFERENCES_OH_VALUE_CID)) { in GetSelf()
30 LOG_ERROR("preferences_value invalid, value is null: %{public}d", (value == nullptr)); in GetSelf()
33 OH_PreferencesValue *prefValue = const_cast<OH_PreferencesValue *>(value); in GetSelf()
55 LOG_ERROR("failed to get value from pair, pairs is null or index over limit"); in OH_PreferencesPair_GetPreferencesValue()
61 LOG_ERROR("cid error when get value from pair, cid: %{public}ld", static_cast<long>(pairs[index].cid)); in OH_PreferencesPair_GetPreferencesValue()
64 return pairs[index].value; in OH_PreferencesPair_GetPreferencesValue()
84 int OH_PreferencesValue_GetInt(const OH_PreferencesValue *object, int *value) in OH_PreferencesValue_GetInt() argument
101 OH_PreferencesValue_GetBool(const OH_PreferencesValue *object, bool *value) OH_PreferencesValue_GetBool() argument
118 OH_PreferencesValue_GetString(const OH_PreferencesValue *object, char **value, uint32_t *valueLen) OH_PreferencesValue_GetString() argument
[all...]
/foundation/filemanagement/user_file_service/interfaces/inner_api/file_access/src/
H A Dnapi_common_fileaccess.cpp25 napi_value WrapUint32ToJS(napi_env env, uint32_t value) in WrapUint32ToJS() argument
28 NAPI_CALL(env, napi_create_uint32(env, value, &result)); in WrapUint32ToJS()
34 uint32_t value = defaultValue; in UnwrapUint32FromJS() local
35 if (napi_get_value_uint32(env, param, &value) == napi_ok) { in UnwrapUint32FromJS()
36 return value; in UnwrapUint32FromJS()
42 bool UnwrapUint32FromJS2(napi_env env, napi_value param, uint32_t &value) in UnwrapUint32FromJS2() argument
45 if (napi_get_value_uint32(env, param, &value) == napi_ok) { in UnwrapUint32FromJS2()
51 bool UnwrapUint32ByPropertyName(napi_env env, napi_value param, const char *propertyName, uint32_t &value) in UnwrapUint32ByPropertyName() argument
55 return UnwrapUint32FromJS2(env, jsValue, value); in UnwrapUint32ByPropertyName()
61 napi_value WrapBigIntUint64ToJS(napi_env env, uint64_t value) in WrapBigIntUint64ToJS() argument
71 uint64_t value = defaultValue; UnwrapBigIntUint64FromJS() local
89 UnwrapBigIntUint64ByPropertyName(napi_env env, napi_value param, const char *propertyName, uint64_t &value) UnwrapBigIntUint64ByPropertyName() argument
147 GetStringValue(napi_env env, napi_value value, std::string &result) GetStringValue() argument
[all...]
/third_party/skia/third_party/externals/dawn/src/common/
H A DRefBase.h30 // static void Reference(T value) { ... }
31 // static void Release(T value) { ... }
55 // Constructors from a value T.
56 RefBase(T value) : mValue(value) { in RefBase() argument
57 Reference(value); in RefBase()
60 RefBase<T, Traits>& operator=(const T& value) { in operator =() argument
61 Set(value); in operator =()
138 T value{std::move(mValue)};
140 return value;
143 Acquire(T value) Acquire() argument
159 Reference(T value) Reference() argument
164 Release(T value) Release() argument
170 Set(T value) Set() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceUtils.h31 static_assert(!std::is_pointer<S>::value, ""); in bitCopy()
38 /// Check whether an N-bit two's-complement representation can hold value.
39 template <typename T> inline bool IsInt(int N, T value) { in IsInt() argument
41 (static_cast<unsigned int>(N) < (CHAR_BIT * sizeof(value)))); in IsInt()
43 return (-limit <= value) && (value < limit); in IsInt()
46 template <typename T> inline bool IsUint(int N, T value) { in IsUint() argument
48 (static_cast<unsigned int>(N) < (CHAR_BIT * sizeof(value)))); in IsUint()
50 return (0 <= value) && (value < limi in IsUint()
106 rotateLeft32(uint32_t value, uint32_t shift) rotateLeft32() argument
113 rotateRight32(uint32_t value, uint32_t shift) rotateRight32() argument
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Djsi_offscreen_canvas_bridge.cpp25 return index != -1 ? map[index].value : defaultValue; in ConvertStrToEnum()
41 const std::set<std::string> QUALITY_TYPE = { "low", "medium", "high" }; // Default value is low.
43 inline double GetJsDoubleVal(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) in GetJsDoubleVal() argument
45 if (!runtime || !value) { in GetJsDoubleVal()
46 LOGE("runtime or value is null."); in GetJsDoubleVal()
49 if (value->IsNumber(runtime) || value->IsString(runtime)) { in GetJsDoubleVal()
50 return value->ToDouble(runtime); in GetJsDoubleVal()
55 inline std::vector<double> GetJsDashValue(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) in GetJsDashValue() argument
58 if (!runtime || !value) { in GetJsDashValue()
99 GetCurrentBridgeId(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) GetCurrentBridgeId() argument
113 GetOffscreenCanvasBridge( const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) GetOffscreenCanvasBridge() argument
128 GlobalGetOffscreenCanvas(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) GlobalGetOffscreenCanvas() argument
137 JsParseTextDirection(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) JsParseTextDirection() argument
147 JsParseTextState(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) JsParseTextState() argument
229 JsGetContext(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsGetContext() argument
314 JsCreateLinearGradient(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsCreateLinearGradient() argument
335 JsCreateRadialGradient(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsCreateRadialGradient() argument
360 JsAddColorStop(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAddColorStop() argument
384 GetGradient(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) GetGradient() argument
397 JsFillRect(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsFillRect() argument
412 JsStrokeRect(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsStrokeRect() argument
427 JsClearRect(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsClearRect() argument
442 JsFillText(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsFillText() argument
463 JsStrokeText(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsStrokeText() argument
484 JsMeasureText(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsMeasureText() argument
510 JsBeginPath(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsBeginPath() argument
524 JsClosePath(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsClosePath() argument
538 JsMoveTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsMoveTo() argument
554 JsLineTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsLineTo() argument
570 JsBezierCurveTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsBezierCurveTo() argument
591 JsQuadraticCurveTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsQuadraticCurveTo() argument
610 JsArc(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsArc() argument
640 JsArcTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsArcTo() argument
660 JsEllipse(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsEllipse() argument
687 JsRect(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsRect() argument
698 JsFill(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsFill() argument
708 JsStroke(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsStroke() argument
737 JsClip(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsClip() argument
747 JsRestore(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsRestore() argument
761 JsSave(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsSave() argument
775 JsRotate(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsRotate() argument
786 JsScale(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsScale() argument
802 JsSetTransform(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsSetTransform() argument
823 JsTransform(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsTransform() argument
844 JsTranslate(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsTranslate() argument
860 JsSetLineDash(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsSetLineDash() argument
877 JsGetLineDash(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsGetLineDash() argument
888 ParseDomImage(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, double& width, double& height, std::string& src) ParseDomImage() argument
912 JsDrawImage(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsDrawImage() argument
967 JsCreatePath2D(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsCreatePath2D() argument
989 JsPath2DAddPath(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DAddPath() argument
1025 JsPath2DSetTransform(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DSetTransform() argument
1052 JsPath2DMoveTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DMoveTo() argument
1077 JsPath2DLineTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DLineTo() argument
1102 JsPath2DArc(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DArc() argument
1134 JsPath2DArcTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DArcTo() argument
1160 JsPath2DQuadraticCurveTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DQuadraticCurveTo() argument
1186 JsPath2DBezierCurveTo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DBezierCurveTo() argument
1213 JsPath2DEllipse(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DEllipse() argument
1246 JsPath2DRect(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DRect() argument
1272 JsPath2DClosePath(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPath2DClosePath() argument
1292 JsMakePath2D(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsMakePath2D() argument
1312 GetPath2D( const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) GetPath2D() argument
1329 JsTransferToImageBitmap(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsTransferToImageBitmap() argument
1343 JsToDataURL(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsToDataURL() argument
1361 JsCreatePattern(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsCreatePattern() argument
1398 GetPattern(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value) GetPattern() argument
1408 JsCreateImageData(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsCreateImageData() argument
1449 JsPutImageData(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsPutImageData() argument
1561 JsFillStyleGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsFillStyleGetter() argument
1567 JsFillStyleSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsFillStyleSetter() argument
1611 JsStrokeStyleGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsStrokeStyleGetter() argument
1617 JsStrokeStyleSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsStrokeStyleSetter() argument
1661 JsLineCapGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsLineCapGetter() argument
1667 JsLineCapSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsLineCapSetter() argument
1692 JsLineJoinGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsLineJoinGetter() argument
1698 JsLineJoinSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsLineJoinSetter() argument
1723 JsMiterLimitGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsMiterLimitGetter() argument
1729 JsMiterLimitSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsMiterLimitSetter() argument
1748 JsLineWidthGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsLineWidthGetter() argument
1754 JsLineWidthSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsLineWidthSetter() argument
1773 JsTextAlignGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsTextAlignGetter() argument
1779 JsTextAlignSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsTextAlignSetter() argument
1799 JsTextBaselineGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsTextBaselineGetter() argument
1805 JsTextBaselineSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsTextBaselineSetter() argument
1826 JsFontGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsFontGetter() argument
1832 JsFontSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsFontSetter() argument
1872 JsAlphaGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAlphaGetter() argument
1878 JsAlphaSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAlphaSetter() argument
1897 JsCompositeOperationGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsCompositeOperationGetter() argument
1903 JsCompositeOperationSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsCompositeOperationSetter() argument
1938 JsLineDashOffsetGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsLineDashOffsetGetter() argument
1944 JsLineDashOffsetSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsLineDashOffsetSetter() argument
1963 JsShadowBlurGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsShadowBlurGetter() argument
1969 JsShadowBlurSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsShadowBlurSetter() argument
1988 JsShadowColorGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsShadowColorGetter() argument
1994 JsShadowColorSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsShadowColorSetter() argument
2014 JsShadowOffsetXGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsShadowOffsetXGetter() argument
2020 JsShadowOffsetXSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsShadowOffsetXSetter() argument
2039 JsShadowOffsetYGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsShadowOffsetYGetter() argument
2045 JsShadowOffsetYSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsShadowOffsetYSetter() argument
2064 JsSmoothingEnabledGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsSmoothingEnabledGetter() argument
2070 JsSmoothingEnabledSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsSmoothingEnabledSetter() argument
2089 JsSmoothingQualityGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsSmoothingQualityGetter() argument
2095 JsSmoothingQualitySetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsSmoothingQualitySetter() argument
2117 JsFilterParamGetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsFilterParamGetter() argument
2123 JsFilterParamSetter(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsFilterParamSetter() argument
2145 JsIsPointInStroke(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsIsPointInStroke() argument
2188 JsIsPointInPath(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsIsPointInPath() argument
2231 JsResetTransform(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& value, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsResetTransform() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/declaration/common/
H A Ddeclaration.cpp112 inline WindowBlurStyle StrToWindowBlurStyle(const std::string& value) in StrToWindowBlurStyle() argument
124 auto pos = types.find(value); in StrToWindowBlurStyle()
233 operators[operatorIter].value(*this); in AddCommonAttribute()
347 operators[operatorIter].value(*this); in AddCommonStyle()
402 operators[operatorIter].value(*this); in AddCommonEvent()
418 operators[operatorIter].value(*this); in AddCommonMethod()
519 [](const std::string& value, Declaration& declaration) { in SetAttr()
525 clickEffectAttr.clickEffect = ParseClickEffect(value); in SetAttr()
529 [](const std::string& value, Declaration& declaration) { in SetAttr()
532 if (value in SetAttr()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Dtext_field_layout_property.h41 auto value = MakeRefPtr<TextFieldLayoutProperty>(); variable
42 Clone(value); variable
43 return value;
248 auto value = DynamicCast<TextFieldLayoutProperty>(property); variable
249 value->LayoutProperty::UpdateLayoutProperty(DynamicCast<LayoutProperty>(this));
250 value->propFontStyle_ = CloneFontStyle();
251 value->propTextLineStyle_ = CloneTextLineStyle();
252 value->propValue_ = CloneValue();
253 value->propPlaceholderFontStyle_ = ClonePlaceholderFontStyle();
254 value
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dany.pb.h129 template <typename T, class = typename std::enable_if<!std::is_convertible<T, const ::PROTOBUF_NAMESPACE_ID::Message&>::value>::type>
133 template <typename T, class = typename std::enable_if<!std::is_convertible<T, const ::PROTOBUF_NAMESPACE_ID::Message&>::value>::type>
137 template <typename T, class = typename std::enable_if<!std::is_convertible<T, const ::PROTOBUF_NAMESPACE_ID::Message&>::value>::type>
221 void set_type_url(const std::string& value);
222 void set_type_url(std::string&& value);
223 void set_type_url(const char* value);
224 void set_type_url(const char* value, size_t size);
230 void _internal_set_type_url(const std::string& value);
234 // bytes value = 2;
236 const std::string& value() cons
282 set_type_url(const std::string& value) set_type_url() argument
293 _internal_set_type_url(const std::string& value) _internal_set_type_url() argument
295 type_url_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, GetArena()); _internal_set_type_url() local
297 set_type_url(std::string&& value) set_type_url() argument
303 set_type_url(const char* value) set_type_url() argument
310 set_type_url(const char* value, size_t size) set_type_url() argument
340 inline const std::string& Any::value() const { value() function in Any
344 set_value(const std::string& value) set_value() argument
355 _internal_set_value(const std::string& value) _internal_set_value() argument
357 value_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, GetArena()); _internal_set_value() local
359 set_value(std::string&& value) set_value() argument
365 set_value(const char* value) set_value() argument
372 set_value(const void* value, size_t size) set_value() argument
387 set_allocated_value(std::string* value) set_allocated_value() argument
393 value_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, set_allocated_value() local
[all...]
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-helpers.h31 * Get value of pointer from specified non-null compressed pointer.
36 * Extract value of pointer from specified pointer-tag value
42 * Get value of pointer from specified compressed pointer.
47 * Set value of non-null compressed pointer so that it will correspond
54 * Set value of pointer-tag value so that it will correspond
61 * Set value of compressed pointer so that it will correspond
67 * Get value of each tag bit from specified pointer-tag value
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/test/unittest/theme/
H A Dtheme_mock.cpp28 { THEME_ATTR_BG_COLOR, { .type = ThemeConstantsType::COLOR, .value = Color(0xffffff00) } },
29 { THEME_PATTERN_BUTTON, { .type = ThemeConstantsType::PATTERN, .value = 0U } },
37 { PATTERN_BG_COLOR, { .type = ThemeConstantsType::STATE_RESOURCE, .value = 0U } },
38 { PATTERN_TEXT_SIZE, { .type = ThemeConstantsType::STRING, .value = "?theme:textSizeButton1" } },
39 { PATTERN_WIDTH, { .type = ThemeConstantsType::DOUBLE, .value = 36.0 } },
40 { PATTERN_HEIGHT, { .type = ThemeConstantsType::DIMENSION, .value = 36.0_vp } },
48 { STATE_NORMAL, { .type = ThemeConstantsType::COLOR, .value = Color(0x0c000000) } },
49 { STATE_PRESSED, { .type = ThemeConstantsType::COLOR, .value = Color(0x19000000) } },
54 { 117440511, { .type = ThemeConstantsType::COLOR, .value = Color(0xffffffff) } },
55 { 117440512, { .type = ThemeConstantsType::COLOR, .value
[all...]

Completed in 16 milliseconds

1...<<31323334353637383940>>...841