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

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/libutil++/
growable_vector.h 33 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.size(), rhs.container.size())
102 container_type container; member in class:growable_vector
    [all...]
sparse_array.h 29 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.size() == 0
97 container_type container; member in class:sparse_array
    [all...]
  /external/freetype/src/psnames/
pspic.c 38 PSModulePIC* container = (PSModulePIC*)pic_container->psnames; local
39 if(container->pscmaps_services)
40 FT_Destroy_Class_pscmaps_services(library, container->pscmaps_services);
41 container->pscmaps_services = NULL;
42 FT_FREE( container );
53 PSModulePIC* container; 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) )
    [all...]
  /external/freetype/src/cff/
cffpic.c 50 CffModulePIC* container = (CffModulePIC*)pic_container->cff; local
51 if(container->cff_services)
52 FT_Destroy_Class_cff_services(library, container->cff_services);
53 container->cff_services = NULL;
54 if(container->cff_field_handlers)
55 FT_Destroy_Class_cff_field_handlers(library, container->cff_field_handlers);
56 container->cff_field_handlers = NULL;
57 FT_FREE( container );
68 CffModulePIC* container; local
72 /* allocate pointer, clear and set global container pointer *
    [all...]
  /external/freetype/src/sfnt/
sfntpic.c 47 sfntModulePIC* container = (sfntModulePIC*)pic_container->sfnt; local
48 if(container->sfnt_services)
49 FT_Destroy_Class_sfnt_services(library, container->sfnt_services);
50 container->sfnt_services = NULL;
51 if(container->tt_cmap_classes)
52 FT_Destroy_Class_tt_cmap_classes(library, container->tt_cmap_classes);
53 container->tt_cmap_classes = NULL;
54 FT_FREE( container );
65 sfntModulePIC* container; local
69 /* allocate pointer, clear and set global container pointer *
    [all...]
  /external/freetype/src/autofit/
afpic.c 58 AFModulePIC* 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->autofit = container;
72 container->af_script_classes[ss] =
73 &container->af_script_classes_rec[ss];
75 container->af_script_classes[AF_SCRIPT_CLASSES_COUNT - 1] = NULL
    [all...]
  /external/freetype/src/truetype/
ttpic.c 39 TTModulePIC* container = (TTModulePIC*)pic_container->truetype; local
40 if(container->tt_services)
41 FT_Destroy_Class_tt_services(library, container->tt_services);
42 container->tt_services = NULL;
43 FT_FREE( container );
54 TTModulePIC* container; local
58 /* allocate pointer, clear and set global container pointer */
59 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
61 FT_MEM_SET( container, 0, sizeof(*container) )
    [all...]
  /external/webkit/Source/WebCore/manual-tests/
transition-timing-functions.html 14 .container div {
24 .container:hover .default,
25 .container:hover .ease,
26 .container:hover .linear,
27 .container:hover .ease-in,
28 .container:hover .ease-out,
29 .container:hover .ease-in-out,
30 .container:hover .cubic,
31 .container:hover .error {
35 .container .ease
    [all...]
  /external/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/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/base/
basepic.c 55 BasePIC* container; local
58 /* allocate pointer, clear and set global container pointer */
59 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
61 FT_MEM_SET( container, 0, sizeof(*container) );
62 pic_container->base = container;
70 FT_Init_Class_ft_outline_glyph_class(&container->ft_outline_glyph_class);
71 FT_Init_Class_ft_bitmap_glyph_class(&container->ft_bitmap_glyph_class);
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container.cc 21 GtkWidget* container; member in struct:__anon3146::SizeAllocateData
26 void GetChildPosition(GtkWidget* container, GtkWidget* child, int* x, int* y) {
29 gtk_container_child_get_property(GTK_CONTAINER(container), child, "x", &v);
31 gtk_container_child_get_property(GTK_CONTAINER(container), child, "y", &v);
48 g_signal_emit(data->container,
64 GetChildPosition(data->container, child, &x, &y);
69 if (GTK_WIDGET_NO_WINDOW(data->container)) {
139 static void gtk_expanded_container_init(GtkExpandedContainer* container) {
155 data.container = widget;
166 void gtk_expanded_container_put(GtkExpandedContainer* container,
    [all...]
gtk_floating_container.cc 28 GtkFloatingContainerChild* GetChild(GtkFloatingContainer* container,
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) {
126 GTK_WIDGET_SET_FLAGS(container, GTK_NO_WINDOW);
128 container->floating_children = NULL;
131 static void gtk_floating_container_remove(GtkContainer* container,
230 GtkFloatingContainer* container = GTK_FLOATING_CONTAINER(widget); local
    [all...]
gtk_expanded_container.h 12 // A specialized container derived from GtkFixed, which expands the size of its
13 // children to fill the container, in one or both directions. The usage of this
14 // container is similar to GtkFixed.
17 // widgets to customized size other than the container's size. It should have
20 // void (*child_size_request)(GtkExpandedContainer* container,
25 // the container. Your handler may adjust the value of the requisition. If the
61 void gtk_expanded_container_put(GtkExpandedContainer* container,
63 void gtk_expanded_container_move(GtkExpandedContainer* container,
65 void gtk_expanded_container_set_has_window(GtkExpandedContainer* container,
67 gboolean gtk_expanded_container_get_has_window(GtkExpandedContainer* container);
    [all...]
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_view_gtk.h 24 class Container {
26 virtual ~Container() {}
38 // Sets the container for this view.
39 void SetContainer(Container* container) { container_ = container; }
64 // This view's container.
65 Container* container_;
  /external/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/webkit/Source/WebCore/manual-tests/animation/
transitions-and-paused-animations.html 10 .container {
45 var container = document.querySelectorAll('.container')[0];
48 container.className = 'container';
52 container.className = 'container moved';
56 container.className = 'container';
66 <div class="container moved"
    [all...]
  /external/webkit/Source/WebCore/dom/
RangeBoundaryPoint.h 36 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)
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)
113 ASSERT(container);
115 ASSERT(childBefore == (offset ? container->childNode(offset - 1) : 0));
116 m_containerNode = container;
    [all...]
  /external/chromium/chrome/browser/ui/views/tab_contents/
native_tab_contents_container.h 20 // Creates an appropriate native container for the current platform.
22 TabContentsContainer* container);
24 // Attaches the new TabContents to the native container.
27 // Detaches the old TabContents from the native container.
30 // Tells the container to update less frequently during resizing operations
34 // Tells the container that the RenderViewHost for the attached TabContents
39 // Tells the container that |tab_contents| got the focus.
  /external/clang/test/Rewriter/
protocol-rewrite-1.m 19 @interface Container
32 @implementation Container
45 MyWidget *w = [Container elementForView: view];
static-type-protocol-1.m 15 @interface Container
19 @implementation Container
  /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/webkit/Source/WebCore/manual-tests/chromium/
onchange-reload-popup.html 18 var container = document.getElementById('container');
19 container.innerHTML = '<select id="menu"> \
38 <div id="container"/>
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestViewGroupMarginMixed.java 13 public View onCreateView(LayoutInflater inflater, ViewGroup container,
15 return inflater.inflate(R.layout.view_group_margin_mixed, container, false);
BiDiTestViewPadding.java 13 public View onCreateView(LayoutInflater inflater, ViewGroup container,
15 return inflater.inflate(R.layout.view_padding, container, false);

Completed in 3773 milliseconds

1 2 3 4 5 6 7 8 91011>>