/external/chromium_org/chrome/common/extensions/docs/server2/ |
app_yaml_helper.py | 95 stored = self._store.Get(app_version).Get() 96 if stored is None: 97 stored = self._GetFirstRevisionGreaterThanImpl(app_version) 98 assert stored is not None 99 self._store.Set(app_version, stored) 100 return stored
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
free_list.cc | 36 // are stored at the start of each element, independently of the 37 // elements's size. Because pointers are stored within each element, 43 // attempts are made to preserve the data in elements stored in the 47 // a 32bit machine, N=4), the list pointers are stored in the 49 // -In doubly linked lists, the |next| pointer is stored in the first N 52 // -In singly linked lists, the |next| pointer is stored in the first N
|
/external/chromium_org/third_party/zlib/ |
inflate.h | 34 STORED, /* i: waiting for stored size (length and complement) */ 36 COPY, /* i/o: waiting for input or output to copy stored block */ 68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK 69 STORED -> COPY_ -> COPY -> TYPE 100 /* for string and stored block copying */
|
/external/qemu/distrib/zlib-1.2.3/ |
inflate.h | 34 STORED, /* i: waiting for stored size (length and complement) */ 35 COPY, /* i/o: waiting for input or output to copy stored block */ 65 TYPE -> STORED or TABLE or LEN or CHECK 66 STORED -> COPY -> TYPE 96 /* for string and stored block copying */
|
/external/zlib/src/ |
inflate.h | 34 STORED, /* i: waiting for stored size (length and complement) */ 36 COPY, /* i/o: waiting for input or output to copy stored block */ 68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK 69 STORED -> COPY_ -> COPY -> TYPE 100 /* for string and stored block copying */
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothGattDescriptor.java | 199 * Returns the stored value for this descriptor 201 * <p>This function returns the stored value for this descriptor as 213 * Updates the locally stored value of this descriptor. 215 * <p>This function modifies the locally stored cached value of this 221 * @return true if the locally stored value has been set, false if the 222 * requested value could not be stored locally.
|
BluetoothGattCharacteristic.java | 417 * Get the stored value for this characteristic. 419 * <p>This function returns the stored value for this characteristic as 431 * Return the stored value of this characteristic. 474 * Return the stored value of this characteristic. 499 * Return the stored value of this characteristic. 513 * Updates the locally stored value of this characteristic. 515 * <p>This function modifies the locally stored cached value of this 521 * @return true if the locally stored value has been set, false if the 522 * requested value could not be stored locally. 530 * Set the locally stored value of this characteristic [all...] |
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
BordeauxSessionManager.java | 116 Session stored = mSessionStorage.getSession(key.value); local 117 if (stored != null) { 119 stored.learner.setModelChangeCallback(new LearningUpdateCallback(key.value)); 121 mSessions.put(key.value, stored); 122 return stored.learner.getBinder(); 125 // if session is not already stored, create a new one.
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentMap.java | 53 * prevents it from being stored in this map 57 * or value prevents it from being stored in this map 106 * prevents it from being stored in this map 110 * or value prevents it from being stored in this map 135 * prevents it from being stored in this map 139 * or value prevents it from being stored in this map
|
/external/chromium/net/disk_cache/ |
disk_format.h | 5 // The cache is stored on disk as a collection of block-files, plus an index 8 // Any data blob bigger than kMaxBlockSize (net/addr.h) will be stored on a 10 // be stored as a series of blocks on a block-file. In any case, CacheAddr 23 // when completely full. At that point, data blocks of 1KB will be stored on a 87 int32 num_entries; // Number of entries currently stored. 88 int32 num_bytes; // Total size of the stored data. 108 // what can be stored on this structure, it will be extended on consecutive 110 // After that point, the whole key will be stored as a data block or external 184 int32 num_entries; // Number of stored entries. 206 // The child entry is stored the same way as any other entry, so it also has [all...] |
entry_impl.cc | 112 // actual file has |eof| bytes stored. Note that the number of bytes to read 574 EntryStore* stored = entry_.Data(); local 575 if (!stored->rankings_node || stored->key_len <= 0) 578 if (stored->reuse_count < 0 || stored->refetch_count < 0) 581 Addr rankings_addr(stored->rankings_node); 586 Addr next_addr(stored->next); 594 if (stored->state > ENTRY_DOOMED || stored->state < ENTRY_NORMAL 618 EntryStore* stored = entry_.Data(); local 648 EntryStore* stored = entry_.Data(); local [all...] |
/libcore/luni/src/main/java/java/util/zip/ |
ZipOutputStream.java | 37 * Use {@link ZipEntry#setMethod} or {@link #setMethod} with the {@link ZipEntry#STORED} flag. 70 public static final int STORED = 0; 134 // Verify values for STORED types 135 if (currentEntry.getMethod() == STORED) { 146 if (currentEntry.getMethod() != STORED) { 155 int flags = currentEntry.getMethod() == STORED ? 0 : ZipFile.GPBF_DATA_DESCRIPTOR_FLAG; 270 // If the method is STORED, check that the ZipEntry was configured appropriately. 271 if (method == STORED) { 278 throw new ZipException("STORED entry missing CRC"); 281 throw new ZipException("STORED entry missing size") [all...] |
/external/icu4c/common/ |
uhash.h | 27 * Keys and values are stored as void* pointers. These void* pointers 100 * @param key A key stored in a hashtable 303 * Get the number of key-value pairs stored in a UHashtable. 305 * @return The number of key-value pairs stored in hash. 385 * as previously stored by uhash_put(). 387 * @param key A pointer key stored in a hashtable 396 * as previously stored by uhash_iput(). 398 * @param key An integer key stored in a hashtable 407 * as previously stored by uhash_puti(). 409 * @param key A pointer key stored in a hashtabl [all...] |
/external/chromium_org/net/disk_cache/v3/ |
disk_format_v3.h | 5 // The cache is stored on disk as a collection of block-files, plus an index 8 // Any data blob bigger than kMaxBlockSize (disk_cache/addr.h) will be stored in 10 // will be stored as a series of blocks on a block-file. In any case, CacheAddr 20 // while the second part of the table (stored on a second file) has a variable 63 int32 num_entries; // Number of entries currently stored. 64 int32 num_bytes; // Total size of the stored data. 71 int32 max_bytes; // Total maximum size of the stored data.
|
entry_impl_v3.cc | 58 // actual file has |eof| bytes stored. Note that the number of bytes to read 327 EntryStore* stored = entry_.Data(); 328 if (!stored->rankings_node || stored->key_len <= 0) 331 if (stored->reuse_count < 0 || stored->refetch_count < 0) 334 Addr rankings_addr(stored->rankings_node); 338 Addr next_addr(stored->next); 345 if (stored->state > ENTRY_DOOMED || stored->state < ENTRY_NORMAL 369 EntryStore* stored = entry_.Data(); local 399 EntryStore* stored = entry_.Data(); local [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkOrderedReadBuffer.cpp | 180 // The writer stored a boolean value to determine whether an SkBitmapHeap was used during 192 // The bitmap was stored in a heap, but there is no way to access it. Set an error and 195 "stored the SkBitmap in an SkBitmapHeap, but " 200 // The writer stored false, meaning the SkBitmap was not stored in an SkBitmapHeap. 282 index -= 1; // we stored the index-base-1 290 index -= 1; // we stored the index-base-1
|
/external/llvm/test/ExecutionEngine/ |
test-interp-vec-loadstore.ll | 37 ; load stored scalars 43 ; load stored vector 52 ; compare extracted data with stored constants 86 ; load stored vector 88 ; load stored scalars 130 ; load stored vector 132 ; load stored scalars
|
/external/skia/src/core/ |
SkOrderedReadBuffer.cpp | 180 // The writer stored a boolean value to determine whether an SkBitmapHeap was used during 192 // The bitmap was stored in a heap, but there is no way to access it. Set an error and 195 "stored the SkBitmap in an SkBitmapHeap, but " 200 // The writer stored false, meaning the SkBitmap was not stored in an SkBitmapHeap. 282 index -= 1; // we stored the index-base-1 290 index -= 1; // we stored the index-base-1
|
/frameworks/base/graphics/java/android/renderscript/ |
FileA3D.java | 34 * or resources stored on disk. It could be used to load items 40 * index entries for all the objects stored inside it. 196 * Returns the number of objects stored inside the a3d file 198 * @return the number of objects stored inside the a3d file 225 * Creates a FileA3D object from an asset stored on disk 247 * Creates a FileA3D object from a file stored on disk 267 * Creates a FileA3D object from a file stored on disk
|
/external/chromium_org/net/disk_cache/ |
entry_impl.cc | 113 // actual file has |eof| bytes stored. Note that the number of bytes to read 573 EntryStore* stored = entry_.Data(); 574 if (!stored->rankings_node || stored->key_len <= 0) 577 if (stored->reuse_count < 0 || stored->refetch_count < 0) 580 Addr rankings_addr(stored->rankings_node); 584 Addr next_addr(stored->next); 591 if (stored->state > ENTRY_DOOMED || stored->state < ENTRY_NORMAL 615 EntryStore* stored = entry_.Data(); local 645 EntryStore* stored = entry_.Data(); local [all...] |
/bootable/recovery/mtdutils/ |
mtdutils.c | 48 size_t stored; member in struct:MtdWriteContext 394 ctx->stored = 0; 481 if (ctx->stored > 0 || len - wrote < ctx->partition->erase_size) { 482 size_t avail = ctx->partition->erase_size - ctx->stored; 484 memcpy(ctx->buffer + ctx->stored, data + wrote, copy); 485 ctx->stored += copy; 490 if (ctx->stored == ctx->partition->erase_size) { 492 ctx->stored = 0; 496 while (ctx->stored == 0 && len - wrote >= ctx->partition->erase_size) { 508 if (ctx->stored > 0) [all...] |
/developers/build/prebuilts/gradle/BasicMultitouch/BasicMultitouchSample/src/main/java/com/example/android/basicmultitouch/ |
TouchDisplayView.java | 104 * number of historical points is already stored. 148 * Only one touch event is stored in the MotionEvent. Extract 179 * is stored. 206 * Extract the pointer identifier for the only event stored in 229 * is stored. 250 * Data for each pointer is stored in a MotionEvent at an index 253 * data (position and pressure) and updates its stored data. A 260 // get pointer id for data stored at this index 263 // get the data stored externally about this pointer.
|
/developers/samples/android/input/multitouch/BasicMultitouch/BasicMultitouchSample/src/main/java/com/example/android/basicmultitouch/ |
TouchDisplayView.java | 104 * number of historical points is already stored. 148 * Only one touch event is stored in the MotionEvent. Extract 179 * is stored. 206 * Extract the pointer identifier for the only event stored in 229 * is stored. 250 * Data for each pointer is stored in a MotionEvent at an index 253 * data (position and pressure) and updates its stored data. A 260 // get pointer id for data stored at this index 263 // get the data stored externally about this pointer.
|
/development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/ |
TouchDisplayView.java | 104 * number of historical points is already stored. 148 * Only one touch event is stored in the MotionEvent. Extract 179 * is stored. 206 * Extract the pointer identifier for the only event stored in 229 * is stored. 250 * Data for each pointer is stored in a MotionEvent at an index 253 * data (position and pressure) and updates its stored data. A 260 // get pointer id for data stored at this index 263 // get the data stored externally about this pointer.
|
/external/qemu/ |
qdict.c | 99 * stored. 127 * This is done by freeing the reference to the stored QObject and 277 * qdict_get_str(): Get a pointer to the stored string mapped 295 * the dictionary or if the stored object is not of QInt type 314 * dictionary or if the stored object is not of QBool type 329 * qdict_get_try_str(): Try to get a pointer to the stored string 333 * in the dictionary or if the stored object is not of QString type 348 * qdict_iter(): Iterate over all the dictionary's stored values. 351 * called for each stored value in the dictionary.
|