Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:nav_resize_delta
(Results
1 - 2
of
2
) sorted by relevance
/third_party/skia/third_party/externals/imgui/
H
A
D
imgui.cpp
5504
ImVec2
nav_resize_delta
;
in UpdateWindowManualResize()
local
5506
nav_resize_delta
= GetNavInputAmount2d(ImGuiNavDirSourceFlags_Keyboard, ImGuiInputReadMode_Down);
in UpdateWindowManualResize()
5508
nav_resize_delta
= GetNavInputAmount2d(ImGuiNavDirSourceFlags_PadDPad, ImGuiInputReadMode_Down);
in UpdateWindowManualResize()
5509
if (
nav_resize_delta
.x != 0.0f ||
nav_resize_delta
.y != 0.0f)
in UpdateWindowManualResize()
5512
nav_resize_delta
*= ImFloor(NAV_RESIZE_SPEED * g.IO.DeltaTime * ImMin(g.IO.DisplayFramebufferScale.x, g.IO.DisplayFramebufferScale.y));
in UpdateWindowManualResize()
5513
nav_resize_delta
= ImMax(
nav_resize_delta
, visibility_rect.Min - window->Pos - window->Size);
in UpdateWindowManualResize()
5518
size_target = CalcWindowSizeAfterConstraint(window, window->SizeFull +
nav_resize_delta
);
in UpdateWindowManualResize()
/third_party/mesa3d/src/imgui/
H
A
D
imgui.cpp
4775
ImVec2
nav_resize_delta
;
in UpdateManualResize()
local
4777
nav_resize_delta
= GetNavInputAmount2d(ImGuiNavDirSourceFlags_Keyboard, ImGuiInputReadMode_Down);
in UpdateManualResize()
4779
nav_resize_delta
= GetNavInputAmount2d(ImGuiNavDirSourceFlags_PadDPad, ImGuiInputReadMode_Down);
in UpdateManualResize()
4780
if (
nav_resize_delta
.x != 0.0f ||
nav_resize_delta
.y != 0.0f)
in UpdateManualResize()
4783
nav_resize_delta
*= ImFloor(NAV_RESIZE_SPEED * g.IO.DeltaTime * ImMin(g.IO.DisplayFramebufferScale.x, g.IO.DisplayFramebufferScale.y));
in UpdateManualResize()
4788
size_target = CalcSizeAfterConstraint(window, window->SizeFull +
nav_resize_delta
);
in UpdateManualResize()
Completed in 39 milliseconds