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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/s390x/
mvc.c 8 char full[300]; variable
42 memset(full, '-', sizeof full);
43 full[0] = 'x';
44 asm volatile( "mvc 1(256,%0),0(%0)\n\t" // full[1:256] = full[0]
45 :: "a" (full));
48 assert(full[i] == 'x');
49 for ( ; i < sizeof full; ++i)
50 assert(full[i] == '-')
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
null_fenced_block.hpp 24 enum half_or_full_t { half, full }; enumerator in enum:asio::detail::null_fenced_block::half_or_full_t
  /frameworks/base/tools/aapt2/util/
Util_test.cpp 28 const std::string full = "\n "; local
30 StringPiece trimmed = util::TrimWhitespace(full);
  /external/glide/library/src/main/java/com/bumptech/glide/request/
ThumbnailRequestCoordinator.java 5 * the full size version of the image at the same time.
8 private Request full; field in class:ThumbnailRequestCoordinator
20 public void setRequests(Request full, Request thumb) {
21 this.full = full;
28 * full size image has not yet completed.
34 return parentCanSetImage() && (request.equals(full) || !full.isResourceSet());
42 * Returns true if the request is the request loading the fullsize image and if neither the full nor the thumbnail
49 return parentCanNotifyStatusChanged() && request.equals(full) && !isAnyResourceSet()
    [all...]
  /frameworks/wilhelm/src/android/
android_AudioToCbRenderer.cpp 64 size_t full = mDecodeBuffer->range_length(); local
67 while (offset < full) {
74 //SL_LOGV("consumed=%u, offset=%u, full=%u", consumed, offset, full);
  /system/chre/util/include/chre/util/
fixed_size_vector_impl.h 53 bool FixedSizeVector<ElementType, kCapacity>::full() const { function in class:chre::FixedSizeVector
60 CHRE_ASSERT(!full());
61 if (!full()) {
69 CHRE_ASSERT(!full());
70 if (!full()) {
array_queue_impl.h 41 bool ArrayQueue<ElementType, kCapacity>::full() const { function in class:chre::ArrayQueue
  /libcore/jsr166-tests/src/test/java/jsr166/
CopyOnWriteArraySetTest.java 78 Set full = populatedSet(3); local
79 assertTrue(full.addAll(Arrays.asList(three, four, five)));
80 assertEquals(6, full.size());
81 assertFalse(full.addAll(Arrays.asList(three, four, five)));
82 assertEquals(6, full.size());
89 Set full = populatedSet(3); local
91 assertTrue(full.addAll(Arrays.asList(three, four, one)));
92 assertEquals(5, full.size());
93 assertFalse(full.addAll(Arrays.asList(three, four, one)));
94 assertEquals(5, full.size())
101 Set full = populatedSet(3); local
110 Set full = populatedSet(3); local
119 Collection full = populatedSet(3); local
129 Collection full = populatedSet(3); local
188 Collection full = populatedSet(3); local
233 Collection<Integer> full = populatedSet(elements); local
254 Collection full = populatedSet(3); local
268 Collection full = populatedSet(3); local
280 Set full = populatedSet(3); local
291 Collection full = populatedSet(3); local
302 Collection full = populatedSet(3); local
320 Collection<Integer> full = populatedSet(elements); local
348 Collection<Integer> full = populatedSet(elements); local
    [all...]
CopyOnWriteArrayListTest.java 93 CopyOnWriteArrayList full = populatedArray(3); local
94 assertTrue(full.addAll(Arrays.asList(three, four, five)));
95 assertEquals(6, full.size());
96 assertTrue(full.addAll(Arrays.asList(three, four, five)));
97 assertEquals(9, full.size());
105 CopyOnWriteArrayList full = populatedArray(3); local
107 assertEquals(2, full.addAllAbsent(Arrays.asList(three, four, one)));
108 assertEquals(5, full.size());
109 assertEquals(0, full.addAllAbsent(Arrays.asList(three, four, one)));
110 assertEquals(5, full.size())
117 CopyOnWriteArrayList full = populatedArray(SIZE); local
126 CopyOnWriteArrayList full = populatedArray(SIZE); local
135 CopyOnWriteArrayList full = populatedArray(SIZE); local
155 CopyOnWriteArrayList full = populatedArray(3); local
164 CopyOnWriteArrayList full = populatedArray(3); local
206 CopyOnWriteArrayList full = populatedArray(3); local
223 CopyOnWriteArrayList full = populatedArray(3); local
231 CopyOnWriteArrayList full = populatedArray(3); local
241 CopyOnWriteArrayList full = populatedArray(3); local
251 CopyOnWriteArrayList full = populatedArray(SIZE); local
272 Collection<Integer> full = populatedArray(elements); local
294 CopyOnWriteArrayList full = populatedArray(SIZE); local
308 CopyOnWriteArrayList full = populatedArray(3); local
320 CopyOnWriteArrayList full = populatedArray(3); local
331 CopyOnWriteArrayList full = populatedArray(3); local
342 CopyOnWriteArrayList full = populatedArray(SIZE); local
354 CopyOnWriteArrayList full = populatedArray(3); local
368 CopyOnWriteArrayList full = populatedArray(SIZE); local
381 CopyOnWriteArrayList full = populatedArray(SIZE); local
401 CopyOnWriteArrayList full = populatedArray(3); local
412 CopyOnWriteArrayList full = populatedArray(3); local
422 CopyOnWriteArrayList full = populatedArray(SIZE); local
440 Collection<Integer> full = populatedArray(elements); local
468 Collection<Integer> full = populatedArray(elements); local
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
BatteryStatsDurationTimerTest.java 144 // Write full
149 // Read full - Should be the same as the summary as far as DurationTimer is concerned.
150 final BatteryStatsImpl.DurationTimer full = new BatteryStatsImpl.DurationTimer(clocks, local
153 assertFalse(full.isRunningLocked());
154 assertEquals(0, full.getCurrentDurationMsLocked(6300));
156 assertEquals(1200, full.getMaxDurationMsLocked(6301));
157 assertEquals(1200, full.getTotalDurationMsLocked(6302));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /external/ImageMagick/coders/
uyvy.c 304 full,
339 full=MagickFalse;
348 if (full != MagickFalse)
361 full=full == MagickFalse ? MagickTrue : MagickFalse;
298 full, local
  /prebuilts/gdb/darwin-x86/lib/python2.7/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /prebuilts/gdb/linux-x86/lib/python2.7/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
17 class Full(Exception):
100 def full(self): member in class:Queue
101 """Return True if the queue is full, False otherwise (not reliable!)."""
113 the Full exception if no free slot was available within that time.
115 is immediately available, else raise the Full exception ('timeout'
123 raise Full
134 raise Full
146 Otherwise raise the Full exception.
  /build/make/tools/atree/
fs.cpp 63 string full = path; local
64 full += '/';
65 full += ent->d_name;
68 dirs.push_back(full);
70 files.push_back(full);
  /external/icu/icu4c/source/common/
uniset_closure.cpp 164 // add the result of a full case mapping to the set
167 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) {
173 // add a string case mapping from full with length result
174 str.setTo((UBool)FALSE, full, result);
209 const UChar *full; local
217 // full case closure
225 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache);
226 addCaseMapping(foldSet, result, full, str);
228 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache);
229 addCaseMapping(foldSet, result, full, str)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/stress/semaphores/
multi_con_pro.c 4 * This file is licensed under the GPL license. For the full content
32 sem_t full; member in struct:__anon26546
49 if (-1 == sem_wait(&buf->full)) {
53 if (-1 == sem_getvalue(&buf->full, &full_value)) {
57 printf("The value of the full semaphore is %d \n", full_value);
76 if (-1 == sem_wait(&buf->full)) {
80 if (-1 == sem_getvalue(&buf->full, &full_value)) {
84 printf("The value of the full is %d \n", full_value);
130 if (-1 == sem_post(&buf->full)) {
134 if (-1 == sem_getvalue(&buf->full, &full_value))
    [all...]
  /external/pdfium/third_party/freetype/src/cid/
cidobjs.c 375 char* full = info->full_name; local
379 if ( full )
381 while ( *full )
383 if ( *full == *family )
386 full++;
390 if ( *full == ' ' || *full == '-' )
391 full++;
397 cidface->style_name = full;
  /external/pdfium/third_party/freetype/src/type1/
t1objs.c 379 /* simplistic and might get some things wrong. For a full-featured */
391 char* full = info->full_name; local
395 if ( full )
400 while ( *full )
402 if ( *full == *family )
405 full++;
409 if ( *full == ' ' || *full == '-' )
410 full++;
418 root->style_name = full;
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
queues.py 45 from Queue import Empty, Full
102 raise Full
148 def full(self): member in class:Queue
312 raise Full
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
queues.py 45 from Queue import Empty, Full
102 raise Full
148 def full(self): member in class:Queue
312 raise Full
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
queues.py 45 from Queue import Empty, Full
102 raise Full
148 def full(self): member in class:Queue
312 raise Full
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
queues.py 45 from Queue import Empty, Full
102 raise Full
148 def full(self): member in class:Queue
312 raise Full

Completed in 652 milliseconds

1 2 3 4 5 6 7 8 91011>>