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

  /frameworks/base/core/java/android/widget/
ActionMenuView.java 203 boolean hasOverflow = false;
239 if (lp.isOverflowButton) hasOverflow = true;
248 final boolean centerSingleExpandedItem = hasOverflow && visibleItemCount == 2;
308 final boolean singleItem = !hasOverflow && visibleItemCount == 1;
447 boolean hasOverflow = false;
477 hasOverflow = true;
489 if (childCount == 1 && !hasOverflow) {
501 final int spacerCount = nonOverflowCount - (hasOverflow ? 0 : 1);
ActionMenuPresenter.java 458 boolean hasOverflow = false;
462 hasOverflow = !nonActionItems.get(0).isActionViewExpanded();
464 hasOverflow = count > 0;
468 if (hasOverflow) {
645 boolean hasOverflow = false;
653 hasOverflow = true;
664 (hasOverflow || requiredItems + requestedItems > maxActions)) {
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ActionMenuView.java 207 boolean hasOverflow = false;
243 if (lp.isOverflowButton) hasOverflow = true;
252 final boolean centerSingleExpandedItem = hasOverflow && visibleItemCount == 2;
312 final boolean singleItem = !hasOverflow && visibleItemCount == 1;
451 boolean hasOverflow = false;
480 hasOverflow = true;
492 if (childCount == 1 && !hasOverflow) {
504 final int spacerCount = nonOverflowCount - (hasOverflow ? 0 : 1);
ActionMenuPresenter.java 248 boolean hasOverflow = false;
252 hasOverflow = !nonActionItems.get(0).isActionViewExpanded();
254 hasOverflow = count > 0;
258 if (hasOverflow) {
437 boolean hasOverflow = false;
445 hasOverflow = true;
456 (hasOverflow || requiredItems + requestedItems > maxActions)) {
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 672 llvm::Value *hasOverflow = nullptr;
684 hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
698 hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
710 if (!hasOverflow) {
711 hasOverflow = CGF.Builder.CreateICmpULT(numElements,
717 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
742 if (hasOverflow)
743 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
profbuf.go 152 // hasOverflow reports whether b has any overflow records pending.
153 func (b *profBuf) hasOverflow() bool {
312 if hasOverflow := b.hasOverflow(); hasOverflow && b.canWriteTwoRecords(1, len(stk)) {
322 } else if hasOverflow || !b.canWriteRecord(len(stk)) {
461 if b.hasOverflow() {
  /prebuilts/go/linux-x86/src/runtime/
profbuf.go 152 // hasOverflow reports whether b has any overflow records pending.
153 func (b *profBuf) hasOverflow() bool {
312 if hasOverflow := b.hasOverflow(); hasOverflow && b.canWriteTwoRecords(1, len(stk)) {
322 } else if hasOverflow || !b.canWriteRecord(len(stk)) {
461 if b.hasOverflow() {
  /frameworks/base/core/java/com/android/internal/widget/
FloatingToolbar.java 690 if (!hasOverflow()) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationShelf.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationIconContainer.java 575 public boolean hasOverflow() {

Completed in 2224 milliseconds