/third_party/skia/docs/examples/ |
H A D | Rect_intersect.cpp | 10 SkDebugf("%g, %g, %g, %g\n", leftRect.left(), leftRect.top(), in REG_FIDDLE()
|
H A D | IRect_intersect.cpp | 10 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 D | linear_split_layout_algorithm.cpp | 289 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 D | safe_area_manager_test_ng.cpp | 74 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 D | render_node.h | 388 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 D | remote_fast_audio_capturer_source.cpp | 74 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 D | remote_audio_capturer_source.cpp | 78 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 D | console.py | 691 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 D | snow.h | 258 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 D | sha256.c | 649 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 D | sha1.c | 244 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 D | ripemd160.c | 272 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 D | js-inlining-heuristic.cc | 295 // 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 D | binary-op-assembler.cc | 598 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 D | tgsi_dump.c | 752 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 D | SkRect.h | 25 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 D | js_dialog_request.cpp | 99 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 D | formiteminfo_fuzzer.cpp | 55 std::string left(data, size); in DoSomethingInterestingWithMyAPI() 57 formItemInfo.IsEqual(left, right); in DoSomethingInterestingWithMyAPI()
|
/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | picker_date_component.h | 142 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 D | ext_surface.cpp | 123 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 D | swiper_indicator.h | 100 void SetLeft(const Dimension& left) in SetLeft() argument 102 left_ = left; in SetLeft()
|
/foundation/arkui/ace_engine/frameworks/core/components/side_bar/ |
H A D | side_bar_container_component.cpp | 176 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 D | customtitle.js | 120 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 D | js_state_mgmt_profiler.cpp | 94 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 D | cj_image_animator_ffi.cpp | 38 Dimension leftDime(ffiImages.left, static_cast<DimensionUnit>(ffiImages.leftUnit)); in ParseImages() 43 imageProperties.left = leftDime; in ParseImages()
|