HomeSort by relevance Sort by last modified time
    Searched full:container (Results 1 - 25 of 2696) 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/clang/test/SemaCXX/
PR11358.cpp 6 struct container { struct in namespace:test1
13 typedef container<T> Container;
15 Container::iterator i = c.begin(); // expected-error{{missing 'typename'}}
17 Container c;
39 struct container { struct in namespace:test3
45 typedef container<T> Container;
47 Container::iterator const i; // expected-error{{missing 'typename'}}
49 Container c
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
nested-layout-crash.html 8 <textarea rows="5" id="container">
19 var container = document.getElementById("container");
20 container.focus();
21 container.scrollTop = 200;
24 container.rows = "20";
split-inline-wrong-post-block-crash.html 8 var container = document.createElement('div');
9 container.style['-webkit-column-count'] = 1;
10 document.body.appendChild(container);
13 container.appendChild(test1);
15 container.appendChild(test2);
19 container.appendChild(test3);
20 container.appendChild(document.createElement('div'));
  /external/freetype/src/cff/
cffpic.c 84 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 pointer *
    [all...]
  /external/freetype/src/sfnt/
sfntpic.c 80 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 pointer *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
sample1a-expected-assistant2.txt 2 Wrap in Container : Initiates the "Wrap in Container" refactoring
3 Remove Container : Initiates the "Remove Container" refactoring
sample1a-expected-assistant3.txt 2 Wrap in Container : Initiates the "Wrap in Container" refactoring
3 Remove Container : Initiates the "Remove Container" refactoring
  /external/freetype/src/truetype/
ttpic.c 53 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, 0, sizeof ( *container ) )
    [all...]
  /external/freetype/src/psnames/
pspic.c 48 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, 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 40 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/
ftspic.c 40 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/autofit/
afpic.c 62 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->af_script_classes[AF_SCRIPT_CLASSES_COUNT - 1] = NULL
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container.cc 21 GtkWidget* container; member in struct:__anon3625::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 52 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 );
  /packages/apps/Browser/src/com/android/browser/util/
ThreadedCursorAdapter.java 110 LoadContainer container = (LoadContainer) msg.obj;
111 if (container == null) {
114 View view = container.view.get();
116 || container.owner != ThreadedCursorAdapter.this
117 || container.position != msg.what
119 || container.generation != mGeneration) {
122 container.loaded = true;
123 bindView(view, container.bind_object);
145 private void loadRowObject(int position, LoadContainer container) {
146 if (container == nul
168 LoadContainer container = (LoadContainer) convertView.getTag(R.id.load_object); local
    [all...]
  /external/freetype/src/base/
basepic.c 61 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->ft_raccess_guess_table)
    [all...]
  /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.

Completed in 486 milliseconds

1 2 3 4 5 6 7 8 91011>>