| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
| H A D | AlphabeticIndex.java | 490 private static String fixLabel(String current) { in fixLabel() argument 491 if (!current.startsWith(BASE)) { in fixLabel() 492 return current; in fixLabel() 494 int rest = current.charAt(BASE.length()); in fixLabel() 498 return current.substring(BASE.length()); in fixLabel() 595 // The current AlphabeticIndex Java code never modifies the bucket list once built. in buildImmutableIndex() 674 * Note that the bucket number (and sort key) are only valid for the settings of the current AlphabeticIndex; if 746 // If the item doesn't go in the current bucket, we find the next bucket that contains it. in initBuckets() 763 // if the current bucket isn't the right one, find the one that is in initBuckets() 988 for (String current in createBucketList() [all...] |
| /base/global/resource_management/frameworks/resmgr/include/ |
| H A D | locale_matcher.h | 24 static int8_t IsMoreSuitable(const ResLocale *current, 29 * Whether the current ResLocale same to the other ResLocale 30 * @param current the current ResLocale 32 * @return true if the current ResLocale same to the other ResLocale, else false 34 static bool Match(const ResLocale *current, const ResLocale *other); 68 * Whether the current resLocale more specific than target resLocale 69 * @param current the current resLocale 71 * @return 0 means current resLocal [all...] |
| /base/global/resource_management_lite/frameworks/resmgr_lite/include/ |
| H A D | locale_matcher.h | 24 static int8_t IsMoreSuitable(const ResLocale *current, 29 * Whether the current ResLocale same to the other ResLocale 30 * @param current the current ResLocale 32 * @return true if the current ResLocale same to the other ResLocale, else false 34 static bool Match(const ResLocale *current, const ResLocale *other); 68 * Whether the current resLocale more specific than target resLocale 69 * @param current the current resLocale 71 * @return 0 means current resLocal [all...] |
| /device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/ |
| H A D | mali_osk_misc.c | 61 return (u32)current->tgid; in _mali_osk_get_pid() 66 return (char *)current->comm; in _mali_osk_get_comm() 72 u32 tid = current->pid; in mali_osk_get_tid()
|
| /device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/ |
| H A D | mali_osk_misc.c | 60 return (u32)current->tgid; in _mali_osk_get_pid() 65 return (char *)current->comm; in _mali_osk_get_comm() 72 u32 tid = current->pid; in _mali_osk_get_tid()
|
| /third_party/mesa3d/src/gallium/frontends/clover/core/ |
| H A D | timestamp.cpp | 57 timestamp::current::current(command_queue &q) : in current() function in timestamp::current 62 timestamp::current::operator()() const { in operator ()()
|
| /third_party/skia/third_party/externals/swiftshader/tests/ReactorBenchmarks/ |
| H A D | ReactorBenchmarks.cpp | 45 Int current = 1; in BENCHMARK_DEFINE_F() local 50 auto tmp = current + next; in BENCHMARK_DEFINE_F() 51 current = next; in BENCHMARK_DEFINE_F()
|
| /foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
| H A D | custom_dialog_controller_model_impl.cpp | 72 auto current = Container::Current(); in ShowDialog() local 73 if (!current) { in ShowDialog() 77 if (current->IsSubContainer()) { in ShowDialog() 81 container = std::move(current); in ShowDialog() 107 LOGI("JSCustomDialogController(ShowDialog) current state is pending."); in ShowDialog() 149 auto current = Container::Current(); in CloseDialog() local 150 if (!current) { in CloseDialog() 154 if (current->IsSubContainer()) { in CloseDialog() 158 container = std::move(current); in CloseDialog() 181 LOGI("JSCustomDialogController(CloseDialog) current stat in CloseDialog() [all...] |
| /third_party/node/lib/ |
| H A D | domain.js | 99 const current = pairing.get(asyncId); 100 if (current !== undefined) { // Enter domain for this cb 101 // We will get the domain through current.get(), because the resource 105 current.incRef(); 106 current.get().enter(); 110 const current = pairing.get(asyncId); 111 if (current !== undefined) { // Exit domain for this cb 112 const domain = current.get(); 113 current.decRef(); 312 // current tic [all...] |
| /third_party/ffmpeg/libavcodec/ |
| H A D | dxva2_h264.c | 59 /* Configure current picture */ in fill_picture_parameters() 310 uint8_t *dxva_data, *current, *end; in commit_bitstream_and_slice_buffer() local 340 current = dxva_data; in commit_bitstream_and_slice_buffer() 360 if (start_code_size + size > end - current) { in commit_bitstream_and_slice_buffer() 365 slice->BSNALunitDataLocation = current - dxva_data; in commit_bitstream_and_slice_buffer() 377 memcpy(current, start_code, start_code_size); in commit_bitstream_and_slice_buffer() 378 current += start_code_size; in commit_bitstream_and_slice_buffer() 380 memcpy(current, &ctx_pic->bitstream[position], size); in commit_bitstream_and_slice_buffer() 381 current += size; in commit_bitstream_and_slice_buffer() 383 padding = FFMIN(128 - ((current in commit_bitstream_and_slice_buffer() [all...] |
| /third_party/rust/crates/aho-corasick/src/ |
| H A D | dfa.rs | 196 fn next_state(&self, current: S, input: u8) -> S { in next_state() 197 let o = current.to_usize() * 256 + input as usize; in next_state() 255 fn next_state(&self, current: S, input: u8) -> S { in next_state() 258 let o = current.to_usize() * alphabet_len + input as usize; in next_state() 324 fn next_state(&self, current: S, input: u8) -> S { in next_state() 325 let o = current.to_usize() + input as usize; in next_state() 391 fn next_state(&self, current: S, input: u8) -> S { in next_state() 393 let o = current.to_usize() + input as usize; in next_state() 475 /// Get the next state given `from` as the current state and `byte` as the 476 /// current inpu [all...] |
| /third_party/mesa3d/src/freedreno/perfcntrs/ |
| H A D | fdperf.c | 79 /* current value, ie. by how many did the counter increase in last 82 float current[MAX_CNTR_PER_GROUP]; member 303 group->current[ctr] = (float)dval * 1000000.0 / (float)dt; in resample_counter() 453 redraw_counter_value_cycles(win, group->current[ctr]); in redraw_counter() 455 redraw_counter_value_raw(win, group->current[ctr]); in redraw_counter() 504 redraw_counter_value_raw(win, dev.groups[0].current[0] / 1000000.0); in redraw() 554 int cnt = 0, current = 0, scroll; in counter_dialog() local 563 * so the selected value does not map 1:1 to current idx) in counter_dialog() 568 current = i; in counter_dialog() 585 if ((current in counter_dialog() [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
| H A D | STLExtras.h | 101 RootIt current; member in llvm::mapped_iterator 118 inline const RootIt &getCurrent() const { return current; } in getCurrent() 122 : current(I), Fn(F) {} in mapped_iterator() 125 return Fn(*current); // little change in operator *() 129 ++current; in operator ++() 133 --current; in operator --() 138 ++current; in operator ++() 143 --current; in operator --() 147 return mapped_iterator(current + n, Fn); in operator +() 150 current in operator +=() [all...] |
| /third_party/glfw/deps/ |
| H A D | nuklear.h | 676 /// The input API is responsible for holding the current input state composed of 698 /// After `nk_input_begin` all current input state needs to be provided. This includes 792 /// Mirrors current mouse position to nuklear 801 /// __x__ | Must hold an integer describing the current mouse cursor x-position 802 /// __y__ | Must hold an integer describing the current mouse cursor y-position 1400 /// nk_window_get_panel | Returns the underlying panel which contains all processing state of the current window 1406 /// nk_window_get_scroll | Gets the scroll offset of the current window 1420 /// nk_window_set_scroll | Sets the scroll offset of the current window 1593 /// Returns the current window width 1609 /// Returns the current windo 5605 struct nk_window *current; global() member [all...] |
| /device/soc/rockchip/common/sdk_linux/arch/arm64/kernel/ |
| H A D | process.c | 308 current->thread.uw.tp_value = 0; in tls_thread_flush() 331 flush_ptrace_hw_breakpoint(current); in flush_thread() 347 if (current->mm) { in arch_dup_task_struct() 398 * Read the current TLS pointer from tpidr_el0 as it may be in copy_thread() 445 *task_user_tls(current) = read_sysreg(tpidr_el0); in tls_preserve_current_state() 499 * We store our current task in sp_el0, which is clobbered by userspace. Keep a 534 erratum_1418040_thread_switch(current); in erratum_1418040_new_exec() 580 if (!p || p == current || p->state == TASK_RUNNING) { in get_wchan() 608 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space) { in arch_align_stack() 619 current in arch_setup_new_exec() [all...] |
| /foundation/communication/ipc/ipc/native/src/mock/include/ |
| H A D | dbinder_base_invoker_process.h | 27 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent();
in ProcessTransaction() local 28 if (current == nullptr) {
in ProcessTransaction() 72 auto *stub = current->QueryStubByIndex(tr->cookie);
in ProcessTransaction() 103 current->DetachRawData(listenFd);
in ProcessTransaction() 122 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent();
in ProcessReply() local 123 if (current == nullptr) {
in ProcessReply() 129 std::shared_ptr<ThreadMessageInfo> messageInfo = current->QueryThreadBySeqNumber(tr->seqNumber);
in ProcessReply() 140 messageInfo = current->QueryThreadBySeqNumber(tr->seqNumber);
in ProcessReply() 150 current->WakeUpThreadBySeqNumber(tr->seqNumber, listenFd);
in ProcessReply() 163 current in ProcessReply() [all...] |
| /third_party/gn/src/gn/ |
| H A D | ohos_components.cc | 141 const struct OhosComponentTree *OhosComponentsImpl::findChildByPath(const struct OhosComponentTree *current, in findChildByPath() argument 144 if (current->child == nullptr) { in findChildByPath() 147 const struct OhosComponentTree *item = current->child; in findChildByPath() 164 const struct OhosComponentTree *current = pathTree; in matchComponentByLabel() local 192 child = findChildByPath(current, label, len); in matchComponentByLabel() 197 // No children, return current matched item in matchComponentByLabel() 209 current = child; in matchComponentByLabel() 220 void OhosComponentsImpl::addComponentToTree(struct OhosComponentTree *current, OhosComponent *component) in addComponentToTree() argument 235 struct OhosComponentTree *child = (struct OhosComponentTree *)findChildByPath(current, path, len); in addComponentToTree() 239 child->next = current in addComponentToTree() [all...] |
| /third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
| H A D | place-dep.js | 50 this.current = this.edge.to 68 // if the current location has a peerDep on it, then we can't place here 103 // a given node we're trying to place, but there actually is no current 161 // if we have a current, then we treat CONFLICT as a KEEP. 523 expl.current = curNode && curNode.explain(edge) 524 expl.peerConflict = this.current && this.current.explain(this.edge) 526 expl.current = curNode && curNode.explain() 531 if (peer.current) { 533 current [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
| H A D | tabs_composed_element.cpp | 169 auto current = node; in GetRenderBox() local 170 while (current) { in GetRenderBox() 171 auto renderBox = AceType::DynamicCast<RenderBox>(current); in GetRenderBox() 175 current = current->GetParent().Upgrade(); in GetRenderBox()
|
| /foundation/communication/wifi/wifi/base/state_machine/src/ |
| H A D | message_queue.cpp | 37 InternalMessagePtr current = pMessageQueue; in ~MessageQueue() local 39 while (current != nullptr) { in ~MessageQueue() 40 next = current->GetNextMsg(); in ~MessageQueue() 41 current = nullptr; in ~MessageQueue() 42 current = next; in ~MessageQueue() 66 * If the queue is empty, the current message needs to be executed in AddMessageToQueue() 138 /* Obtains the current time, accurate to milliseconds. */ in GetNextMessage()
|
| /third_party/ffmpeg/libavfilter/ |
| H A D | af_aderivative.c | 43 const type current = src[n]; \ 45 dst[n] = current - prv[0]; \ 46 prv[0] = current; \ 68 const type current = src[n]; \ 70 dst[n] = current + prv[0]; \
|
| /third_party/libuv/src/win/ |
| H A D | req-inl.h | 97 uv_req_t* current = loop->pending_reqs_tail; in uv__insert_pending_req() local 99 assert(req != current); in uv__insert_pending_req() 100 current = current->next_req; in uv__insert_pending_req() 101 } while(current != loop->pending_reqs_tail); in uv__insert_pending_req()
|
| /third_party/node/lib/internal/ |
| H A D | error_serdes.js | 83 for (let current = object; 84 current !== null; 85 current = ObjectGetPrototypeOf(current)) { 86 const desc = ObjectGetOwnPropertyDescriptor(current, 'constructor');
|
| /third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
| H A D | lp_setup_context.h | 97 struct lp_scene *scene; /**< current scene being built */ 144 struct lp_rast_state current; /**< currently set state */ member 151 struct pipe_constant_buffer current; member 158 struct pipe_shader_buffer current; member 163 struct pipe_image_view current; member 167 struct pipe_blend_color current; member
|
| /third_party/node/deps/v8/src/handles/ |
| H A D | persistent-handles.cc | 127 for (PersistentHandles* current = persistent_handles_head_; current; in Iterate() 128 current = current->next_) { in Iterate() 129 current->Iterate(visitor); in Iterate()
|