Searched refs:flexibility (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DGridLayout.java119 * The flexibility of a view is therefore influenced by its alignment which is,
137 * When the principle of flexibility does not provide complete disambiguation,
1940 * instead controlled by the principle of <em>flexibility</em>,
2372 public int flexibility; // we're flexible iff all included specs are flexible field in class:GridLayout.Bounds
2381 flexibility = CAN_STRETCH; // from the above, we're flexible when empty
2391 if (canStretch(flexibility)) {
2403 this.flexibility &= spec.getFlexibility();
2985 static boolean canStretch(int flexibility) { argument
2986 return (flexibility & CAN_STRETCH) != 0;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java114 * The flexibility of a view is therefore influenced by its alignment which is,
132 * When the principle of flexibility does not provide complete disambiguation,
1831 * instead controlled by the principle of <em>flexibility</em>,
2262 public int flexibility; // we're flexible iff all included specs are flexible field in class:GridLayout.Bounds
2271 flexibility = CAN_STRETCH; // from the above, we're flexible when empty
2281 if (canStretch(flexibility)) {
2293 this.flexibility &= spec.getFlexibility();
2921 static boolean canStretch(int flexibility) { argument
2922 return (flexibility & CAN_STRETCH) != 0;

Completed in 56 milliseconds