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

1 2 3 4

  /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...]
  /art/runtime/gc/space/
dlmalloc_space.cc 105 byte* end, size_t growth_limit, size_t initial_size) :
107 VALGRIND_MAKE_MEM_UNDEFINED(mem_map->Begin() + initial_size, mem_map->Size() - initial_size);
149 DlMallocSpace* DlMallocSpace::Create(const std::string& name, size_t initial_size, size_t
160 << " initial_size=" << PrettySize(initial_size)
167 if (starting_size > initial_size) {
168 initial_size = starting_size;
170 if (initial_size > growth_limit) {
172 << PrettySize(initial_size) << ") is larger than its capacity (
294 const size_t initial_size = 2 * MB; local
    [all...]
dlmalloc_space.h 49 static DlMallocSpace* Create(const std::string& name, size_t initial_size, size_t growth_limit,
157 bool Init(size_t initial_size, size_t maximum_size, size_t growth_size, byte* requested_base);
159 static void* CreateMallocSpace(void* base, size_t morecore_start, size_t initial_size);
  /external/chromium_org/content/shell/browser/
shell.cc 101 const gfx::Size& initial_size) {
103 shell->PlatformCreateWindow(initial_size.width(), initial_size.height());
152 gfx::Size Shell::AdjustWindowSize(const gfx::Size& initial_size) {
153 if (!initial_size.IsEmpty())
154 return initial_size;
162 const gfx::Size& initial_size) {
165 create_params.initial_size = AdjustWindowSize(initial_size);
167 Shell* shell = CreateShell(web_contents, create_params.initial_size);
    [all...]
shell.h 85 const gfx::Size& initial_size);
166 const gfx::Size& initial_size);
175 static gfx::Size AdjustWindowSize(const gfx::Size& initial_size);
  /external/chromium_org/content/shell/common/
shell_test_configuration.h 39 gfx::Size initial_size; member in struct:content::ShellTestConfiguration
shell_messages.h 25 IPC_STRUCT_TRAITS_MEMBER(initial_size)
  /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;
  /art/runtime/
reference_table.h 39 ReferenceTable(const char* name, size_t initial_size, size_t max_size);
reference_table.cc 32 ReferenceTable::ReferenceTable(const char* name, size_t initial_size, size_t max_size)
34 CHECK_LE(initial_size, max_size);
35 entries_.reserve(initial_size);
  /developers/build/prebuilts/gradle/BatchStepSensor/BatchStepSensorSample/src/main/java/com/example/android/batchstepsensor/
CardStreamFragment.java 41 private static final int INITIAL_SIZE = 15;
43 private LinkedHashMap<String, Card> mVisibleCards = new LinkedHashMap<String, Card>(INITIAL_SIZE);
44 private HashMap<String, Card> mHiddenCards = new HashMap<String, Card>(INITIAL_SIZE);
45 private HashSet<String> mDismissibleCards = new HashSet<String>(INITIAL_SIZE);
  /developers/build/templates/CardStream/_MODULE_/src/template/java/_PACKAGE_/
CardStreamFragment.java.ftl 39 private static final int INITIAL_SIZE = 15;
41 private LinkedHashMap<String, Card> mVisibleCards = new LinkedHashMap<String, Card>(INITIAL_SIZE);
42 private HashMap<String, Card> mHiddenCards = new HashMap<String, Card>(INITIAL_SIZE);
43 private HashSet<String> mDismissibleCards = new HashSet<String>(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_org/third_party/leveldatabase/src/db/
autocompact_test.cc 75 const int64_t initial_size = Size(Key(0), Key(n)); local
94 if (size <= initial_size/10) {
  /external/chromium_org/content/browser/web_contents/
web_contents_view_guest.cc 120 void WebContentsViewGuest::CreateView(const gfx::Size& initial_size,
122 platform_view_->CreateView(initial_size, context);
123 size_ = initial_size;
  /external/chromium_org/content/port/browser/
web_contents_view_port.h 22 const gfx::Size& initial_size, gfx::NativeView context) = 0;
  /external/chromium_org/content/test/
test_web_contents_view.cc 99 void TestWebContentsView::CreateView(const gfx::Size& initial_size,
test_web_contents_view.h 60 virtual void CreateView(const gfx::Size& initial_size,
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_view_layout_unittest.cc 85 explicit MockView(gfx::Size initial_size)
86 : size_(initial_size) {
  /external/chromium_org/ash/wm/workspace/
workspace_window_resizer.cc 551 int initial_size = PrimaryAxisSize(attached_windows_[i]->bounds().size()); local
552 initial_size_.push_back(initial_size);
555 int min_size = std::min(initial_size,
558 total_initial_size_ += initial_size;
559 total_available += std::max(min_size, initial_size) - min_size;
576 int initial_size = PrimaryAxisSize(details_.initial_bounds_in_parent.size()); local
581 int delta = current_size - initial_size;
703 int initial_size = initial_size_[i]; local
708 sizes->push_back(WindowSize(initial_size, min, max));
    [all...]
  /external/chromium_org/ash/system/tray/
system_tray_unittest.cc 252 gfx::Size initial_size = tray->GetWidget()->GetWindowBoundsInScreen().size(); local
260 EXPECT_NE(initial_size.ToString(), new_size.ToString());
265 EXPECT_EQ(initial_size.ToString(),

Completed in 1118 milliseconds

1 2 3 4