HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 351 - 375 of 11074) sorted by null

<<11121314151617181920>>

  /libcore/include/
LocalArray.h 24 * A fixed-size array with a size hint. That number of bytes will be allocated
35 * Allocates a new fixed-size array of the given size. If this size is
58 size_t size() { return mSize; } function in class:LocalArray
  /libcore/luni/src/test/java/libcore/java/util/
OldAbstractSetTest.java 48 public int size() { method
86 public int size() {
  /libcore/ojluni/src/main/java/java/nio/channels/
SeekableByteChannel.java 39 * the current <i>size</i> of the entity to which the channel is connected. The
40 * size increases when bytes are written beyond its current size; the size
97 * <p> Setting the position to a value that is greater than the current size
98 * is legal but does not change the size of the entity. A later attempt to
121 * Returns the current size of entity to which this channel is connected.
123 * @return The current size, measured in bytes
130 long size() throws IOException; method in interface:SeekableByteChannel
134 * size
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Dictionary.java 63 abstract public int size(); method in class:Dictionary
  /libcore/ojluni/src/main/java/sun/misc/
LRUCache.java 36 private final int size; field in class:LRUCache
38 public LRUCache(int size) {
39 this.size = size;
55 oa = (V[])new Object[size];
  /libnativehelper/include/nativehelper/
ScopedUtfChars.h 53 size_t size() const { function in class:ScopedUtfChars
  /ndk/sources/cxx-stl/stlport/src/
string.cpp 11 size_t size = strlen(ascii); local
12 wchar_t* buff = new wchar_t[size+1];
13 mbstowcs(buff, ascii, size);
14 buff[size] = 0x00;
20 size_t size = wcslen(wide); local
21 char* buff = new char[size+1];
22 wcstombs(buff, wide, size);
23 buff[size] = 0;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_slist_base.c 89 _Sl_global<_Dummy>::size(_Slist_node_base* __node) { function in class:_Dummy
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
vector0.hpp 37 typedef long_<0> size; typedef in struct:boost::mpl::vector0
  /ndk/tests/device/test-stlport_shared-exception/jni/
delete1.cpp 4 int size = 0; variable
9 size = sz;
  /ndk/tests/device/test-stlport_static-exception/jni/
delete1.cpp 4 int size = 0; variable
9 size = sz;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
SizeFileFilter.java 23 * Filters files based on size, can filter either smaller files or
27 * current directory whose size is greater than 1 MB:
43 /** The size threshold. */
44 private final long size; field in class:SizeFileFilter
49 * Constructs a new size file filter for files equal to or
50 * larger than a certain size.
52 * @param size the threshold size of the files
53 * @throws IllegalArgumentException if the size is negative
55 public SizeFileFilter(long size) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
info_fn_imps.hpp 45 size() const function in class:PB_DS_CLASS_C_DEC
58 { return (size() == 0); }
73 if (size() != other.size())
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
info_fn_imps.hpp 45 size() const function in class:PB_DS_CLASS_C_DEC
58 { return (size() == 0); }
73 if (size() != other.size())
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
info_fn_imps.hpp 45 size() const function in class:PB_DS_CLASS_C_DEC
58 { return (size() == 0); }
73 if (size() != other.size())
  /prebuilts/gdb/darwin-x86/include/python2.7/
listobject.h 47 PyAPI_FUNC(PyObject *) PyList_New(Py_ssize_t size); variable
tupleobject.h 40 PyAPI_FUNC(PyObject *) PyTuple_New(Py_ssize_t size); variable
  /prebuilts/gdb/linux-x86/include/python2.7/
listobject.h 47 PyAPI_FUNC(PyObject *) PyList_New(Py_ssize_t size); variable
tupleobject.h 40 PyAPI_FUNC(PyObject *) PyTuple_New(Py_ssize_t size); variable
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/
info_fn_imps.hpp 45 size() const function in class:PB_DS_CLASS_C_DEC
58 { return (size() == 0); }
73 if (size() != other.size())
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_slist_base.c 89 _Sl_global<_Dummy>::size(_Slist_node_base* __node) { function in class:_Dummy
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
listobject.h 47 PyAPI_FUNC(PyObject *) PyList_New(Py_ssize_t size); variable
tupleobject.h 40 PyAPI_FUNC(PyObject *) PyTuple_New(Py_ssize_t size); variable
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
listobject.h 47 PyAPI_FUNC(PyObject *) PyList_New(Py_ssize_t size); variable
tupleobject.h 40 PyAPI_FUNC(PyObject *) PyTuple_New(Py_ssize_t size); variable

Completed in 3177 milliseconds

<<11121314151617181920>>