Searched refs:container (Results 1 - 25 of 280) sorted by relevance

1234567891011>>

/external/oprofile/libutil++/
H A Dgrowable_vector.h33 if (index >= container.size())
35 return container[index];
45 if (index >= container.size())
46 container.resize(index + 1);
47 return container[index];
55 if (rhs.container.size() > container.size())
56 container.resize(rhs.container.size());
58 size_type min_size = min(container
102 container_type container; member in class:growable_vector
[all...]
H A Dsparse_array.h29 typename container_type::const_iterator it = container.find(index);
30 if (it != container.end())
42 return container[index];
50 typename container_type::const_iterator it = rhs.container.begin();
51 typename container_type::const_iterator it_end = rhs.container.end();
53 container[it->first] += it->second;
64 typename container_type::const_iterator it = rhs.container.begin();
65 typename container_type::const_iterator it_end = rhs.container.end();
67 container[it->first] -= it->second;
78 if (container
97 container_type container; member in class:sparse_array
[all...]
/external/freetype/src/cff/
H A Dcffpic.c84 CffModulePIC* container = ( CffModulePIC* )pic_container->cff; local
87 if ( container->cff_services )
89 container->cff_services );
90 container->cff_services = NULL;
91 if ( container->cff_field_handlers )
93 library, container->cff_field_handlers );
94 container->cff_field_handlers = NULL;
95 FT_FREE( container );
106 CffModulePIC* container; local
110 /* allocate pointer, clear and set global container pointe
[all...]
/external/freetype/src/sfnt/
H A Dsfntpic.c80 sfntModulePIC* container = (sfntModulePIC*)pic_container->sfnt; local
83 if ( container->sfnt_services )
85 container->sfnt_services );
86 container->sfnt_services = NULL;
87 if ( container->tt_cmap_classes )
89 container->tt_cmap_classes );
90 container->tt_cmap_classes = NULL;
91 FT_FREE( container );
102 sfntModulePIC* container; local
106 /* allocate pointer, clear and set global container pointe
[all...]
/external/freetype/src/autofit/
H A Dafpic.c62 AFModulePIC* container; local
66 /* allocate pointer, clear and set global container pointer */
67 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
69 FT_MEM_SET( container, 0, sizeof ( *container ) );
70 pic_container->autofit = container;
76 container->af_script_classes[ss] =
77 &container->af_script_classes_rec[ss];
79 container
[all...]
/external/freetype/src/truetype/
H A Dttpic.c53 TTModulePIC* container = (TTModulePIC*)pic_container->truetype; local
56 if ( container->tt_services )
57 FT_Destroy_Class_tt_services( library, container->tt_services );
58 container->tt_services = NULL;
59 FT_FREE( container );
70 TTModulePIC* container; local
74 /* allocate pointer, clear and set global container pointer */
75 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
77 FT_MEM_SET( container,
[all...]
/external/freetype/src/psnames/
H A Dpspic.c48 PSModulePIC* container = (PSModulePIC*)pic_container->psnames; local
51 if(container->pscmaps_services)
53 container->pscmaps_services );
54 container->pscmaps_services = NULL;
55 FT_FREE( container );
66 PSModulePIC* container; local
70 /* allocate pointer, clear and set global container pointer */
71 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
73 FT_MEM_SET( container,
[all...]
/external/freetype/src/raster/
H A Drastpic.c40 RasterPIC* container = (RasterPIC*)pic_container->raster; local
41 if ( --container->ref_count )
43 FT_FREE( container );
54 RasterPIC* container; local
66 /* allocate pointer, clear and set global container pointer */
67 if ( FT_ALLOC( container, sizeof ( *container ) ) )
69 FT_MEM_SET( container, 0, sizeof ( *container ) );
70 pic_container->raster = container;
[all...]
/external/freetype/src/smooth/
H A Dftspic.c40 SmoothPIC* container = (SmoothPIC*)pic_container->smooth; local
43 if ( --container->ref_count )
45 FT_FREE( container );
56 SmoothPIC* container; local
68 /* allocate pointer, clear and set global container pointer */
69 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
71 FT_MEM_SET( container, 0, sizeof ( *container ) );
72 pic_container->smooth = container;
[all...]
/external/freetype/src/pshinter/
H A Dpshpic.c52 PSHinterPIC* container; local
56 /* allocate pointer, clear and set global container pointer */
57 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
59 FT_MEM_SET( container, 0, sizeof ( *container ) );
60 pic_container->pshinter = container;
64 library, &container->pshinter_interface );
/external/webkit/Source/WebCore/dom/
H A DRangeBoundaryPoint.h36 explicit RangeBoundaryPoint(PassRefPtr<Node> container);
40 Node* container() const;
46 void set(PassRefPtr<Node> container, int offset, Node* childBefore);
65 inline RangeBoundaryPoint::RangeBoundaryPoint(PassRefPtr<Node> container) argument
66 : m_containerNode(container)
73 inline Node* RangeBoundaryPoint::container() const function in class:WebCore::RangeBoundaryPoint
111 inline void RangeBoundaryPoint::set(PassRefPtr<Node> container, int offset, Node* childBefore) argument
113 ASSERT(container);
115 ASSERT(childBefore == (offset ? container->childNode(offset - 1) : 0));
116 m_containerNode = container;
139 setToStartOfNode(PassRefPtr<Node> container) argument
147 setToEndOfNode(PassRefPtr<Node> container) argument
[all...]
H A DContainerNodeAlgorithms.h34 void addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container);
41 void removeAllChildrenInContainer(GenericNodeContainer* container) argument
47 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, container);
69 void appendChildToContainer(GenericNode* child, GenericNodeContainer* container) argument
71 child->setParent(container);
73 GenericNode* lastChild = container->lastChild();
78 container->setFirstChild(child);
80 container->setLastChild(child);
114 void addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container) argument
118 for (GenericNode* n = container
[all...]
/external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/
H A Dcells.js6 var container = document.createElement(tag);
8 row.appendChild(container);
9 container.appendChild(cell);
16 var container = document.createElement(tag);
18 row.appendChild(container);
19 container.appendChild(cell);
/external/chromium/testing/gtest/test/
H A Dgtest-typed-test_test.h53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0U, container.size());
/external/gtest/test/
H A Dgtest-typed-test_test.h53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0U, container.size());
/external/protobuf/gtest/test/
H A Dgtest-typed-test_test.h53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0U, container.size());
/external/chromium/chrome/browser/autofill/
H A Dautofill-inl.h29 bool FindByContents(const C& container, const T& form_group) { argument
31 container.begin(),
32 container.end(),
33 FormGroupMatchesByCompareFunctor<T>(form_group)) != container.end();
/external/freetype/src/base/
H A Dbasepic.c61 BasePIC* container; local
64 /* allocate pointer, clear and set global container pointer */
65 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
67 FT_MEM_SET( container, 0, sizeof ( *container ) );
68 pic_container->base = container;
77 &container->ft_outline_glyph_class );
79 &container->ft_bitmap_glyph_class );
81 (ft_raccess_guess_rec*)&container
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DObjCPlugin.h34 - (void)removeBridgeRestrictions:(id)container;
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformScreenGtk.cpp53 GtkWidget* container = GTK_WIDGET(widget->root()->hostWindow()->platformPageClient());
55 if (!container)
58 if (!gtk_widget_get_realized(container)) {
59 GtkWidget* toplevel = gtk_widget_get_toplevel(container);
61 container = toplevel;
66 return gdk_window_get_visual(gtk_widget_get_window(container));
96 GtkWidget* container = gtk_widget_get_toplevel(GTK_WIDGET(widget->root()->hostWindow()->platformPageClient()));
97 if (!gtk_widget_is_toplevel(container))
100 GdkScreen* screen = gtk_widget_has_screen(container) ? gtk_widget_get_screen(container)
[all...]
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_floating_container.cc28 GtkFloatingContainerChild* GetChild(GtkFloatingContainer* container, argument
30 for (GList* floating_children = container->floating_children;
46 static void gtk_floating_container_remove(GtkContainer* container,
48 static void gtk_floating_container_forall(GtkContainer* container,
56 static void gtk_floating_container_set_child_property(GtkContainer* container,
61 static void gtk_floating_container_get_child_property(GtkContainer* container,
125 static void gtk_floating_container_init(GtkFloatingContainer* container) { argument
126 GTK_WIDGET_SET_FLAGS(container, GTK_NO_WINDOW);
128 container->floating_children = NULL;
131 static void gtk_floating_container_remove(GtkContainer* container, argument
171 gtk_floating_container_forall(GtkContainer* container, gboolean include_internals, GtkCallback callback, gpointer callback_data) argument
230 GtkFloatingContainer* container = GTK_FLOATING_CONTAINER(widget); local
252 gtk_floating_container_set_child_property(GtkContainer* container, GtkWidget* child, guint property_id, const GValue* value, GParamSpec* pspec) argument
277 gtk_floating_container_get_child_property(GtkContainer* container, GtkWidget* child, guint property_id, GValue* value, GParamSpec* pspec) argument
304 gtk_floating_container_add_floating(GtkFloatingContainer* container, GtkWidget* widget) argument
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dstl_util-inl.h42 // For a range within a container of pointers, calls delete
88 // STLDeleteElements() deletes all the elements in an STL container and clears
89 // the container. This function is suitable for use with a vector, set,
90 // hash_set, or any other STL container which defines sensible begin(), end(),
93 // If container is NULL, this function is a no-op.
96 // ElementDeleter (defined below), which ensures that your container's elements
99 void STLDeleteElements(T *container) { argument
100 if (!container) return;
101 STLDeleteContainerPointers(container->begin(), container
[all...]
/external/webkit/LayoutTests/fast/dom/HTMLTableSectionElement/script-tests/
H A Drows.js6 var container = document.createElement(tag);
8 body.appendChild(container);
9 container.appendChild(row);
/external/chromium/chrome/browser/ui/tests/
H A Dui_gfx_image_unittest.cc27 scoped_ptr<views::View> container(new views::View());
28 container->SetBounds(0, 0, 200, 200);
29 container->SetVisible(true);
33 container->AddChildView(image_view.get());
/external/clang/test/SemaCXX/
H A DPR11358.cpp6 struct container { struct in namespace:test1
13 typedef container<T> Container;
39 struct container { struct in namespace:test3
45 typedef container<T> Container;

Completed in 3626 milliseconds

1234567891011>>