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

  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuView.java 152 boolean hasOverflow = false;
188 if (lp.isOverflowButton) hasOverflow = true;
197 final boolean centerSingleExpandedItem = hasOverflow && visibleItemCount == 2;
257 final boolean singleItem = !hasOverflow && visibleItemCount == 1;
397 boolean hasOverflow = false;
419 hasOverflow = true;
431 if (childCount == 1 && !hasOverflow) {
443 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)) {
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 634 llvm::Value *hasOverflow = 0;
646 hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
660 hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
672 if (!hasOverflow) {
673 hasOverflow = CGF.Builder.CreateICmpULT(numElements,
679 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
704 if (hasOverflow)
705 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed)
    [all...]

Completed in 72 milliseconds