HomeSort by relevance Sort by last modified time
    Searched refs:container (Results 26 - 50 of 1514) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/views/examples/
checkbox_example.cc 22 void CheckboxExample::CreateExampleView(View* container) {
25 container->SetLayoutManager(new FillLayout);
26 container->AddChildView(button_);
link_example.cc 21 void LinkExample::CreateExampleView(View* container) {
25 container->SetLayoutManager(new FillLayout);
26 container->AddChildView(link_);
webview_example.cc 25 void WebViewExample::CreateExampleView(View* container) {
27 container->SetLayoutManager(new FillLayout);
28 container->AddChildView(webview_);
label_example.h 21 virtual void CreateExampleView(View* container) OVERRIDE;
menu_example.h 23 virtual void CreateExampleView(View* container) OVERRIDE;
slider_example.cc 25 void SliderExample::CreateExampleView(View* container) {
31 container->SetLayoutManager(new BoxLayout(BoxLayout::kHorizontal, 3, 3, 3));
32 container->AddChildView(slider_);
33 container->AddChildView(label_);
throbber_example.h 21 virtual void CreateExampleView(View* container) OVERRIDE;
label_example.cc 45 void LabelExample::CreateExampleView(View* container) {
47 container->SetLayoutManager(new BoxLayout(BoxLayout::kVertical, 0, 0, 10));
49 container->AddChildView(label);
55 container->AddChildView(label);
59 container->AddChildView(label);
64 container->AddChildView(label);
70 container->AddChildView(label);
75 container->AddChildView(label);
81 container->AddChildView(label);
  /external/gtest/test/
gtest-typed-test_test.h 53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0U, container.size());
  /external/protobuf/gtest/test/
gtest-typed-test_test.h 53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0U, container.size());
  /ndk/sources/third_party/googletest/googletest/test/
gtest-typed-test_test.h 53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0U, container.size());
  /frameworks/support/v4/java/android/support/v4/view/
PagerAdapter.java 91 * @param container The containing View which is displaying this adapter's
94 public void startUpdate(ViewGroup container) {
95 startUpdate((View) container);
100 * for adding the view to the container given here, although it only
104 * @param container The containing View in which the page will be shown.
107 * need to be a View, but can be some other container of the page.
109 public Object instantiateItem(ViewGroup container, int position) {
110 return instantiateItem((View) container, position);
115 * for removing the view from its container, although it only must ensure
118 * @param container The containing View from which the page will be removed
    [all...]
  /external/ceres-solver/internal/ceres/
stl_util.h 39 // For a range within a container of pointers, calls delete
58 // Variant of STLDeleteContainerPointers which allows the container to
72 // STLDeleteElements() deletes all the elements in an STL container and clears
73 // the container. This function is suitable for use with a vector, set,
74 // hash_set, or any other STL container which defines sensible begin(), end(),
77 // If container is NULL, this function is a no-op.
80 // ElementDeleter (defined below), which ensures that your container's elements
83 void STLDeleteElements(T *container) {
84 if (!container) return;
85 STLDeleteContainerPointers(container->begin(), container->end())
    [all...]
  /external/chromium_org/third_party/freetype/src/raster/
rastpic.c 36 RasterPIC* container = (RasterPIC*)pic_container->raster; local
37 if(--container->ref_count)
39 FT_FREE( container );
50 RasterPIC* container; local
62 /* allocate pointer, clear and set global container pointer */
63 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
65 FT_MEM_SET( container, 0, sizeof(*container) );
66 pic_container->raster = container;
    [all...]
  /external/chromium_org/third_party/freetype/src/smooth/
ftspic.c 36 SmoothPIC* container = (SmoothPIC*)pic_container->smooth; local
37 if(--container->ref_count)
39 FT_FREE( container );
50 SmoothPIC* container; local
62 /* allocate pointer, clear and set global container pointer */
63 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
65 FT_MEM_SET( container, 0, sizeof(*container) );
66 pic_container->smooth = container;
    [all...]
  /external/freetype/src/raster/
rastpic.c 42 RasterPIC* container = (RasterPIC*)pic_container->raster; local
45 if ( --container->ref_count )
47 FT_FREE( container );
58 RasterPIC* container = NULL; local
70 /* allocate pointer, clear and set global container pointer */
71 if ( FT_ALLOC( container, sizeof ( *container ) ) )
73 FT_MEM_SET( container, 0, sizeof ( *container ) );
74 pic_container->raster = container;
    [all...]
  /external/freetype/src/smooth/
ftspic.c 42 SmoothPIC* container = (SmoothPIC*)pic_container->smooth; local
45 if ( --container->ref_count )
48 FT_FREE( container );
59 SmoothPIC* container = NULL; local
71 /* allocate pointer, clear and set global container pointer */
72 if ( FT_ALLOC( container, sizeof ( *container ) ) )
74 FT_MEM_SET( container, 0, sizeof ( *container ) );
75 pic_container->smooth = container;
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
device_policy_decoder_chromeos.cc 63 const em::GuestModeEnabledProto& container(policy.guest_mode_enabled());
64 if (container.has_guest_mode_enabled()) {
68 Value::CreateBooleanValue(container.guest_mode_enabled()),
74 const em::ShowUserNamesOnSigninProto& container(policy.show_user_names());
75 if (container.has_show_user_names()) {
79 Value::CreateBooleanValue(container.show_user_names()),
85 const em::AllowNewUsersProto& container(policy.allow_new_users());
86 if (container.has_allow_new_users()) {
90 Value::CreateBooleanValue(container.allow_new_users()),
96 const em::UserWhitelistProto& container(policy.user_whitelist())
193 const em::SupervisedUsersSettingsProto& container = local
    [all...]
  /external/chromium_org/third_party/freetype/src/pshinter/
pshpic.c 47 PSHinterPIC* container; local
51 /* allocate pointer, clear and set global container pointer */
52 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
54 FT_MEM_SET( container, 0, sizeof ( *container ) );
55 pic_container->pshinter = container;
58 FT_Init_Class_pshinter_interface(library, &container->pshinter_interface);
  /external/freetype/src/pshinter/
pshpic.c 53 PSHinterPIC* container = NULL; local
57 /* allocate pointer, clear and set global container pointer */
58 if ( FT_ALLOC( container, sizeof ( *container ) ) )
60 FT_MEM_SET( container, 0, sizeof ( *container ) );
61 pic_container->pshinter = container;
65 library, &container->pshinter_interface );
  /external/chromium/chrome/browser/autofill/
autofill-inl.h 29 bool FindByContents(const C& container, const T& form_group) {
31 container.begin(),
32 container.end(),
33 FormGroupMatchesByCompareFunctor<T>(form_group)) != container.end();
  /external/chromium-trace/trace-viewer/src/tracing/tracks/
drawing_container.css 6 .drawing-container {
13 .drawing-container-canvas {
  /external/chromium_org/components/autofill/core/browser/
autofill-inl.h 30 bool FindByContents(const C& container, const T& form_group) {
32 container.begin(),
33 container.end(),
34 FormGroupMatchesByCompareFunctor<T>(form_group)) != container.end();
  /external/freetype/src/base/
basepic.c 73 BasePIC* container = NULL; local
77 /* allocate pointer, clear and set global container pointer */
78 if ( FT_ALLOC( container, sizeof ( *container ) ) )
80 FT_MEM_SET( container, 0, sizeof ( *container ) );
81 pic_container->base = container;
91 &container->ft_outline_glyph_class );
93 &container->ft_bitmap_glyph_class );
96 (ft_raccess_guess_rec*)&container->ft_raccess_guess_table )
    [all...]
  /external/chromium_org/cc/base/
scoped_ptr_algorithm.h 14 ScopedContainer* container,
21 container->swap(first, result);

Completed in 1540 milliseconds

12 3 4 5 6 7 8 91011>>