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

1 2

  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationSetTest.java 49 private static final int INITIAL_SIZE = 100;
85 animationSet.initialize(INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE);
120 animationSet.initialize(INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE);
137 animationSet.initialize(INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE)
    [all...]
  /external/srec/shared/src/
LStringImpl.c 26 #define INITIAL_SIZE 32
39 impl->size = INITIAL_SIZE;
40 impl->value = MALLOC(sizeof(LCHAR) * INITIAL_SIZE, MTAG);
Int8ArrayListImpl.c 26 #define INITIAL_SIZE 32
48 impl->contents = MALLOC((INITIAL_SIZE + 1) * sizeof(asr_int8_t), MTAG);
54 impl->actualSize = INITIAL_SIZE;
IntArrayListImpl.c 26 #define INITIAL_SIZE 32
47 impl->contents = MALLOC((INITIAL_SIZE + 1) * sizeof(int), MTAG);
53 impl->actualSize = INITIAL_SIZE;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
IntArray.java 45 public static final int INITIAL_SIZE = 10;
75 data = new int[INITIAL_SIZE];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
IntArray.h 45 public static final int INITIAL_SIZE = 10;
75 data = new int[INITIAL_SIZE];
IntArray.m 45 public static final int INITIAL_SIZE = 10;
75 data = new int[INITIAL_SIZE];
  /external/chromium/chrome/browser/tab_contents/
tab_contents_view_mac.h 55 virtual void CreateView(const gfx::Size& initial_size);
tab_contents_view_gtk.h 47 virtual void CreateView(const gfx::Size& initial_size);
tab_contents_view_gtk.cc 130 void TabContentsViewGtk::CreateView(const gfx::Size& initial_size) {
131 requested_size_ = initial_size;
tab_contents_view_mac.mm 84 void TabContentsViewMac::CreateView(const gfx::Size& initial_size) {
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_view_gtk.cc 152 void TabContentsViewGtk::CreateView(const gfx::Size& initial_size) {
154 WidgetGtk::Init(NULL, gfx::Rect(0, 0, initial_size.width(),
155 initial_size.height()));
tab_contents_view_touch.cc 69 void TabContentsViewTouch::CreateView(const gfx::Size& initial_size) {
70 SetBoundsRect(gfx::Rect(bounds().origin(), initial_size));
tab_contents_view_gtk.h 51 virtual void CreateView(const gfx::Size& initial_size);
tab_contents_view_touch.h 47 virtual void CreateView(const gfx::Size& initial_size) OVERRIDE;
tab_contents_view_views.h 44 virtual void CreateView(const gfx::Size& initial_size) OVERRIDE;
tab_contents_view_views.cc 64 void TabContentsViewViews::CreateView(const gfx::Size& initial_size) {
  /external/chromium/chrome/browser/visitedlink/
visitedlink_unittest.cc 90 bool InitVisited(int initial_size, bool suppress_rebuild) {
94 initial_size));
318 const int32 initial_size = 17; local
320 ASSERT_TRUE(InitVisited(initial_size, true));
  /external/chromium/googleurl/src/
url_canon_stdstring.h 52 // with (by |initial_size|). This ends up being important because resize
  /external/libxml2/
triostr.h 107 TRIO_STRING_PUBLIC trio_string_t *trio_string_create TRIO_PROTO((int initial_size));
triostr.c 1338 @param initial_size Initial size of the buffer.
1343 TRIO_ARGS1((initial_size),
1344 int initial_size)
1352 (size_t)((initial_size > 0) ? initial_size : 1)))
1355 self->allocated = initial_size;
    [all...]
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 149 private static final int INITIAL_SIZE = 16;
181 initializeTable(INITIAL_SIZE);
  /external/v8/src/
parser.h 195 template <typename T, int initial_size>
206 list_ = new ZoneList<T*>(initial_size);
255 list_ = new ZoneList<T*>(initial_size);
prettyprinter.cc 466 const int initial_size = 256; local
467 output_ = NewArray<char>(initial_size);
468 size_ = initial_size;
  /ndk/sources/host-tools/sed-4.2.1/sed/
execute.c 389 static void line_init P_((struct line *, struct line *, size_t initial_size));
391 line_init(buf, state, initial_size)
394 size_t initial_size;
396 buf->text = MALLOC(initial_size, char);
398 buf->alloc = initial_size;
    [all...]

Completed in 1438 milliseconds

1 2