HomeSort by relevance Sort by last modified time
    Searched refs:hasOverflow (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuView.java 157 boolean hasOverflow = false;
193 if (lp.isOverflowButton) hasOverflow = true;
202 final boolean centerSingleExpandedItem = hasOverflow && visibleItemCount == 2;
262 final boolean singleItem = !hasOverflow && visibleItemCount == 1;
402 boolean hasOverflow = false;
432 hasOverflow = true;
444 if (childCount == 1 && !hasOverflow) {
456 final int spacerCount = nonOverflowCount - (hasOverflow ? 0 : 1);
ActionMenuPresenter.java 204 boolean hasOverflow = false;
208 hasOverflow = !nonActionItems.get(0).isActionViewExpanded();
210 hasOverflow = count > 0;
214 if (hasOverflow) {
364 boolean hasOverflow = false;
372 hasOverflow = true;
383 (hasOverflow || requiredItems + requestedItems > maxActions)) {
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ActionMenuView.java 157 boolean hasOverflow = false;
198 hasOverflow = true;
210 final boolean centerSingleExpandedItem = hasOverflow && visibleItemCount == 2;
276 final boolean singleItem = !hasOverflow && visibleItemCount == 1;
428 boolean hasOverflow = false;
451 hasOverflow = true;
464 if (childCount == 1 && !hasOverflow) {
476 final int spacerCount = nonOverflowCount - (hasOverflow ? 0 : 1);
ActionMenuPresenter.java 211 boolean hasOverflow = false;
215 hasOverflow = !nonActionItems.get(0).isActionViewExpanded();
217 hasOverflow = count > 0;
221 if (hasOverflow) {
380 boolean hasOverflow = false;
388 hasOverflow = true;
399 (hasOverflow || requiredItems + requestedItems > maxActions)) {
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 685 llvm::Value *hasOverflow = 0;
697 hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
711 hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
723 if (!hasOverflow) {
724 hasOverflow = CGF.Builder.CreateICmpULT(numElements,
730 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
755 if (hasOverflow)
756 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed)
    [all...]

Completed in 109 milliseconds