/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
BitSet.pm | 48 # Construct a bitset of size one word (64 bits) 74 elsif (exists $args->{size}) { 75 # Construct a bitset given the size 76 $bits = '0' x $args->{size}; 89 my $bs = ANTLR::Runtime::BitSet->new({ size => $el + 1 }); 149 sub size : method { subroutine 292 Sets the size of a set.
|
CommonTokenStream.pm | 297 sub size { subroutine
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
IntArrayList.java | 49 /** Set the ith element. Like ArrayList, this does NOT affect size. */ 52 setSize(i); // unlike definition of set in ArrayList, set size 112 public int size() { method in class:IntArrayList 125 if ( this.size()!=other.size() ) {
|
OrderedHashSet.java | 99 public int size() { method in class:OrderedHashSet 101 if ( elements.size()!=super.size() ) { 102 ErrorManager.internalError("OrderedHashSet: elements and set size differs; "+ 103 elements.size()+"!="+super.size()); 106 return elements.size();
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
BoolStack.java | 34 /** Array size allocated */ 42 * block size is very small, for small lists. 50 * Construct a IntVector, using the given block size. 52 * @param size array size to allocate 54 public BoolStack(int size) 57 m_allocatedSize = size; 58 m_values = new boolean[size]; 67 public final int size() method in class:BoolStack 181 * Grows the size of the stac [all...] |
IntVector.java | 36 /** Size of blocks to allocate */ 45 /** Size of array */ 50 * block size is very small, for small lists. 61 * Construct a IntVector, using the given block size. 63 * @param blocksize Size of block to allocate 74 * Construct a IntVector, using the given block size. 76 * @param blocksize Size of block to allocate 105 public final int size() method in class:IntVector 300 * than the current size of the vector.
|
ObjectVector.java | 36 /** Size of blocks to allocate */ 45 /** Size of array */ 50 * block size is very small, for small lists. 61 * Construct a IntVector, using the given block size. 63 * @param blocksize Size of block to allocate 74 * Construct a IntVector, using the given block size. 76 * @param blocksize Size of block to allocate 105 public final int size() method in class:ObjectVector 297 * than the current size of the vector. 406 * Reset the array to the supplied size. [all...] |
StringVector.java | 32 /** @serial Size of blocks to allocate */ 41 /** @serial Size of the array */ 46 * block size is very small, for small lists. 57 * Construct a StringVector, using the given block size. 59 * @param blocksize Size of the blocks to allocate 84 public final int size() method in class:StringVector
|
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/ |
DeflateCompressorTest.java | 87 Assert.assertTrue(compressedContentOut.size() > 0); 88 Assert.assertTrue(compressedContentOut.size() < CONTENT.length);
|
/external/autotest/frontend/client/src/autotest/afe/ |
JobStatusDataSource.java | 106 idList.set(idList.size(), queueEntry.get("id")); 119 int count = entry.get("id_list").isArray().size();
|
/external/autotest/tko/ |
status_lib.py | 56 def size(self): member in class:status_stack 81 def size(self): member in class:line_buffer
|
/external/avahi/avahi-common/ |
avahi-malloc.c | 62 static void* xmalloc(size_t size) { 65 if (size == 0) 68 if (!(p = malloc(size))) 75 static void *xrealloc(void *p, size_t size) { 77 if (size == 0) { 82 if (!(p = realloc(p, size))) 89 static void *xcalloc(size_t nmemb, size_t size) { 92 if (size == 0 || nmemb == 0) 95 if (!(p = calloc(nmemb, size))) 101 void *avahi_malloc(size_t size) { 162 size_t size; local 177 size_t size; local [all...] |
/external/avahi/avahi-core/ |
dns.h | 33 size_t size, rindex, max_size; member in struct:AvahiDnsPacket
|
/external/avahi/avahi-daemon/ |
dbus-entry-group.c | 313 uint32_t flags, ttl, size; local 329 avahi_dbus_read_rdata (m, 7, &rdata, &size)) { 343 if (avahi_rdata_parse (r, rdata, size) < 0) {
|
/external/bison/src/ |
location.c | 55 size SIZE. */ 58 location_compute (location *loc, boundary *cur, char const *token, size_t size) 64 char const *lim = token + size; 191 size_t size = 0; local 192 ssize_t len = getline (&buf, &size, caret_info.source);
|
/external/boringssl/src/crypto/bio/ |
bio_mem.c | 70 const size_t size = len < 0 ? strlen((char *)buf) : (size_t)len; local 84 b->length = size; 85 b->max = size; 193 static int mem_gets(BIO *bio, char *buf, int size) { 200 if (size - 1 < j) { 201 j = size - 1; 204 if (size > 0) {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
ExtendedKeyUsage.java | 19 * extendedKeyUsage ::= SEQUENCE SIZE (1..MAX) OF KeyPurposeId 163 KeyPurposeId[] temp = new KeyPurposeId[seq.size()]; 178 public int size() method in class:ExtendedKeyUsage 180 return usageTable.size();
|
/external/caliper/caliper/src/main/java/com/google/caliper/worker/ |
Allocation.java | 30 * the total size of the allocation in bytes and the location, which is a stringified stack trace of 41 /** Returns the sum of the {@link #size sizes} of the allocations. */ 45 totalSize += allocation.size; 51 private final long size; field in class:Allocation 54 Allocation(String description, long size, List<StackTraceElement> location) { 56 this.size = size; 68 && other.size == size 80 return size; [all...] |
/external/caliper/examples/src/main/java/examples/ |
ListModificationBenchmark.java | 52 private int size; field in class:ListModificationBenchmark 61 for (int i = 0; i < size; i++) { 69 for (int i = 0; i < size; i++) { 92 int index = size / 2; 100 int index = size - 1;
|
/external/ceres-solver/internal/ceres/ |
schur_eliminator.h | 147 // Where the sum is over chunks and E_k'E_k is dense matrix of size y1 253 // position in the buffer_ array. The size of the chunk is the 259 // size = 2 268 Chunk() : size(0) {} 269 int size; member in struct:ceres::internal::SchurEliminator::Chunk 314 // the f blocks can be of varying size, this vector stores the 328 // during the elimination phase. buffer_ is of size num_threads * 336 // ChunkOuterProduct. Like buffer_ it is of size num_threads *
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
stored_object.py | 13 App Engine datastore limits entity size to less than 1 MB; this module 84 size = ndb.IntegerProperty(default=0, indexed=False) variable in class:MultipartEntity 90 if entity is None or not entity.size: 95 for i in xrange(entity.size)] 118 self.size = num_parts 141 head cache stores the expected size.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/ |
crcmod.py | 194 on the size of the CRC value. 200 size = 8*self.digest_size 201 if size == 24: 202 size = 32 203 crcType = 'UINT%d' % size 372 # Map the CRC size onto the functions that handle these sizes. 383 # Build a mapping of size to struct module type code. This table is 391 size = {1:8, 2:16, 4:32, 8:64}.get(struct.calcsize(typeCode),None) variable 392 if size is not None and size not in _sizeToTypeCode [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/ |
crcmod.py | 195 on the size of the CRC value. 201 size = 8*self.digest_size 202 if size == 24: 203 size = 32 204 crcType = 'UINT%d' % size 361 # Map the CRC size onto the functions that handle these sizes. 372 # Build a mapping of size to struct module type code. This table is 380 size = {1:8, 2:16, 4:32, 8:64}.get(struct.calcsize(typeCode),None) variable 381 if size is not None and size not in _sizeToTypeCode [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/ |
crcmod.py | 194 on the size of the CRC value. 200 size = 8*self.digest_size 201 if size == 24: 202 size = 32 203 crcType = 'UINT%d' % size 372 # Map the CRC size onto the functions that handle these sizes. 383 # Build a mapping of size to struct module type code. This table is 391 size = {1:8, 2:16, 4:32, 8:64}.get(struct.calcsize(typeCode),None) variable 392 if size is not None and size not in _sizeToTypeCode [all...] |
/external/clang/include/clang/AST/ |
ASTUnresolvedSet.h | 72 unsigned size() const { return Decls.size(); } function in class:clang::ASTUnresolvedSet
|