Searched defs:container (Results 1 - 25 of 61) sorted by relevance

123

/external/gtest/test/
H A Dgtest-typed-test_test.h53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0, 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/freetype/src/autofit/
H A Dafpic.c55 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
[all...]
/external/freetype/src/base/
H A Dbasepic.c55 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/freetype/src/cff/
H A Dcffpic.c50 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 pointe
[all...]
/external/freetype/src/pshinter/
H A Dpshpic.c47 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/psnames/
H A Dpspic.c38 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,
[all...]
/external/freetype/src/sfnt/
H A Dsfntpic.c47 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 pointe
[all...]
/external/freetype/src/truetype/
H A Dttpic.c39 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,
[all...]
/external/freetype/src/raster/
H A Drastpic.c36 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/
H A Dftspic.c36 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/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/WebCore/platform/graphics/mac/
H A DFontCustomPlatformData.h38 FontCustomPlatformData(ATSFontContainerRef container, ATSFontRef atsFont, CGFontRef cgFont) argument
39 : m_atsContainer(container), m_atsFont(atsFont), m_cgFont(cgFont)
/external/webkit/WebCore/dom/
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...]
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...]
/external/webkit/WebCore/mathml/
H A DRenderMathMLBlock.cpp42 RenderMathMLBlock::RenderMathMLBlock(Node* container) argument
43 : RenderBlock(container)
/external/chromium/net/http/
H A Dhttp_auth_cache.cc34 // Return true if |path| is a subpath of |container|. In other words, is
35 // |container| an ancestor of |path|?
36 bool IsEnclosingPath(const std::string& container, const std::string& path) { argument
37 DCHECK(container.empty() || *(container.end() - 1) == '/');
38 return (container.empty() && path.empty()) ||
39 (!container.empty() && StartsWithASCII(path, container, true));
/external/kernel-headers/original/linux/
H A Dtransport_class.h2 * transport_class.h - a generic container for all transport classes
40 struct attribute_container container; member in struct:anon_transport_class
48 . container = { \
/external/webkit/WebCore/rendering/
H A DLayoutState.cpp56 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);
H A DRenderObjectChildList.cpp55 firstChild()->remove(); // List markers are owned by their enclosing list and so don't get destroyed by this container. Similarly, first letters are destroyed by their remaining text fragment.
239 static RenderObject* beforeAfterContainer(RenderObject* container, PseudoId type) argument
242 RenderObject* first = container;
254 RenderObject* last = container;
279 static void invalidateCountersInContainer(RenderObject* container, const AtomicString& identifier) argument
281 if (!container)
283 container = findBeforeAfterParent(container);
284 if (!container)
286 // Sometimes the counter is attached directly on the container
[all...]
/external/webkit/WebCore/svg/
H A DSVGDocumentExtensions.cpp93 SMILTimeContainer* container = element->timeContainer(); local
94 if (!container || container->isPaused())
97 container->sampleAnimationAtTime(elementId, time);
/external/webkit/WebKit/win/
H A DCOMEnumVariant.h59 COMEnumVariant(const ContainerType& container) argument
61 , m_container(container)
76 COMEnumVariant<typename ContainerType>* COMEnumVariant<ContainerType>::adopt(ContainerType& container) argument
79 instance->m_container.swap(container);
86 COMEnumVariant<typename ContainerType>* COMEnumVariant<ContainerType>::createInstance(const ContainerType& container) argument
88 COMEnumVariant* instance = new COMEnumVariant(container);
/external/chromium/base/
H A Dstack_container.h28 // be sure to reserve() in the container up to the stack buffer size. Otherwise
29 // the container will allocate a small array which will "use up" the stack
37 // Backing store for the allocator. The container owner is responsible for
122 // initial capacity of the vector is based on. Growing the container beyond the
123 // stack capacity will transparently overflow onto the heap. The container must
136 // Allocator must be constructed before the container!
138 // Make the container use the stack allocation by reserving our buffer size
143 // Getters for the actual container.
148 // copy into a "real" container for longer-lived objects.
149 ContainerType& container() { retur function in class:StackContainer
150 const ContainerType& container() const { return container_; } function in class:StackContainer
[all...]
/external/webkit/WebCore/editing/
H A DDeleteButtonController.cpp153 Node* container = range->commonAncestorContainer(ec); local
154 ASSERT(container);
159 if (!container->isContentEditable())
162 Node* element = enclosingNodeOfType(Position(container, 0), &isDeletableElement);
189 RefPtr<HTMLDivElement> container = new HTMLDivElement(divTag, m_target->document()); local
190 container->setAttribute(container->idAttributeName(), containerElementIdentifier);
192 CSSMutableStyleDeclaration* style = container->getInlineStyleDecl();
222 container->appendChild(outline.get(), ec);
249 container
[all...]
/external/bluetooth/glib/gio/
H A Dgfileenumerator.c62 GFile *container; member in struct:_GFileEnumeratorPrivate
104 enumerator->priv->container = g_value_dup_object (value);
119 if (enumerator->priv->container) {
120 g_object_unref (enumerator->priv->container);
121 enumerator->priv->container = NULL;
158 g_param_spec_object ("container", P_("Container"),
159 P_("The container that is being enumerated"),
588 * Get the #GFile container which is being enumerated.
599 return enumerator->priv->container;

Completed in 1314 milliseconds

123