HomeSort by relevance Sort by last modified time
    Searched defs:filled (Results 1 - 25 of 34) sorted by null

1 2

  /external/proguard/src/proguard/gui/splash/
CircleSprite.java 26 * This Sprite represents an animated circle. It can optionally be filled.
32 private final boolean filled; field in class:CircleSprite
40 * @param filled specifies whether the rectangle should be filled.
45 public CircleSprite(boolean filled,
50 this.filled = filled;
65 if (filled)
RectangleSprite.java 26 * This Sprite represents an animated rounded rectangle. It can optionally be filled.
32 private final boolean filled; field in class:RectangleSprite
44 * @param filled specifies whether the rectangle should be filled.
51 public RectangleSprite(boolean filled,
58 this(filled, color, x, y, width, height, new ConstantInt(0), new ConstantInt(0));
64 * @param filled specifies whether the rectangle should be filled.
73 public RectangleSprite(boolean filled,
82 this.filled = filled
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_bitmask.c 59 unsigned filled; member in struct:util_bitmask
79 bm->filled = 0;
132 * Lazily update the filled.
138 assert(bm->filled <= bm->size);
141 if(index == bm->filled) {
142 ++bm->filled;
143 assert(bm->filled <= bm->size);
151 assert(bm->filled <= bm->size);
154 if(index < bm->filled)
155 bm->filled = index
    [all...]
u_handle_table.c 54 unsigned filled; member in struct:handle_table
77 ht->filled = 0;
164 while(ht->filled < ht->size) {
165 if(!ht->objects[ht->filled])
167 ++ht->filled;
170 index = ht->filled;
183 ++ht->filled;
255 if(index < ht->filled)
256 ht->filled = index;
  /external/mesa3d/src/gallium/auxiliary/util/
u_bitmask.c 59 unsigned filled; member in struct:util_bitmask
79 bm->filled = 0;
132 * Lazily update the filled.
138 assert(bm->filled <= bm->size);
141 if(index == bm->filled) {
142 ++bm->filled;
143 assert(bm->filled <= bm->size);
151 assert(bm->filled <= bm->size);
154 if(index < bm->filled)
155 bm->filled = index
    [all...]
u_handle_table.c 54 unsigned filled; member in struct:handle_table
77 ht->filled = 0;
164 while(ht->filled < ht->size) {
165 if(!ht->objects[ht->filled])
167 ++ht->filled;
170 index = ht->filled;
183 ++ht->filled;
255 if(index < ht->filled)
256 ht->filled = index;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
search.h 102 unsigned int filled; member in struct:hsearch_data
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
search.h 102 unsigned int filled; member in struct:hsearch_data
  /cts/suite/cts/deviceTests/filesystemperf/src/com/android/cts/filesystemperf/
AlmostFullTest.java 55 // initial fill done in two stage as disk can be filled by other
66 long filled = 0; local
67 while (filled < diskToFill) {
68 long toFill = diskToFill - filled;
75 filled += toFill;
  /external/elfutils/0.153/libelf/
elf32_updatefile.c 478 size_t filled = *filledp; local
481 if (unlikely (fill_len > filled) && filled < FILLBUFSIZE)
484 memset (fillbuf + filled, __libelf_fill_byte, fill_len - filled);
485 *filledp = filled = fill_len;
491 size_t n = MIN (filled, len);
513 size_t filled = 0; local
585 ehdr->e_phoff - ehdr->e_ehsize, fillbuf, &filled)
700 &filled) != 0)
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
disk_format.h 60 int32 filled; // Flag to tell when we filled the cache. member in struct:disk_cache::LruData
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
getonescriptspan.cc 552 int consumed, filled; local
555 &consumed, &filled);
557 span->text_bytes = filled - 4;
  /frameworks/av/media/libnbaio/
MonoPipe.cpp 155 size_t filled = (mMaxFrames - avail) + written; local
157 if (filled <= mSetpoint / 2) {
160 } else if (filled <= (mSetpoint * 3) / 4) {
163 } else if (filled <= (mSetpoint * 5) / 4) {
166 } else if (filled <= (mSetpoint * 3) / 2) {
169 } else if (filled <= (mSetpoint * 7) / 4) {
  /art/runtime/base/
hash_set.h 187 bool filled = false; // True if we filled the empty index. local
216 filled = true; // TODO: Optimize
222 if (!filled) {
  /frameworks/av/media/libmedia/
AudioTrackShared.cpp 127 // We're about to perform a conditional branch based on 'filled',
140 ssize_t filled = rear - front; local
142 if (!(0 <= filled && (size_t) filled <= mFrameCount)) {
144 ALOGE("Shared memory control block is corrupt (filled=%zd, mFrameCount=%zu); "
145 "shutting down", filled, mFrameCount);
151 filled = 0;
156 size_t avail = mIsOut ? mFrameCount - filled : filled;
346 ssize_t filled = rear - front local
560 ssize_t filled = rear - newFront; local
583 ssize_t filled = rear - front; local
704 ssize_t filled = rear - cblk->u.mStreaming.mFront; local
    [all...]
  /external/speex/libspeex/
jitter.c 84 int filled; /**< Number of entries occupied in "timing" and "counts"*/ member in struct:TimingBuffer
92 tb->filled = 0;
101 if (tb->filled >= MAX_TIMINGS && timing >= tb->timing[tb->filled-1])
110 while (pos<tb->filled && timing >= tb->timing[pos])
115 speex_assert(pos <= tb->filled && pos < MAX_TIMINGS);
118 if (pos < tb->filled)
120 int move_size = tb->filled-pos;
121 if (tb->filled == MAX_TIMINGS)
131 if (tb->filled<MAX_TIMINGS
    [all...]
  /external/elfutils/0.153/src/
ldgeneric.c 3808 bool filled = false; local
    [all...]
  /frameworks/av/services/audioflinger/
Threads.cpp 5388 ssize_t filled = rear - front; local
    [all...]
  /developers/build/lib/
assetstudio.jar 
  /prebuilts/devtools/tools/lib/
asset-studio.jar 
  /external/proguard/lib/
proguardgui.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguardgui.jar 
  /external/wpa_supplicant_8/src/drivers/
driver.h 3528 unsigned int filled; member in struct:freq_survey
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.util_1.0.200.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 

Completed in 1423 milliseconds

1 2