Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 25 of 146) sorted by relevance

123456

/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/recycle_node/
H A Drecycle_manager_test.cpp50 bool CompareConfig(ConfigurationChange& c1, ConfigurationChange& c2);
51 bool ContainConfig(ConfigurationChange& c1, ConfigurationChange& c2);
70 bool RecycleManagerTest::CompareConfig(ConfigurationChange& c1, ConfigurationChange& c2) in CompareConfig() argument
72 return c1.colorModeUpdate == c2.colorModeUpdate && c1.languageUpdate == c2.languageUpdate && in CompareConfig()
73c1.directionUpdate == c2.directionUpdate && c1.dpiUpdate == c2.dpiUpdate && c1.fontUpdate == c2.fo… in CompareConfig()
74 c1.iconUpdate == c2.iconUpdate && c1.skinUpdate == c2.skinUpdate && in CompareConfig()
75c1.fontScaleUpdate == c2.fontScaleUpdate && c1.fontWeightScaleUpdate == c2.fontWeightScaleUpdate; in CompareConfig()
80 return c1.colorModeUpdate & c2.colorModeUpdate || c1.languageUpdate & c2.languageUpdate || in ContainConfig()
81c1.directionUpdate & c2.directionUpdate || c1.dpiUpdate & c2.dpiUpdate || c1.fontUpdate & c2.fontU… in ContainConfig()
82c1.iconUpdate & c2.iconUpdate || c1.skinUpdate & c2.skinUpdate || c1.fontScaleUpdate & c2.fontScal… in ContainConfig()
[all …]
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/innerfullscreenlaunchcomponent/interfaces/
H A Dinnerfullscreenlaunchcomponent.js51 setInitiallyProvidedValue(c1) { argument
52 if (c1.content !== undefined) {
53 this.content = c1.content;
55 if (c1.context !== undefined) {
56 this.context = c1.context;
61 if (c1.appId !== undefined) {
62 this.appId = c1.appId;
64 if (c1.options !== undefined) {
65 this.options = c1.options;
67 if (c1.isShow !== undefined) {
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/draw/
H A Dcolor.cpp153 bool operator==(const Color& c1, const Color& c2) in operator ==() argument
155 …return c1.alpha_ == c2.alpha_ && c1.red_ == c2.red_ && c1.green_ == c2.green_ && c1.blue_ == c2.bl… in operator ==()
157 bool operator!=(const Color& c1, const Color& c2) in operator !=() argument
159 …return c1.alpha_ != c2.alpha_ || c1.red_ != c2.red_ || c1.green_ != c2.green_ || c1.blue_ != c2.bl… in operator !=()
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_5.0.0.32/
H A Dchangelogs-ArkGraphics2D.md3 ## c1.ArkGraphics2D.1 OH_NativeImage_GetTransformMatrix接口废弃
35 ## c1.ArkGraphics2D.2 OH_NativeWindow_CreateNativeWindow接口废弃
67 ## c1.ArkGraphics2D.3 OH_NativeWindow_CreateNativeWindowBufferFromSurfaceBuffer接口废弃
99 ## c1.ArkGraphics2D.4 OH_NativeWindow_GetLastFlushedBuffer接口废弃
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/curves/
H A Deasing_curve.cpp164 constexpr float c1 = 1.70158f; in EaseInBack() local
165 constexpr float c3 = c1 + 1.f; in EaseInBack()
166 return c3 * Pow3(t) - c1 * Pow2(t); in EaseInBack()
170 constexpr float c1 = 1.70158f; in EaseOutBack() local
171 constexpr float c3 = c1 + 1.f; in EaseOutBack()
172 return 1.f + c3 * Pow3(t - 1.f) + c1 * Pow2(t - 1.f); in EaseOutBack()
176 constexpr float c1 = 1.70158f; in EaseInOutBack() local
177 constexpr float c2 = c1 * 1.525f; in EaseInOutBack()
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.1.6.5/
H A Dchangelogs-multimedia.md3 ## c1.multimedia.1 ohos.multimedia.audio AudioManager接口setAudioParameter/getAudioParameter废弃
47 ## c1.multimedia.2 ohos.multimedia.audio AudioVolumeGroupManager接口setMicrophoneMute废弃
84 ## c1.multimedia.3 ohos.multimedia.audio CaptureFilterOptions属性usages行为变更
133 ## c1.multimedia.4 ohos.multimedia.audio AudioManager订阅事件interrupt接口废弃
164 ## c1.multimedia.5 ohos.multimedia.audio AudioRenderer接口write/AudioCapturer接口read废弃
219 ## c1.multimedia.6 ohos.multimedia.audio 内录类型获取偏好录音设备行为变更
257 ## c1.multimedia.7 ohos.multimedia.audio AudioManager系列订阅接口行为变更
313 ## c1.multimedia.8 ohos.multimedia.audio availableDevice系统接口添加错误码
355 ## c1.multimedia.9 ohos.multimedia.audioHaptic createPlayer权限声明
424 ## c1.multimedia.10 ohos.multimedia.audio AudioManager错误码实现错误修正
/ohos5.0/commonlibrary/ets_utils/js_api_module/buffer/
H A Dconverter.cpp31 …oUtf16BEToData(const unsigned char *data, u16string &u16Str, string::size_type &index, uint8_t &c1) in Utf8ToUtf16BEToData() argument
38 uint32_t codePoint = ((c1 & LOWER_3_BITS_MASK) << (3 * UTF8_VALID_BITS)) | in Utf8ToUtf16BEToData()
64 uint8_t c1 = data[i]; // The first byte in Utf8ToUtf16BE() local
65 if (IsOneByte(c1)) { // only 1 byte represents the UNICODE code point in Utf8ToUtf16BE()
66 u16Str.push_back(static_cast<char16_t>(c1)); in Utf8ToUtf16BE()
69 switch (c1 & HIGER_4_BITS_MASK) { in Utf8ToUtf16BE()
71 Utf8ToUtf16BEToData(data, u16Str, i, c1); in Utf8ToUtf16BE()
80 uint32_t codePoint = ((c1 & LOWER_4_BITS_MASK) << (2 * UTF8_VALID_BITS)) | in Utf8ToUtf16BE()
91 uint32_t codePoint = ((c1 & LOWER_5_BITS_MASK) << UTF8_VALID_BITS) | in Utf8ToUtf16BE()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/shaders/common/
H A D3d_dm_indirect_lighting_common.h63 const vec4 c1 = vec4(1.0, 0.0425, 1.04, -0.04); in EnvBRDFApprox() local
64 vec4 r = roughness * c0 + c1; in EnvBRDFApprox()
79 const vec2 c1 = { 1, 0.0425 }; in EnvBRDFApproxNonmetal() local
80 vec2 r = Roughness * c0 + c1; in EnvBRDFApproxNonmetal()
/ohos5.0/base/global/resource_management_lite/frameworks/resmgr_lite/src/utils/
H A Dutils.cpp216 unsigned char c1; in StrCompare() local
219 c1 = (unsigned char)*left; in StrCompare()
221 if (c1 == 0 && c2 == 0) { in StrCompare()
224 if (c1 == 0 || c2 == 0) { in StrCompare()
228 rc = (int)(c1) - (int)(c2); in StrCompare()
230 rc = tolower(c1) - tolower(c2); in StrCompare()
/ohos5.0/foundation/graphic/graphic_utils_lite/frameworks/
H A Dcolor.cpp18 ColorType Color::GetMixColor(ColorType c1, ColorType c2, uint8_t mix) in GetMixColor() argument
23 …ret.red = (static_cast<uint16_t>(c1.red) * mix + (static_cast<uint16_t>(c2.red) * (255 ^ mix))) >>… in GetMixColor()
25 …ret.green = (static_cast<uint16_t>(c1.green) * mix + (static_cast<uint16_t>(c2.green) * (255 ^ mix… in GetMixColor()
27 …ret.blue = (static_cast<uint16_t>(c1.blue) * mix + (static_cast<uint16_t>(c2.blue) * (255 ^ mix)))… in GetMixColor()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ndk/cpp/dm/
H A Dalpha_gradients.cpp36 void AlphaGradients::draw_grad(OH_Drawing_Canvas *canvas, DrawRect &r, uint32_t c0, uint32_t c1, bo… in draw_grad() argument
39 c1 = 0xFFFFFFFF; in draw_grad()
40 uint32_t colors[] = {c0, c1}; in draw_grad()
/ohos5.0/foundation/communication/ipc/ipc/native/c/manager/include/
H A Drpc_types.h19 #define ZIPC_PACK_CHARS(c1, c2, c3, c4) ((((c1) << 24)) | (((c2) << 16)) | (((c3) << 8)) | (c4)) argument
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_5.0.0.22/
H A Dchangelogs-multimedia.md3 ## c1.multimedia.1 OH_VideoDecoder_Configure、OH_VideoEncoder_Configure 接口行为变更
39 ## c1.multimedia.1 OH_AVFormat Set 接口行为变更
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_5.0.0.23/
H A Dchangelogs-multimedia.md3 ## c1.multimedia.1 ohos.multimedia.audio 音频内录接口废弃
31 ## c1.multimedia.2 native_audiostream_base.h 音频内录接口废弃
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_5.0.0.32/
H A Dchangelogs-ArkGraphics2D.md3 ## c1.ArkGraphics2D.1 OH_NativeImage_GetTransformMatrix Deprecated
35 ## c1.ArkGraphics2D.2 OH_NativeWindow_CreateNativeWindow Deprecated
67 ## c1.ArkGraphics2D.3 OH_NativeWindow_CreateNativeWindowBufferFromSurfaceBuffer Deprecated
99 ## c1.ArkGraphics2D.4 OH_NativeWindow_GetLastFlushedBuffer Deprecated
/ohos5.0/commonlibrary/ets_utils/platform/ohos/
H A Dutil_helper.cpp182 uint8_t c1 = data[i]; in Utf8ToUtf16BE() local
183 if (IsOneByte(c1)) { in Utf8ToUtf16BE()
184 u16Str.push_back(static_cast<char16_t>(c1)); in Utf8ToUtf16BE()
187 switch (c1 & HIGER_4_BITS_MASK) { in Utf8ToUtf16BE()
192 … uint32_t codePoint = ((c1 & LOWER_3_BITS_MASK) << (3 * UTF8_VALID_BITS)) | // 3:multiple in Utf8ToUtf16BE()
207 … uint32_t codePoint = ((c1 & LOWER_4_BITS_MASK) << (2 * UTF8_VALID_BITS)) | // 2:multiple in Utf8ToUtf16BE()
215 … uint32_t codePoint = ((c1 & LOWER_5_BITS_MASK) << UTF8_VALID_BITS) | (c2 & LOWER_6_BITS_MASK); in Utf8ToUtf16BE()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/util/
H A Duid_util.h28 constexpr void Uint8ToHex(const uint8_t value, char* c0, char* c1) in BASE_BEGIN_NAMESPACE()
32 *c1 = chars[value & 0x0f]; in BASE_BEGIN_NAMESPACE()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt_utils.cpp44 [](char c1, char c2) { return tolower(c1) < tolower(c2); }); in operator ()() argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/platform/ipc_core/
H A Dipc_types.h24 #define ZIPC_PACK_CHARS(c1, c2, c3, c4) ((((c1) << 24)) | (((c2) << 16)) | (((c3) << 8)) | (c4)) argument
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/interstitialdialogaction/interfaces/
H A Dinterstitialdialogaction.js192 (l ? l : this).observeComponentCreation2((a1, b1, c1 = m) => {
193 Text.create(c1.options.subtitle);
197 …Text.fontColor(c1.options.subtitleColor !== undefined ? c1.options.subtitleColor : SUBTITLE_DEFAUL…
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_item_drag_manager.cpp208 float c1 = nearRect.GetOffset().GetMainOffset(axis) + nearRect.GetSize().MainSize(axis) / 2; in ScaleAxisNearItem() local
209 if (NearEqual(c0, c1)) { in ScaleAxisNearItem()
212 float sharped = Curves::SHARP->MoveInternal(std::abs(mainDelta / (c1 - c0))); in ScaleAxisNearItem()
247 …OffsetF c1 = diagonalRect.GetOffset() + OffsetF(diagonalRect.Width() / 2, diagonalRect.Height() / … in ScaleDiagonalItem() local
250 float d0 = c0.GetDistance(c1); in ScaleDiagonalItem()
254 float d1 = c2.GetDistance(c1); in ScaleDiagonalItem()
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.1.6.5/
H A Dchangelogs-multimedia.md3 ## c1.multimedia.1 APIs setAudioParameter and getAudioParameter of the AudioManager Class in ohos.m…
47 ## c1.multimedia.2 API setMicrophoneMute of the AudioVolumeGroupManager Class in ohos.multimedia.au…
83 ## c1.multimedia.3 Behavior of the usages Attribute of CaptureFilterOptions in ohos.multimedia.audi…
130 ## c1.multimedia.4 APIs for Subscribing to or Unsubscribing from the interrupt Event of the AudioMa…
162 ## c1.multimedia.5 API write of the AudioRenderer Class and read of the AudioCapturer Class in ohos…
216 ## c1.multimedia.6 Obtaining Preferred Recording Device Behavior in ohos.multimedia.audio Is Change…
254 ## c1.multimedia.7 Behavior of Subscription APIs of the AudioManager Class in ohos.multimedia.audio…
310 ## c1.multimedia.8 Error Code Is Added for the System API availableDevice in ohos.multimedia.audio
352 ## c1.multimedia.9 Permission Statement Is Added for the createPlayer API in ohos.multimedia.audioH…
421 ## c1.multimedia.10 Error Code Implementation of the AudioManager Class in ohos.multimedia.audio Is…
/ohos5.0/foundation/communication/ipc/interfaces/innerkits/ipc_core/include/
H A Dipc_types.h25 #define ZIPC_PACK_CHARS(c1, c2, c3, c4) ((((c1) << 24)) | (((c2) << 16)) | (((c3) << 8)) | (c4)) argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/draw/
H A Dcolor.h149 friend DRAWING_API bool operator==(const Color& c1, const Color& c2);
150 friend DRAWING_API bool operator!=(const Color& c1, const Color& c2);
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/formatagentplugin/src/
H A Dheif_format_agent.cpp154 uint32_t HeifFormatAgent::Fourcc(uint8_t c1, uint8_t c2, uint8_t c3, uint8_t c4) in Fourcc() argument
156 …return (c1 << (SHIFT_BASE * TIMES_THREE)) | (c2 << (SHIFT_BASE * TIMES_TWO)) | (c3 << SHIFT_BASE) … in Fourcc()

123456