Searched defs:solve (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DGridLayout.java1608 private boolean solve(Arc[] arcs, int[] locations) { method in class:GridLayout.Axis
1609 return solve(arcs, locations, true);
1612 private boolean solve(Arc[] arcs, int[] locations, boolean modifyOnError) { method in class:GridLayout.Axis
1635 return false; // cannot solve with these constraints
1701 private boolean solve(int[] a) { method in class:GridLayout.Axis
1702 return solve(getArcs(), a);
1758 solve(a);
1775 validSolution = solve(getArcs(), a, false);
1787 solve(a);
1807 solve(
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1499 private boolean solve(Arc[] arcs, int[] locations) { method in class:GridLayout.Axis
1500 return solve(arcs, locations, true);
1503 private boolean solve(Arc[] arcs, int[] locations, boolean modifyOnError) { method in class:GridLayout.Axis
1526 return false; // cannot solve with these constraints
1592 private boolean solve(int[] a) { method in class:GridLayout.Axis
1593 return solve(getArcs(), a);
1649 solve(a);
1666 validSolution = solve(getArcs(), a, false);
1678 solve(a);
1698 solve(
[all...]

Completed in 148 milliseconds