Home
last modified time | relevance | path

Searched refs:left (Results 926 - 950 of 2937) sorted by relevance

1...<<31323334353637383940>>...118

/third_party/skia/docs/examples/
H A DRect_intersect.cpp10 SkDebugf("%g, %g, %g, %g\n", leftRect.left(), leftRect.top(), in REG_FIDDLE()
H A DIRect_intersect.cpp10 SkDebugf("%d, %d, %d, %d\n", leftRect.left(), leftRect.top(), in REG_FIDDLE()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/linear_split/
H A Dlinear_split_layout_algorithm.cpp289 auto startPointX = (parentWidth - childTotalWidth) / 2 + padding.left.value_or(0.0f); in Layout()
324 float marginWidth = childMargin.left.value_or(0.f) + childMargin.right.value_or(0.f); in LayoutRowSplit()
363 if (padding.left.has_value()) { in LayoutColumnSplit()
364 childOffsetMain = padding.left.value(); in LayoutColumnSplit()
491 startPointX += padding.left.value_or(0.0f); in LayoutBeforeAPI10()
550 if (padding.left.has_value()) { in LayoutColumnSplitBeforeAPI10()
551 childOffsetMain = padding.left.value(); in LayoutColumnSplitBeforeAPI10()
/foundation/arkui/ace_engine/test/unittest/core/manager/
H A Dsafe_area_manager_test_ng.cpp74 float left; member
125 EXPECT_EQ(s1.left, s2.left); in CommonExpectEQ()
405 auto funExpect = [this](bool withoutProcess, float left, float right, float top, float bottom) { in HWTEST_F()
407 CommonExpectEQ(Rect { ret.left.value_or(0.0f), ret.right.value_or(0.0f), ret.top.value_or(0.0f), in HWTEST_F()
409 Rect { left, right, top, bottom }); in HWTEST_F()
433 Rect { ret.left.value_or(0.0f), ret.right.value_or(0.0f), ret.top.value_or(0.0f), ret.bottom.value_or(0.0f) }, in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/
H A Drender_node.h388 return positionParam_.left.first; in GetLeft()
418 return positionParam_.left.second; in HasLeft()
436 virtual void SetLeft(const Dimension& left) // add for animation in SetLeft() argument
438 if (positionParam_.left.first != left) { in SetLeft()
439 positionParam_.left = std::make_pair(left, true); in SetLeft()
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/source/remote_fast/
H A Dremote_fast_audio_capturer_source.cpp74 int32_t SetVolume(float left, float right) override;
75 int32_t GetVolume(float &left, float &right) override;
581 int32_t RemoteFastAudioCapturerSourceInner::SetVolume(float left, float right) in SetVolume() argument
583 AUDIO_INFO_LOG("Set volume enter, left %{public}f, right %{public}f.", left, right); in SetVolume()
587 leftVolume_ = left; in SetVolume()
604 int32_t RemoteFastAudioCapturerSourceInner::GetVolume(float &left, float &right) in GetVolume() argument
609 left = val; in GetVolume()
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/source/remote/
H A Dremote_audio_capturer_source.cpp78 int32_t SetVolume(float left, float right) override;
79 int32_t GetVolume(float &left, float &right) override;
499 int32_t RemoteAudioCapturerSourceInner::SetVolume(float left, float right) in SetVolume() argument
505 float leftVolume = left; in SetVolume()
517 AUDIO_INFO_LOG("remote setVolume(%{public}f, %{public}f):%{public}d", left, right, ret); in SetVolume()
521 int32_t RemoteAudioCapturerSourceInner::GetVolume(float &left, float &right) in GetVolume() argument
526 left = val; in GetVolume()
/test/testfwk/xdevice/src/xdevice/_core/command/
H A Dconsole.py691 left, middle, right = 23, 49, 49
692 two_segments = "{0:-<%s}{1:-<%s}+" % (left, middle + right)
693 two_rows = "|{0:^%s}|{1:^%s}|" % (left - 1, middle + right - 1)
695 three_segments = "{0:-<%s}{1:-<%s}{2:-<%s}+" % (left, middle, right)
697 (left - 1, middle - 1, right - 1)
723 if len(module) > left - 1:
724 module = "%s..." % module[:left - 4]
/third_party/ffmpeg/libavcodec/
H A Dsnow.h258 const BlockNode *left, const BlockNode *top, const BlockNode *tr){ in pred_mv()
260 *mx = mid_pred(left->mx, top->mx, tr->mx); in pred_mv()
261 *my = mid_pred(left->my, top->my, tr->my); in pred_mv()
264 *mx = mid_pred((left->mx * scale[left->ref] + 128) >>8, in pred_mv()
267 *my = mid_pred((left->my * scale[left->ref] + 128) >>8, in pred_mv()
257 pred_mv(SnowContext *s, int *mx, int *my, int ref, const BlockNode *left, const BlockNode *top, const BlockNode *tr) pred_mv() argument
/third_party/mbedtls/library/
H A Dsha256.c649 uint32_t left; in mbedtls_sha256_update() local
655 left = ctx->total[0] & 0x3F; in mbedtls_sha256_update()
656 fill = SHA256_BLOCK_SIZE - left; in mbedtls_sha256_update()
665 if (left && ilen >= fill) { in mbedtls_sha256_update()
666 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_sha256_update()
674 left = 0; in mbedtls_sha256_update()
689 memcpy((void *) (ctx->buffer + left), input, ilen); in mbedtls_sha256_update()
H A Dsha1.c244 uint32_t left; in mbedtls_sha1_update() local
250 left = ctx->total[0] & 0x3F; in mbedtls_sha1_update()
251 fill = 64 - left; in mbedtls_sha1_update()
260 if (left && ilen >= fill) { in mbedtls_sha1_update()
261 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_sha1_update()
269 left = 0; in mbedtls_sha1_update()
282 memcpy((void *) (ctx->buffer + left), input, ilen); in mbedtls_sha1_update()
H A Dripemd160.c272 uint32_t left; in mbedtls_ripemd160_update() local
278 left = ctx->total[0] & 0x3F; in mbedtls_ripemd160_update()
279 fill = 64 - left; in mbedtls_ripemd160_update()
288 if (left && ilen >= fill) { in mbedtls_ripemd160_update()
289 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_ripemd160_update()
297 left = 0; in mbedtls_ripemd160_update()
310 memcpy((void *) (ctx->buffer + left), input, ilen); in mbedtls_ripemd160_update()
/third_party/node/deps/v8/src/compiler/
H A Djs-inlining-heuristic.cc295 // Make sure we have some extra budget left, so that any small functions in Finalize()
790 const Candidate& left, const Candidate& right) const { in operator ()()
792 if (left.frequency.IsUnknown()) { in operator ()()
793 // If left and right are both unknown then the ordering is indeterminate, in operator ()()
796 return left.node->id() > right.node->id(); in operator ()()
799 } else if (left.frequency.IsUnknown()) { in operator ()()
801 } else if (left.frequency.value() > right.frequency.value()) { in operator ()()
803 } else if (left.frequency.value() < right.frequency.value()) { in operator ()()
806 return left.node->id() > right.node->id(); in operator ()()
789 operator ()( const Candidate& left, const Candidate& right) const operator ()() argument
/third_party/node/deps/v8/src/ic/
H A Dbinary-op-assembler.cc598 Operation bitwise_op, TNode<Object> left, TNode<Object> right, in Generate_BitwiseBinaryOpWithOptionalFeedback()
612 TVARIABLE(Object, var_left_maybe_bigint, left); in Generate_BitwiseBinaryOpWithOptionalFeedback()
619 context(), left, &if_left_number, &var_left_word32, &if_left_bigint, in Generate_BitwiseBinaryOpWithOptionalFeedback() local
689 Operation bitwise_op, TNode<Object> left, TNode<Object> right, in Generate_BitwiseBinaryOpWithSmiOperandAndOptionalFeedback()
703 Branch(TaggedIsSmi(left), &if_lhsissmi, &if_lhsisnotsmi); in Generate_BitwiseBinaryOpWithSmiOperandAndOptionalFeedback()
707 TNode<Smi> left_smi = CAST(left); in Generate_BitwiseBinaryOpWithSmiOperandAndOptionalFeedback()
723 TNode<HeapObject> left_pointer = CAST(left); in Generate_BitwiseBinaryOpWithSmiOperandAndOptionalFeedback()
597 Generate_BitwiseBinaryOpWithOptionalFeedback( Operation bitwise_op, TNode<Object> left, TNode<Object> right, const LazyNode<Context>& context, TNode<UintPtrT>* slot, const LazyNode<HeapObject>* maybe_feedback_vector, UpdateFeedbackMode update_feedback_mode) Generate_BitwiseBinaryOpWithOptionalFeedback() argument
688 Generate_BitwiseBinaryOpWithSmiOperandAndOptionalFeedback( Operation bitwise_op, TNode<Object> left, TNode<Object> right, const LazyNode<Context>& context, TNode<UintPtrT>* slot, const LazyNode<HeapObject>* maybe_feedback_vector, UpdateFeedbackMode update_feedback_mode) Generate_BitwiseBinaryOpWithSmiOperandAndOptionalFeedback() argument
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c752 int left; member
765 written = vsnprintf(sctx->ptr, sctx->left, format, ap); in str_dump_ctx_printf()
772 if (written >= sctx->left) { in str_dump_ctx_printf()
774 written = sctx->left; in str_dump_ctx_printf()
777 sctx->left -= written; in str_dump_ctx_printf()
799 ctx.left = (int)size; in tgsi_dump_str()
827 ctx.left = (int)size; in tgsi_dump_instruction_str()
/third_party/skia/include/core/
H A DSkRect.h25 is less than or equal to its left, or if its bottom is less than or equal to
41 Many other rectangles are empty; if left is equal to or greater than right,
112 /** Returns left edge of SkIRect, if sorted.
117 int32_t left() const { return fLeft; } in left() function
140 /** Returns left edge of SkIRect, if sorted. Call isEmpty() to see if SkIRect may be invalid,
240 Many other rectangles are empty; if left is equal to or greater than right,
246 /** Sets SkIRect to (left, top, right, bottom).
247 left and right are not sorted; left is not necessarily less than right.
250 @param left store
[all...]
/foundation/ability/ability_runtime/frameworks/js/napi/js_dialog_request/
H A Djs_dialog_request.cpp99 int32_t left = want.GetIntParam(RequestConstants::WINDOW_RECTANGLE_LEFT_KEY, 0); in OnGetRequestInfo() local
104 auto requestInfo = new RequestInfo(callerToken, left, top, width, height); in OnGetRequestInfo()
/foundation/ability/form_fwk/test/fuzztest/formiteminfo_fuzzer/
H A Dformiteminfo_fuzzer.cpp55 std::string left(data, size); in DoSomethingInterestingWithMyAPI()
57 formItemInfo.IsEqual(left, right); in DoSomethingInterestingWithMyAPI()
/foundation/arkui/ace_engine/frameworks/core/components/picker/
H A Dpicker_date_component.h142 int SolarDateCompare(const PickerDate& left, const PickerDate& right) const;
144 int LunarDateCompare(const LunarDate& left, const LunarDate& right) const;
/foundation/arkui/ace_engine/frameworks/core/components/video/resource/
H A Dext_surface.cpp123 void ExtSurface::SetBounds(int64_t surfaceId, int32_t left, int32_t top, int32_t width, int32_t height) in SetBounds() argument
126 paramStream << SURFACE_ID << PARAM_EQUALS << surfaceId << PARAM_AND << SURFACE_LEFT << PARAM_EQUALS << left in SetBounds()
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dswiper_indicator.h100 void SetLeft(const Dimension& left) in SetLeft() argument
102 left_ = left; in SetLeft()
/foundation/arkui/ace_engine/frameworks/core/components/side_bar/
H A Dside_bar_container_component.cpp176 void SideBarContainerComponent::SetButtonLeft(double left) in SetButtonLeft() argument
178 declaration_->SetLeft(left); in SetButtonLeft()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/container_modal/interfaces/
H A Dcustomtitle.js120 Row.padding({ top: 6, bottom: 6, left: 8, right: 8 });
135 Image.margin({ left: TITLE_ELEMENT_MARGIN_HORIZONTAL, right: TITLE_ELEMENT_MARGIN_HORIZONTAL });
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_state_mgmt_profiler.cpp94 ss << std::left << "Block name" << std::setw(nameWidth) << std::right << "#Calls" << std::setw(itemWidth) << "Self" in Report()
122 ss << std::left << std::string(depth, ' '); in Report()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_image_animator_ffi.cpp38 Dimension leftDime(ffiImages.left, static_cast<DimensionUnit>(ffiImages.leftUnit)); in ParseImages()
43 imageProperties.left = leftDime; in ParseImages()

Completed in 22 milliseconds

1...<<31323334353637383940>>...118