HomeSort by relevance Sort by last modified time
    Searched refs:isFull (Results 1 - 25 of 75) sorted by null

1 2 3

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BarrierConsumer.java 58 while (!isFull()) {
77 if (mValues == null || isFull()) {
81 if (isFull()) {
91 private boolean isFull() {
  /system/core/include/utils/
BitSet.h 55 inline bool isFull() const { return isFull(value); }
57 static inline bool isFull(uint32_t value) { return value == 0xffffffffUL; }
197 inline bool isFull() const { return isFull(value); }
199 static inline bool isFull(uint64_t value) { return value == 0xffffffffffffffffULL; }
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
BitmapPoolTest.java 59 assertTrue(pool.isFull(width, height));
67 assertFalse(pool.isFull(IMAGE_DIM, IMAGE_DIM));
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionOutputBuffer.java 136 if (this.buffer.isFull()) {
165 if (this.buffer.isFull()) {
  /external/clang/lib/Rewrite/
DeltaTree.cpp 90 bool isFull() const { return NumValuesUsed == 2*WidthFactor-1; }
203 if (!isFull()) {
232 if (!isFull()) {
294 assert(isFull() && "Why split a non-full node?");
RewriteRope.cpp 156 bool isFull() const { return NumPieces == 2*WidthFactor; }
278 if (!isFull()) {
412 bool isFull() const { return NumChildren == 2*WidthFactor; }
527 if (!isFull()) {
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 163 public boolean isFull() {
CharArrayBuffer.java 207 public boolean isFull() {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCall.java 153 isFull() {
CdmaCallTracker.java 366 && !mBackgroundCall.isFull()
367 && !mForegroundCall.isFull();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCall.java 154 isFull() {
GsmCallTracker.java 325 && !mBackgroundCall.isFull()
326 && !mForegroundCall.isFull();
    [all...]
  /external/guava/guava/src/com/google/common/collect/
DenseImmutableTable.java 97 private boolean isFull() {
109 return isFull() ? keyToIndex().keySet() : super.createKeySet();
  /system/core/libutils/tests/
BitSet_test.cpp 133 EXPECT_TRUE(b1.isFull());
255 EXPECT_TRUE(b1.isFull());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java 222 isFull() {
ImsPhoneCallTracker.java 593 && !mBackgroundCall.isFull()
594 && !mForegroundCall.isFull();
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BitmapPool.java 353 public boolean isFull(final int width, final int height) {
  /packages/apps/Launcher3/src/com/android/launcher3/
Folder.java 656 !isFull());
    [all...]
FolderPagedView.java 397 public boolean isFull() {
FolderIcon.java 330 !mFolder.isFull() && item != mInfo && !mInfo.opened);
  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java 507 !isFull());
790 public boolean isFull() {
    [all...]
FolderIcon.java 296 !mFolder.isFull() && item != mInfo && !mInfo.opened);
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 25 if (isFull())
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 79 bool isFull() const { return Mass == UINT64_MAX; }
86 /// Adds another mass, saturating at \a isFull() rather than overflowing.
117 /// Convert to \a ScaledNumber. \a isFull() gives 1.0, while \a isEmpty()
    [all...]

Completed in 870 milliseconds

1 2 3