OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:expandX
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
TableTest.java
89
// Test colspan with
expandX
.
93
root.add(new Label("meow meow meow meow meow meow meow meow meow meow meow meow", skin)).colspan(3).
expandX
();
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Cell.java
29
Integer
expandX
, expandY;
548
/** Sets
expandX
, expandY, fillX, and fillY to 1. */
550
expandX
= onei;
557
/** Sets
expandX
and fillX to 1. */
559
expandX
= onei;
571
/** Sets
expandX
and expandY to 1. */
573
expandX
= onei;
578
/** Sets
expandX
to 1. */
579
public Cell<T>
expandX
() {
580
expandX
= onei
[
all
...]
Table.java
793
if (colspan == 1 && c.
expandX
!= 0 && expandWidth[column] == 0) expandWidth[column] = c.
expandX
;
837
int
expandX
= c.
expandX
;
839
if (
expandX
!= 0) {
844
expandWidth[ii] =
expandX
;
[
all
...]
Completed in 293 milliseconds