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

1 2 3 4 5 6

  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
CopyOnWriteArrayListTest.java 74 CopyOnWriteArrayList full = populatedArray(3); local
79 full.addAll(v);
80 assertEquals(6, full.size());
88 CopyOnWriteArrayList full = populatedArray(3); local
93 full.addAllAbsent(v);
94 assertEquals(5, full.size());
101 CopyOnWriteArrayList full = populatedArray(SIZE); local
102 full.addIfAbsent(one);
103 assertEquals(SIZE, full.size());
110 CopyOnWriteArrayList full = populatedArray(SIZE) local
119 CopyOnWriteArrayList full = populatedArray(SIZE); local
140 CopyOnWriteArrayList full = populatedArray(3); local
149 CopyOnWriteArrayList full = populatedArray(3); local
184 CopyOnWriteArrayList full = populatedArray(3); local
197 CopyOnWriteArrayList full = populatedArray(3); local
205 CopyOnWriteArrayList full = populatedArray(3); local
215 CopyOnWriteArrayList full = populatedArray(3); local
225 CopyOnWriteArrayList full = populatedArray(SIZE); local
234 CopyOnWriteArrayList full = populatedArray(SIZE); local
246 CopyOnWriteArrayList full = populatedArray(SIZE); local
260 CopyOnWriteArrayList full = populatedArray(3); local
271 CopyOnWriteArrayList full = populatedArray(3); local
282 CopyOnWriteArrayList full = populatedArray(3); local
293 CopyOnWriteArrayList full = populatedArray(SIZE); local
305 CopyOnWriteArrayList full = populatedArray(3); local
317 CopyOnWriteArrayList full = populatedArray(3); local
326 CopyOnWriteArrayList full = populatedArray(3); local
338 CopyOnWriteArrayList full = populatedArray(3); local
348 CopyOnWriteArrayList full = populatedArray(SIZE); local
357 CopyOnWriteArrayList full = populatedArray(3); local
370 CopyOnWriteArrayList full = populatedArray(3); local
    [all...]
CopyOnWriteArraySetTest.java 59 CopyOnWriteArraySet full = populatedSet(3); local
64 full.addAll(v);
65 assertEquals(6, full.size());
73 CopyOnWriteArraySet full = populatedSet(3); local
78 full.addAll(v);
79 assertEquals(5, full.size());
86 CopyOnWriteArraySet full = populatedSet(3); local
87 full.add(one);
88 assertEquals(3, full.size());
96 CopyOnWriteArraySet full = populatedSet(3) local
105 CopyOnWriteArraySet full = populatedSet(3); local
114 CopyOnWriteArraySet full = populatedSet(3); local
142 CopyOnWriteArraySet full = populatedSet(3); local
156 CopyOnWriteArraySet full = populatedSet(3); local
165 CopyOnWriteArraySet full = populatedSet(3); local
177 CopyOnWriteArraySet full = populatedSet(3); local
191 CopyOnWriteArraySet full = populatedSet(3); local
203 CopyOnWriteArraySet full = populatedSet(3); local
216 CopyOnWriteArraySet full = populatedSet(3); local
227 CopyOnWriteArraySet full = populatedSet(3); local
236 CopyOnWriteArraySet full = populatedSet(3); local
249 CopyOnWriteArraySet full = populatedSet(3); local
    [all...]
  /packages/apps/IM/src/com/android/im/imps/
