| /third_party/node/deps/v8/src/compiler/ |
| H A D | simplified-lowering.cc | 566 Type current = current_integer.GetRange(); in Weaken() local 567 if (current.IsInvalid() || previous.IsInvalid()) { in Weaken() 592 NodeState& current = stack.top(); in GenerateTraversal() local 593 Node* node = current.node; in GenerateTraversal() 597 while (current.input_index < node->InputCount()) { in GenerateTraversal() 598 Node* input = node->InputAt(current.input_index); in GenerateTraversal() 600 current.input_index++; in GenerateTraversal() 609 // the current node will be visited in the Retype phase before one of in GenerateTraversal() 610 // its inputs. If this happens, the current node might need to be in GenerateTraversal()
|
| /third_party/skia/third_party/externals/imgui/ |
| H A D | imgui_demo.cpp | 774 ImGui::Checkbox("Align label with current X position", &align_label_with_current_x_position); in ShowDemoWindowWidgets() 897 "This text should automatically wrap on the edge of the window. The current implementation " in ShowDemoWindowWidgets() 1612 // FIXME: This is rather awkward because current plot API only pass in indices. in ShowDemoWindowWidgets() 1721 ImGui::ColorButton("##current", color, ImGuiColorEditFlags_NoPicker | ImGuiColorEditFlags_AlphaPreviewHalf, ImVec2(60, 40)); in ShowDemoWindowWidgets() 2229 if (item_type == 13){ const char* items[] = { "Apple", "Banana", "Cherry", "Kiwi" }; static int current = 1; ret = ImGui::Combo("ITEM: Combo", ¤t, items, IM_ARRAYSIZE(items)); } in ShowDemoWindowWidgets() local 2230 if (item_type == 14){ const char* items[] = { "Apple", "Banana", "Cherry", "Kiwi" }; static int current = 1; ret = ImGui::ListBox("ITEM: ListBox", ¤t, items, IM_ARRAYSIZE(items), IM_ARRAYSIZE(items)); } in ShowDemoWindowWidgets() local 3179 // Simple selection popup (if you want to show the current selection inside the Button itself, in ShowDemoWindowPopups() 4182 "Also note that as of the current versio 5641 ImGuiMouseCursor current = ImGui::GetMouseCursor(); global() local [all...] |
| /third_party/ffmpeg/libavcodec/ |
| H A D | aacdec_template.c | 118 * Check for the channel element in the current channel position configuration. 122 * @param che_pos current channel position configuration 240 int *current) in count_paired_channels() 246 for (i = *current; i < tags; i++) { in count_paired_channels() 267 *current = i; in count_paired_channels() 501 * Save current output configuration if and only if it has been locked. 515 * Restore the previous output configuration if and only if the current 528 * Configure output channel order based on the current program 573 // current program configuration. in output_configure() 1181 * @param previous_val pointer to the current stat 239 count_paired_channels(uint8_t (layout_map)[3], int tags, int pos, int *current) count_paired_channels() argument [all...] |
| /third_party/skia/src/core/ |
| H A D | SkPath.cpp | 301 // Closing the current contour; but since convexity is a precondition, it's the only in conservativelyContainsRect() 807 this->moveTo(iter.current()); in addRect() 969 this->moveTo(rrectIter.current()); in addRRect() 1071 this->moveTo(ovalIter.current()); in addOval() 1175 // If the current point and target point for the arc are identical, it should be treated as a in arcTo() 1723 // verbs points one beyond the current verb, decrement first. in isClosedContour()
|
| /third_party/typescript/lib/ |
| H A D | typingsInstaller.js | 944 // move to the next element in arrayB without changing the current position 950 // arrayB without adding B to the result or changing the current position 2090 var current = new Array(s2.length + 1); 2100 current[0] = i; 2104 current[j] = big; 2113 : Math.min(/*delete*/ previous[j] + 1, /*insert*/ current[j - 1] + 1, /*substitute*/ substitutionDistance); 2114 current[j] = dist; 2118 current[j] = big; 2125 previous = current; 2126 current [all...] |
| H A D | tsc.js | 1749 var current = new Array(s2.length + 1); 1758 current[0] = i; 1761 current[j] = big; 1769 : Math.min(previous[j] + 1, current[j - 1] + 1, substitutionDistance); 1770 current[j] = dist; 1774 current[j] = big; 1780 previous = current; 1781 current = temp; 5634 The_current_file_is_a_CommonJS_module_and_cannot_use_await_at_the_top_level: diag(1309, ts.DiagnosticCategory.Error, "The_current_file_is_a_CommonJS_module_and_cannot_use_await_at_the_top_level_1309", "The current file is a CommonJS module and cannot use 'await' at the top level."), 5787 The_current_file_is_a_CommonJS_module_whose_imports_will_produce_require_calls_however_the_referenced_file_is_an_ECMAScript_module_and_cannot_be_imported_with_require_Consider_writing_a_dynamic_import_0_call_instead: diag(1479, ts.DiagnosticCategory.Error, "The_current_file_is_a_CommonJS_module_whose_imports_will_produce_require_calls_however_the_reference_1479", "The current fil [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components/common/painter/ |
| H A D | rosen_decoration_painter.cpp | 669 auto current = colorStops_[i].offset; in ClampNegativeOffsets() local 670 if (GreatOrEqual(current, 0.0f)) { in ClampNegativeOffsets() 672 float fraction = -lastNegativeOffset / (current - lastNegativeOffset); in ClampNegativeOffsets() 681 lastNegativeOffset = current; in ClampNegativeOffsets() 2895 LOGW("The current shadow is not drawn if the shadow is invalid."); in PaintBoxShadows() 2947 LOGW("The current shadow is not drawn if the shadow is invalid."); in PaintShadow() 2994 LOGW("The current shadow is not drawn if the shadow is invalid."); in PaintShadow()
|
| /third_party/icu/icu4c/source/test/intltest/ |
| H A D | rbbitst.cpp | 314 if (wb->current() != 4 && wb->next() != 4) in TestEndBehaviour() 708 // not the lead byte of the current code point, even though that has a smaller index. in executeTest() 786 int32_t rulesFirstLine = 0; // Line number of the start of current <rules> block in TestExtended() 1570 // 2. Get access to current seed, to more easily reproduce failures. 3992 // Save current random number seed, so that we can recreate the random numbers in RunMonkey() 4279 TEST_ASSERT(previousBreak < bi->current()); in TestBug5532() 4280 previousBreak = bi->current(); in TestBug5532() 4618 // Bug 13447: verify that getRuleStatus() returns the value corresponding to current(), 4633 assertEquals(WHERE, 4, bi->current()); in TestBug13447()
|
| /third_party/python/Modules/ |
| H A D | _ssl.c | 1136 /* now add this attribute to the current RDN */ in _create_tuple_for_X509_NAME() 2062 const SSL_CIPHER *current; in _ssl__SSLSocket_cipher_impl() local 2066 current = SSL_get_current_cipher(self->ssl); in _ssl__SSLSocket_cipher_impl() 2067 if (current == NULL) in _ssl__SSLSocket_cipher_impl() 2069 return cipher_to_tuple(current); in _ssl__SSLSocket_cipher_impl() 2723 Get channel binding data for current connection. 2757 /* It cannot be negative in current OpenSSL version as of July 2011 */ in _ssl__SSLSocket_get_channel_binding_impl() 3003 /* keep current verify cb */ in _set_verify_mode() 3614 PyDoc_STRVAR(PySSLContext_security_level_doc, "The current security level"); 4407 /* The servername callback expects an argument that represents the current in _servername_callback() [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
| H A D | text_field_pattern.cpp | 2076 auto current = pattern->selectController_->GetCaretIndex(); in OnDragDrop() local 2079 if (current < dragTextStart) { in OnDragDrop() 2082 } else if (current > dragTextEnd) { in OnDragDrop() 2084 pattern->selectController_->UpdateCaretIndex(current - (dragTextEnd - dragTextStart)); in OnDragDrop() 2595 TAG_LOGW(AceLogTag::ACE_AUTO_FILL, "Get current container is nullptr."); in ProcessAutoFill() 4482 // cannot get word length by current caret position and direction in GetWordLength() 4954 // LostFocusToViewRoot may not cause current lost focus, only stop twinkling when it is truly lost focus, in PerformAction() 5634 // shift end, select to the end of current line in HandleSelectionEnd() 6824 auto current = pattern->selectController_->GetEndIndex(); in OnBackPressed() 6826 pattern->UpdateSelection(current); in OnBackPressed() [all...] |
| /third_party/node/deps/v8/src/d8/ |
| H A D | d8.cc | 681 // Executes a string within the current v8 context. 888 // normalization (eliding references to the current directory 1712 // Realm.current() returns the index of the currently active realm. 1823 // security token as the current realm. 2201 // async_hooks.executionAsyncId() returns the asyncId of the current execution 3080 realm_template->Set(isolate, "current", in CreateRealmTemplate() 4675 SourceGroup* current = options.isolate_sources; in SetOptions() local 4676 current->Begin(argv, 1); in SetOptions() 4680 current->End(i); in SetOptions() 4681 current in SetOptions() [all...] |
| /third_party/python/Python/ |
| H A D | compile.c | 17 * CAUTION: The VISIT_* macros abort the current function when they 267 /* fblockinfo tracks the current frame block. 324 basicblock *u_curblock; /* pointer to current block */ 330 int u_lineno; /* the lineno for the current stmt */ 331 int u_col_offset; /* the offset of the current stmt */ 332 int u_end_lineno; /* the end line of the current stmt */ 333 int u_end_col_offset; /* the end offset of the current stmt */ 341 The u pointer points to the current compilation unit, while units 362 struct compiler_unit *u; /* compiler state for current block */ 384 // The current lengt 8654 int current = len - 1; swaptimize() local [all...] |
| /base/global/i18n/frameworks/intl/test/unittest/ |
| H A D | intl_test_extent.cpp | 294 int32_t current = i18nBreakIterator->Current(); in HWTEST_F() local 295 EXPECT_EQ(current, 0); in HWTEST_F()
|
| /device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/ |
| H A D | mali_kbase_mem.c | 343 * @brief Insert a VA region to the list, replacing the current at_reg.
588 /* If the current size of TMEM is out of range of the
in kbase_region_tracker_init() 989 lockdep_assert_held(¤t->mm->mmap_lock);
in kbasep_find_enclosing_cpu_mapping() 995 vma = find_vma_intersection(current->mm, uaddr, uaddr + size);
in kbasep_find_enclosing_cpu_mapping()
|
| H A D | mali_kbase_softjobs.c | 650 if (alloc->imported.user_buf.mm != current->mm) {
in kbase_debug_copy_prepare()
|
| /device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
| H A D | dbus_usb_linux.c | 2837 set_user_nice(current, WL_THREADNICE); in dbus_usbos_tx_thread_func() 3019 set_user_nice(current, WL_THREADNICE); in dbus_usbos_thread_func()
|
| /device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/ |
| H A D | mali_kbase_mem.c | 348 * @brief Insert a VA region to the list, replacing the current at_reg. 603 /* If the current size of TMEM is out of range of the in kbase_region_tracker_init() 1020 lockdep_assert_held(¤t->mm->mmap_lock); in kbasep_find_enclosing_cpu_mapping() 1025 vma = find_vma_intersection(current->mm, uaddr, uaddr+size); in kbasep_find_enclosing_cpu_mapping()
|
| /device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/csf/ |
| H A D | mali_kbase_csf.c | 988 if (current->flags & PF_EXITING) { in kbase_csf_queue_unbind() 2987 out_priority = pcm_device->ops.pcm_scheduler_priority_check(pcm_device, current, req_priority); in kbase_csf_priority_check()
|
| /foundation/window/window_manager/wm/test/unittest/ |
| H A D | window_scene_session_impl_test.cpp | 1144 SystemBarProperty current = window->GetSystemBarPropertyByType(WindowType::WINDOW_TYPE_STATUS_BAR); in HWTEST_F() local 1151 if (property.contentColor_ != current.contentColor_) { in HWTEST_F()
|
| /third_party/ffmpeg/libavutil/x86/ |
| H A D | x86inc.asm | 325 %undef stack_offset ; so that the current value of stack_offset doesn't get baked in by xdefine 365 ; maintain the current stack alignment
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
| H A D | RendererVk.cpp | 676 gl::Version LimitVersionTo(const gl::Version ¤t, const gl::Version &lower) in LimitVersionTo() argument 678 return std::min(current, lower); in LimitVersionTo() 2271 // Check if the current device supports present on this surface. in selectPresentQueueForSurface()
|
| /third_party/skia/third_party/externals/opengl-registry/xml/ |
| H A D | readme.tex | 35 generated from the current authoritative copy of the XML files, can be 535 parameter values, and possibly current GL state as well.
|
| /third_party/python/Lib/unittest/test/testmock/ |
| H A D | testmock.py | 908 current = sys.getrecursionlimit() 909 self.addCleanup(sys.setrecursionlimit, current) 2192 # Directly using __setattr__ on unittest.mock causes current imported
|
| /device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/ |
| H A D | mali_kbase_jd.c | 295 alloc = kbase_map_external_resource(katom->kctx, reg, current->mm); in kbase_jd_pre_external_resources() 542 * this information, and update the current physical page pressure.
|
| H A D | mali_kbase_softjobs.c | 652 if (alloc->imported.user_buf.mm != current->mm) { in kbase_debug_copy_prepare()
|