| /third_party/node/deps/v8/src/torque/ |
| H A D | implementation-visitor.cc | 2759 size_t current = 0; in GenerateCall() local [all...] |
| /third_party/musl/ldso/linux/ |
| H A D | dynlink.c | 2570 static uint8_t* sleb128_decoder(uint8_t* current, uint8_t* end, size_t* value) in sleb128_decoder() argument 4666 struct dso *current; in dl_iterate_phdr() local [all...] |
| /third_party/mesa3d/src/imgui/ |
| H A D | imgui_draw.cpp | 485 ImVec4 current = _ClipRectStack.Data[_ClipRectStack.Size-1]; in PushClipRect() local [all...] |
| H A D | imgui.cpp | 4449 { int current = window->IDStack.Size; if (write) *p_backup = (short)current; else IM_ASSERT(*p_backup == current && "PushID/PopID or TreeNode/TreePop Mismatch!"); p_backup++; } // Too few or too many PopID()/TreePop() CheckStacksSize() local 4450 { int current = window->DC.GroupStack.Size; if (write) *p_backup = (short)current; else IM_ASSERT(*p_backup == current && "BeginGroup/EndGroup Mismatch!"); p_backup++; } // Too few or too many EndGroup() CheckStacksSize() local 4451 { int current = g.BeginPopupStack.Size; if (write) *p_backup = (short)current; else IM_ASSERT(*p_backup == current && "BeginMenu/EndMenu or BeginPopup/EndPopup Mismatch"); p_backup++;}// Too few or too many EndMenu()/EndPopup() CheckStacksSize() local 4453 { int current = g.ColorModifiers.Size; if (write) *p_backup = (short)current; else IM_ASSERT(*p_backup >= current && "PushStyleColor/PopStyleColor Mismatch!"); p_backup++; } // Too few or too many PopStyleColor() CheckStacksSize() local 4454 { int current = g.StyleModifiers.Size; if (write) *p_backup = (short)current; else IM_ASSERT(*p_backup >= current && "PushStyleVar/PopStyleVar Mismatch!"); p_backup++; } // Too few or too many PopStyleVar() CheckStacksSize() local 4455 { int current = g.FontStack.Size; if (write) *p_backup = (short)current; else IM_ASSERT(*p_backup >= current && "PushFont/PopFont Mismatch!"); p_backup++; } // Too few or too many PopFont() CheckStacksSize() local [all...] |
| H A D | imgui_internal.h | 247 static inline float ImLinearSweep(float current, float target, float speed) { if (current < target) return ImMin(current + speed, target); if (current > target) return ImMax(current - speed, target); return current; } in ImLinearSweep() argument [all...] |
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| H A D | validationES.cpp | 8206 ValidateLoseContextCHROMIUM(const Context *context, angle::EntryPoint entryPoint, GraphicsResetStatus current, GraphicsResetStatus other) ValidateLoseContextCHROMIUM() argument [all...] |
| H A D | Context.cpp | 1023 void Context::loseContext(GraphicsResetStatus current, GraphicsResetStatus other) in loseContext() argument [all...] |
| /third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
| H A D | entry_points_gles_ext_autogen.cpp | 3840 void GL_APIENTRY GL_LoseContextCHROMIUM(GLenum current, GLenum other) in GL_LoseContextCHROMIUM() argument
|
| H A D | libGLESv2_autogen.cpp | 3804 void GL_APIENTRY glLoseContextCHROMIUM(GLenum current, GLenum other) in glLoseContextCHROMIUM() argument
|
| /third_party/skia/third_party/externals/imgui/ |
| H A D | imgui_demo.cpp | 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 5641 ImGuiMouseCursor current = ImGui::GetMouseCursor(); global() local [all...] |
| H A D | imgui_draw.cpp | 583 ImVec4 current = _CmdHeader.ClipRect; in PushClipRect() local [all...] |
| /third_party/python/Modules/ |
| H A D | _ssl.c | 2062 const SSL_CIPHER *current; in _ssl__SSLSocket_cipher_impl() local [all...] |
| /foundation/arkui/ace_engine/frameworks/core/pipeline_ng/ |
| H A D | pipeline_context.cpp | 386 LinearInterpolation( const std::tuple<float, float, uint64_t>& history, const std::tuple<float, float, uint64_t>& current, const uint64_t nanoTimeStamp) LinearInterpolation() argument 452 GetResampleCoord(const std::vector<TouchEvent>& history, const std::vector<TouchEvent>& current, const uint64_t nanoTimeStamp, const bool isScreen) GetResampleCoord() argument 493 GetResampleTouchEvent(const std::vector<TouchEvent>& history, const std::vector<TouchEvent>& current, const uint64_t nanoTimeStamp, TouchEvent& newTouchEvent) GetResampleTouchEvent() argument 523 GetLatestPoint(const std::vector<TouchEvent>& current, const uint64_t nanoTimeStamp) GetLatestPoint() argument 547 GetResampleMouseEvent( const std::vector<MouseEvent>& history, const std::vector<MouseEvent>& current, const uint64_t nanoTimeStamp) GetResampleMouseEvent() argument 573 GetMouseResampleCoord(const std::vector<MouseEvent>& history, const std::vector<MouseEvent>& current, const uint64_t nanoTimeStamp, const bool isScreen) GetMouseResampleCoord() argument 598 GetMouseLatestPoint(const std::vector<MouseEvent>& current, const uint64_t nanoTimeStamp) GetMouseLatestPoint() argument 741 GetResamplePointerEvent(const std::vector<PointerEvent>& history, const std::vector<PointerEvent>& current, const uint64_t nanoTimeStamp) GetResamplePointerEvent() argument 757 GetResamplePointerCoord( const std::vector<PointerEvent>& history, const std::vector<PointerEvent>& current, const uint64_t nanoTimeStamp, const bool isScreen) GetResamplePointerCoord() argument 783 GetPointerLatestPoint(const std::vector<PointerEvent>& current, const uint64_t nanoTimeStamp) GetPointerLatestPoint() argument [all...] |
| /third_party/mesa3d/src/gallium/drivers/radeonsi/ |
| H A D | si_pipe.h | 846 struct si_shader *current; member
|
| /third_party/node/deps/v8/src/d8/ |
| H A D | d8.cc | 4675 SourceGroup* current = options.isolate_sources; in SetOptions() local [all...] |
| /third_party/node/deps/v8/src/heap/ |
| H A D | heap.cc | 1586 HeapObject current = (*objects)[0]; in ReportDuplicates() local 1692 int64_t current = external_memory_.total(); in ReportExternalMemoryPressure() local 3101 Object current = list; ForeachAllocationSite() local 6903 Object current = dirty_js_finalization_registries_list(); RemoveDirtyFinalizationRegistriesOnContext() local [all...] |
| /third_party/node/deps/v8/src/execution/ |
| H A D | isolate.cc | 582 wasm::StackMemory* current = wasm_stacks_; in Iterate() local [all...] |
| /third_party/node/deps/v8/src/interpreter/ |
| H A D | bytecode-generator.cc | 550 ControlScope* current = this; in PerformCommand() local 3358 ZonePtrList<Expression>::const_iterator current = elements->begin(); BuildCreateArrayLiteral() local [all...] |
| /third_party/pcre2/pcre2/src/ |
| H A D | pcre2_jit_compile.c | 3329 static sljit_sw SLJIT_FUNC do_search_mark(sljit_sw *current, PCRE2_SPTR skip_arg) in do_search_mark() argument 12417 compile_iterator_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_iterator_backtrackingpath() argument 12545 compile_ref_iterator_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_ref_iterator_backtrackingpath() argument 12570 compile_recurse_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_recurse_backtrackingpath() argument 12590 compile_assert_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_assert_backtrackingpath() argument 12659 compile_bracket_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_bracket_backtrackingpath() argument 13126 compile_bracketpos_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_bracketpos_backtrackingpath() argument 13166 compile_braminzero_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_braminzero_backtrackingpath() argument 13190 compile_control_verb_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_control_verb_backtrackingpath() argument 13252 compile_then_trap_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_then_trap_backtrackingpath() argument 13285 compile_backtrackingpath(compiler_common *common, struct backtrack_common *current) compile_backtrackingpath() argument [all...] |
| /third_party/skia/third_party/externals/libpng/contrib/libtests/ |
| H A D | pngvalid.c | 732 png_alloc_size_t current; /* Current allocation */ member 779 png_store_file* current; /* Set when reading */ member [all...] |
| /third_party/python/Python/ |
| H A D | compile.c | 8654 int current = len - 1; swaptimize() local [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 [all...] |
| /third_party/glslang/glslang/Include/ |
| H A D | intermediate.h | 1844 void incrementDepth(TIntermNode *current) in incrementDepth() argument
|
| /third_party/mesa3d/src/mesa/main/ |
| H A D | mtypes.h | 3098 struct gl_array_attributes current[VBO_ATTRIB_MAX]; global() member [all...] |
| /third_party/skia/third_party/externals/sfntly/java/lib/ |
| H A D | jcommander-1.27.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/beust/
com/beust/jcommander/
com/beust/jcommander/converters/
... |