ImpsAddress.java 41 // build the full address and unify the fields to lower case since imps
60 protected ImpsAddress(String full){
61 this(full, true);
64 protected ImpsAddress(String full, boolean verify) {
65 if (full == null || full.length() == 0) {
70 if(!full.startsWith(ImpsConstants.ADDRESS_PREFIX)) {
71 full = ImpsConstants.ADDRESS_PREFIX + full;
74 parse(full);
    [all...]
ImpsContactListAddress.java 39 public ImpsContactListAddress(String full, boolean verify) {
40 super(full, verify);
46 public ImpsContactListAddress(String full) {
47 this(full, false);
ImpsUserAddress.java 33 public ImpsUserAddress(String full, boolean verify) {
34 super(full, verify);
40 public ImpsUserAddress(String full) {
41 this(full, false);
  /packages/apps/AlarmClock/
Android.mk 10 LOCAL_PROGUARD_ENABLED := full
  /build/target/product/
AndroidProducts.mk 37 $(LOCAL_DIR)/full.mk \
full.mk 17 # This is a build configuration for a full-featured build of the
48 PRODUCT_NAME := full
51 PRODUCT_MODEL := Full Android
  /external/webkit/WebKit/android/nav/
SelectText.cpp 168 SkIRect full; local
169 full.set(rect.fLeft, top(), rect.fRight, bottom());
171 || (mLastBase <= full.fBottom && mLastBase > full.fTop)) {
172 if (full.fLeft > mLast.fRight)
173 full.fLeft = mLast.fRight;
174 else if (full.fRight < mLast.fLeft)
175 full.fRight = mLast.fLeft;
177 mSelectRegion->op(full, SkRegion::kUnion_Op);
178 DBG_NAV_LOGD("MultilineBuilder full=(%d,%d,r=%d,b=%d)"
218 SkIRect full; local
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.cpp 110 void SplitToVector(char* full, const char* delim, vector<char*>* vec,
112 char* next = full;
113 while((next = strsep(&full, delim)) != NULL) {
117 // Add last element (or full string if no delimeter found):
118 if (full != NULL) {
119 vec->push_back(full);
  /build/tools/atree/
fs.cpp 61 string full = path; local
62 full += '/';
63 full += ent->d_name;
69 stat(full.c_str(), &stat_buf);
73 dirs.push_back(full);
75 files.push_back(full);
files.cpp 25 string full = base; local
27 full += '/';
29 full += leaf;
30 return full;
142 "substitution. Full list of variables is: ");
300 string full = path_append(*it, rec->sourceName); local
302 err = stat(full.c_str(), &st);
305 rec->sourcePath = full;
382 string full = path_append(rec.sourceBase, rec.sourceName); local
383 full = path_append(full, path)
    [all...]
  /external/skia/src/xml/
SkJS.cpp 116 char *path, *comp, *full; local
133 full = JS_smprintf("%s/%s", comp, name);
134 if (!full) {
140 full = (char *)name;
142 found = (access(full, X_OK) == 0);
144 free(full);
  /external/qemu/android/utils/
dirscanner.c 20 char full[PATH_MAX]; \
194 p = s->full;
195 end = p + sizeof s->full;
199 /* ignore if the full name is too long */
202 return s->full;
  /frameworks/policies/base/
PolicyConfig.mk 58 src_classes_jar := $(call _java-lib-full-classes.jar,$(PRODUCT_POLICY))
59 tgt_classes_jar := $(call _java-lib-full-classes.jar,$(LOCAL_MODULE))
  /device/htc/dream/
full_dream.mk 16 # This file is the build configuration for a full Android
25 $(call inherit-product, $(SRC_TARGET_DIR)/product/full.mk)
30 PRODUCT_MODEL := Full Android on Dream
  /device/htc/passion/
full_passion.mk 16 # This file is the build configuration for a full Android
25 $(call inherit-product, $(SRC_TARGET_DIR)/product/full.mk)
30 PRODUCT_MODEL := Full Android on Passion
  /device/htc/sapphire/
full_sapphire.mk 16 # This file is the build configuration for a full Android
25 $(call inherit-product, $(SRC_TARGET_DIR)/product/full.mk)
30 PRODUCT_MODEL := Full Android on Sapphire
  /external/srec/srec/cfront/
himul32.h 100 __int64 full;
111 result.full = x * y;
  /external/icu4c/common/
ucase.c 515 * full case mappings. Add them all.
538 closure=(const UChar *)pe+1; /* behind this slot, unless there are full case mappings */
544 /* add the full case folding */
549 /* start of full case mapping strings */
558 /* add the full case folding string */
571 closure=(const UChar *)pe; /* behind full case mappings */
1059 int32_t full; local
1203 int32_t full, idx; local
1413 int32_t full, idx; local
    [all...]
  /external/webkit/WebKit/win/
DefaultDownloadDelegate.cpp 121 BSTR full = SysAllocStringLen(0, (UINT)fullLength); local
122 if (!full)
125 _tcscpy_s(full, fullLength, pathChars);
126 _tcscat_s(full, fullLength, _T("\\"));
127 _tcscat_s(full, fullLength, filename);
129 fullPath.adoptBSTR(full);
  /development/pdk/pndk/samples/samplejni/
Makefile 18 APK_OUTPUT_DIR := bin/full
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 189 boolean full = true;
200 if (full && (data[k] == State.EMPTY ||
203 full = false;
226 // if we get here, there's no winner but the board is full.
227 if (full) {
  /external/icu4c/tools/gencase/
gencase.h 80 UChar full[32]; member in struct:__anon2433
store.c 66 i15 maxFullLength; -- maximum length of a full case mapping/folding string
107 UTF-16 strings for full (string) mappings for lowercase, case folding, uppercase, titlecase
133 7 there is at least one full (string) case mapping
140 The string immediately follows the full case mappings, or the closure value
141 slot if there are no full case mappings.
145 and full case mappings and foldings, plus the case closure code points
149 - If special casing is conditional, then no full lower/upper/title mapping
151 - If case folding is conditional, then no simple or full case foldings are
154 full (string) mapping -- if full mappings are use
806 UChar32 full; local
    [all...]

Completed in 9591 milliseconds

1 2 3 4 5 6