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

1 2 3 4 5 6

  /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...]
  /frameworks/base/tools/aapt2/
Util_test.cpp 26 const std::u16string full = u"\n "; local
28 StringPiece16 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...]
  /external/dhcpcd/
bind.c 62 sigset_t full; local
69 sigfillset(&full);
70 sigprocmask(SIG_SETMASK, &full, &old);
  /frameworks/wilhelm/src/android/
android_AudioToCbRenderer.cpp 63 size_t full = mDecodeBuffer->range_length(); local
66 while (offset < full) {
73 //SL_LOGV("consumed=%u, offset=%u, full=%u", consumed, offset, full);
  /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
156 Collection full = populatedSet(3); local
188 Collection<Integer> full = populatedSet(elements); local
209 Collection full = populatedSet(3); local
223 Collection full = populatedSet(3); local
235 Set full = populatedSet(3); local
246 Collection full = populatedSet(3); local
257 Collection full = populatedSet(3); local
275 Collection<Integer> full = populatedSet(elements); local
303 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
198 CopyOnWriteArrayList full = populatedArray(3); local
210 CopyOnWriteArrayList full = populatedArray(3); local
218 CopyOnWriteArrayList full = populatedArray(3); local
228 CopyOnWriteArrayList full = populatedArray(3); local
238 CopyOnWriteArrayList full = populatedArray(SIZE); local
259 Collection<Integer> full = populatedArray(elements); local
281 CopyOnWriteArrayList full = populatedArray(SIZE); local
295 CopyOnWriteArrayList full = populatedArray(3); local
307 CopyOnWriteArrayList full = populatedArray(3); local
318 CopyOnWriteArrayList full = populatedArray(3); local
329 CopyOnWriteArrayList full = populatedArray(SIZE); local
341 CopyOnWriteArrayList full = populatedArray(3); local
355 CopyOnWriteArrayList full = populatedArray(SIZE); local
368 CopyOnWriteArrayList full = populatedArray(SIZE); local
388 CopyOnWriteArrayList full = populatedArray(3); local
399 CopyOnWriteArrayList full = populatedArray(3); local
409 CopyOnWriteArrayList full = populatedArray(SIZE); local
427 Collection<Integer> full = populatedArray(elements); local
455 Collection<Integer> full = populatedArray(elements); local
    [all...]
  /build/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);
files.cpp 25 string full = base; local
27 full += '/';
29 full += leaf;
30 return full;
162 "substitution. Full list of variables is: ");
345 string full = path_append(*it, rec->sourceName); local
347 err = stat(full.c_str(), &st);
350 rec->sourcePath = full;
430 string full = path_append(rec.sourceBase, rec.sourceName); local
431 full = path_append(full, path)
    [all...]
  /external/icu/icu4c/source/common/
uniset_closure.cpp 162 // add the result of a full case mapping to the set
165 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) {
171 // add a string case mapping from full with length result
172 str.setTo((UBool)FALSE, full, result);
207 const UChar *full; local
215 // full case closure
223 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache);
224 addCaseMapping(foldSet, result, full, str);
226 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache);
227 addCaseMapping(foldSet, result, full, str)
    [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 382 /* simplistic and might get some things wrong. For a full-featured */
394 char* full = info->full_name; local
398 if ( full )
403 while ( *full )
405 if ( *full == *family )
408 full++;
412 if ( *full == ' ' || *full == '-' )
413 full++;
421 root->style_name = full;
    [all...]
  /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.
  /cts/apps/CameraITS/pymodules/its/
caps.py 40 def full(props): function
41 """Returns whether a device is a FULL capability camera2 device.
87 or full(props)
100 or full(props)
  /external/lldb/source/Symbol/
CompileUnit.cpp 298 const bool full = true; local
299 file_idx = support_files.FindFileIndex (1, support_files.GetFileSpecAtIndex(0), full);
  /external/netperf/
netcpu_pstat.c 64 long long full; member in union:overlay_u
144 long long full; member in union:overlay_u
180 long long full; member in union:overlay_u
  /external/openssh/
logintest.c 225 char full[17], strip[9], abbrev[5]; local
227 memset(full, '\0', sizeof(full));
231 line_fullname(full, line, sizeof(full)-1);
232 line_stripname(strip, full, sizeof(strip)-1);
233 line_abbrevname(abbrev, full, sizeof(abbrev)-1);
234 printf("%s: %s, %s, %s\n", line, full, strip, abbrev);
  /external/v8/src/
string-stream.h 150 bool full() const { return (capacity_ - length_) == 1; } function in class:v8::internal::FINAL
  /external/lldb/source/Target/
ObjCLanguageRuntime.cpp 261 const char *full = m_full.GetCString(); local
262 const char *class_start = (full[0] == '[' ? full + 1 : full + 2);
270 // No '(' was found in the full name, we can definitively say
273 const char *space_pos = strchr (full, ' ');
296 const char *full = m_full.GetCString(); local
297 const char *class_start = (full[0] == '[' ? full + 1 : full + 2)
325 const char *full = m_full.GetCString(); local
345 const char *full = m_full.GetCString(); local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.c 23 struct list_head full; member in struct:mm_bucket
199 LIST_ADD(&slab->head, &bucket->full);
253 LIST_INITHEAD(&cache->bucket[i].full);
281 !LIST_IS_EMPTY(&cache->bucket[i].full))
287 nouveau_mm_free_slabs(&cache->bucket[i].full);
  /external/squashfs-tools/squashfs-tools/
caches-queues-lists.h 137 pthread_cond_t full; member in struct:queue
  /external/zlib/src/examples/
gzappend.c 261 int ret, lastbit, left, full; local
296 have = full = 0;
322 full = 1;
362 if (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 840 milliseconds

1 2 3 4 5 6