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

1 2 3 4 5 6 7 8

  /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 55 AFModulePIC* container; local
59 /* allocate pointer, clear and set global container pointer */
60 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
62 FT_MEM_SET( container, 0, sizeof ( *container ) );
63 pic_container->autofit = container;
68 container->af_script_classes[ss] = &container->af_script_classes_rec[ss];
70 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/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/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/gtest/test/
gtest-typed-test_test.h 53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0, 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());
  /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/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/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...]
ContainerNodeAlgorithms.h 34 void addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container);
41 void removeAllChildrenInContainer(GenericNodeContainer* container)
47 Private::addChildNodesToDeletionQueue<GenericNode, GenericNodeContainer>(head, tail, container);
69 void appendChildToContainer(GenericNode* child, GenericNodeContainer* container)
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)
118 for (GenericNode* n = container->firstChild(); n != 0; n = next)
    [all...]
Range.cpp 113 if (!m_start.container()) {
118 return m_start.container();
123 if (!m_start.container()) {
133 if (!m_start.container()) {
138 return m_end.container();
143 if (!m_start.container()) {
153 if (!m_start.container()) {
158 return commonAncestorContainer(m_start.container(), m_end.container());
174 if (!m_start.container()) {
    [all...]
  /external/webkit/WebCore/platform/gtk/
PlatformScreenGtk.cpp 52 GtkWidget* container = GTK_WIDGET(widget->root()->hostWindow()->platformPageClient());
54 if (!container)
57 if (!GTK_WIDGET_REALIZED(container)) {
58 GtkWidget* toplevel = gtk_widget_get_toplevel(container);
64 container = toplevel;
70 return gdk_drawable_get_visual(GDK_DRAWABLE(container->window));
100 GtkWidget* container = gtk_widget_get_toplevel(GTK_WIDGET(widget->root()->hostWindow()->platformPageClient()));
102 if (!gtk_widget_is_toplevel(container))
104 if (!GTK_WIDGET_TOPLEVEL(container))
108 GdkScreen* screen = gtk_widget_has_screen(container) ? gtk_widget_get_screen(container) : gdk_screen_get_default()
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
ObjCPlugin.h 34 - (void)removeBridgeRestrictions:(id)container;
  /external/webkit/WebCore/inspector/front-end/
ImageView.js 35 var container = document.createElement("div");
36 container.className = "image";
37 this.contentElement.appendChild(container);
43 container.appendChild(this.imagePreviewElement);
45 container = document.createElement("div");
46 container.className = "info";
47 this.contentElement.appendChild(container);
52 container.appendChild(imageNameElement);
68 container.appendChild(infoListElement);
  /frameworks/base/core/java/android/view/
Gravity.java 22 * larger container.
37 * container, based on the gravity direction being applied. */
45 /** Push object to the top of its container, not changing its size. */
47 /** Push object to the bottom of its container, not changing its size. */
49 /** Push object to the left of its container, not changing its size. */
51 /** Push object to the right of its container, not changing its size. */
54 /** Place object in the vertical center of its container, not changing its
58 * its container. */
61 /** Place object in the horizontal center of its container, not changing its
65 * its container. *
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
stl_util-inl.h 42 // 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) {
100 if (!container) return;
101 STLDeleteContainerPointers(container->begin(), container->end())
    [all...]
  /external/chromium/base/
stack_container_unittest.cc 38 EXPECT_EQ(static_cast<size_t>(stack_size), vect.container().capacity());
40 vect.container().push_back(i);
41 EXPECT_EQ(stack_buffer, &vect.container()[0]);
47 vect.container().push_back(i + stack_size);
48 EXPECT_NE(stack_buffer, &vect.container()[0]);
54 EXPECT_EQ(i, vect.container()[i]);
60 vect.container().resize(stack_size);
61 vect.container().reserve(stack_size * 2);
67 std::vector<int, StackAllocator<int, stack_size> > other(vect.container());
77 typedef Vector::ContainerType Container;
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
PlatformGraphicsContext.cpp 33 PlatformGraphicsContext::PlatformGraphicsContext(SkCanvas* canvas, WTF::Vector<Container>* buttons)
55 // Check to see if we already have a Container for this node. If so, update
58 Container* end = m_buttons->end();
59 for (Container* ptr = m_buttons->begin(); ptr != end; ptr++) {
66 // We did not have a Container representing this node, so create a new one.
67 Container container(node, r);
69 mCanvas->drawPicture(*(container.picture()));
71 m_buttons->append(container);
  /system/core/init/
list.h 26 #define node_to_item(node, container, member) \
27 (container *) (((char*) (node)) - offsetof(container, member))
  /external/webkit/WebCore/platform/graphics/mac/
FontCustomPlatformData.h 38 FontCustomPlatformData(ATSFontContainerRef container, ATSFontRef atsFont, CGFontRef cgFont)
39 : m_atsContainer(container), m_atsFont(atsFont), m_cgFont(cgFont)
  /external/webkit/WebCore/rendering/
LayoutState.cpp 56 if (RenderObject* container = renderer->container()) {
57 if (container->isRelPositioned() && container->isRenderInline())
58 m_offset += toRenderInline(container)->relativePositionedInlineOffset(renderer);
93 RenderObject* container = root->container(); local
94 FloatPoint absContentPoint = container->localToAbsolute(FloatPoint(), false, true);
  /external/stlport/stlport/stl/
_iterator.h 166 _Container *container; member in class:back_insert_iterator
171 explicit back_insert_iterator(_Container& __x) : container(&__x) {}
174 container = __other.container;
178 container->push_back(__val);
196 _Container *container; member in class:front_insert_iterator
200 explicit front_insert_iterator(_Container& __x) : container(&__x) {}
203 container = __other.container;
207 container->push_front(__val)
225 _Container *container; member in class:insert_iterator
    [all...]

Completed in 856 milliseconds

1 2 3 4 5 6 7 8