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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
jquery.isonscreen.js 10 isOnScreen: function(box, container) {
13 for(var i in container){container[i] = parseFloat(container[i])};
15 if(!container){
16 container = {
24 if( box.left+box.width-container.left > 0 &&
25 box.left < container.width+container.left &&
26 box.top+box.height-container.top > 0 &
    [all...]
  /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/chromium_org/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/
popup.css 7 #container {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/
popup.css 7 #container {
  /external/chromium_org/ui/base/animation/
animation_container_observer.h 15 // the container.
18 // Invoked on every tick of the timer managed by the container and after
21 AnimationContainer* container) = 0;
23 // Invoked when no more animations are being managed by this container.
24 virtual void AnimationContainerEmpty(AnimationContainer* container) = 0;
animation_container_unittest.cc 50 // Makes sure the animation ups the ref count of the container and releases it
54 scoped_refptr<AnimationContainer> container(new AnimationContainer());
56 animation->SetContainer(container.get());
57 // Setting the container should up the ref count.
58 EXPECT_FALSE(container->HasOneRef());
63 EXPECT_TRUE(container->HasOneRef());
71 scoped_refptr<AnimationContainer> container(new AnimationContainer());
74 animation1.SetContainer(container.get());
75 animation2.SetContainer(container.get());
79 EXPECT_TRUE(container->is_running())
    [all...]
  /external/chromium_org/third_party/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/chromium_org/third_party/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 64 AFModulePIC* container = (AFModulePIC*)pic_container->autofit; local
67 if ( container->af_services )
69 container->af_services );
70 container->af_services = NULL;
72 FT_FREE( container );
84 AFModulePIC* container = NULL; local
88 /* allocate pointer, clear and set global container pointer */
89 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
91 FT_MEM_SET( container, 0, sizeof ( *container ) )
    [all...]
  /external/freetype/src/sfnt/
sfntpic.c 75 sfntModulePIC* container = (sfntModulePIC*)pic_container->sfnt; local
78 if ( container->sfnt_services )
80 container->sfnt_services );
81 container->sfnt_services = NULL;
83 if ( container->tt_cmap_classes )
85 container->tt_cmap_classes );
86 container->tt_cmap_classes = NULL;
88 FT_FREE( container );
99 sfntModulePIC* container = NULL; local
103 /* allocate pointer, clear and set global container pointer *
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/previewarea/
margin_control_container.css 5 .margin-control-container-dragging-vertical {
9 .margin-control-container-dragging-horizontal {
  /external/chromium_org/gpu/command_buffer/common/
bitfield_helpers.h 23 static unsigned int Get(unsigned int container) {
24 return (container >> kShift) & kMask;
33 static void Set(unsigned int *container, unsigned int field_value) {
34 *container = (*container & ~(kMask << kShift)) | MakeValue(field_value);
  /external/chromium_org/third_party/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/chromium_org/third_party/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/truetype/
ttpic.c 52 TTModulePIC* container = (TTModulePIC*)pic_container->truetype; local
55 if ( container->tt_services )
56 FT_Destroy_Class_tt_services( library, container->tt_services );
57 container->tt_services = NULL;
58 FT_FREE( container );
69 TTModulePIC* container = NULL; local
73 /* allocate pointer, clear and set global container pointer */
74 if ( FT_ALLOC( container, sizeof ( *container ) ) )
76 FT_MEM_SET( container, 0, sizeof ( *container ) )
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
FindInPageCoordinates.cpp 57 const RenderBlock* container = renderer->containingBlock(); local
58 while (!container->hasOverflowClip() && !container->isRenderView())
59 container = container->containingBlock();
60 return container;
63 static FloatRect toNormalizedRect(const FloatRect& absoluteRect, const RenderObject* renderer, const RenderBlock* container)
67 ASSERT(container || renderer->isRenderView());
68 if (!container)
76 if (container->hasOverflowClip()
113 const RenderBlock* container = enclosingScrollableAncestor(renderer); local
    [all...]
  /external/chromium_org/third_party/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/psnames/
pspic.c 50 PSModulePIC* container = (PSModulePIC*)pic_container->psnames; local
53 if ( container->pscmaps_services )
55 container->pscmaps_services );
56 container->pscmaps_services = NULL;
57 FT_FREE( container );
68 PSModulePIC* container = NULL; local
72 /* allocate pointer, clear and set global container pointer */
73 if ( FT_ALLOC( container, sizeof ( *container ) ) )
75 FT_MEM_SET( container, 0, sizeof ( *container ) )
    [all...]
  /external/freetype/src/cff/
cffpic.c 70 CffModulePIC* container = (CffModulePIC*)pic_container->cff; local
73 if ( container->cff_services )
75 container->cff_services );
76 container->cff_services = NULL;
77 if ( container->cff_field_handlers )
79 library, container->cff_field_handlers );
80 container->cff_field_handlers = NULL;
81 FT_FREE( container );
92 CffModulePIC* container = NULL; local
96 /* allocate pointer, clear and set global container pointer *
    [all...]
  /external/chromium_org/third_party/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_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
dxbc_dump.cpp 32 std::ostream& operator <<(std::ostream& out, const dxbc_container& container)
34 for(unsigned i = 0; i < container.chunks.size(); ++i)
36 struct dxbc_chunk_header* chunk = container.chunks[i];
40 out << "# DXBC chunk " << std::setw(2) << i << ": " << fourcc_str << " offset " << ((char*)chunk - (char*)container.data) << " size " << bswap_le32(chunk->size) << "\n";
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
dxbc_dump.cpp 32 std::ostream& operator <<(std::ostream& out, const dxbc_container& container)
34 for(unsigned i = 0; i < container.chunks.size(); ++i)
36 struct dxbc_chunk_header* chunk = container.chunks[i];
40 out << "# DXBC chunk " << std::setw(2) << i << ": " << fourcc_str << " offset " << ((char*)chunk - (char*)container.data) << " size " << bswap_le32(chunk->size) << "\n";
  /external/chromium/testing/gtest/test/
gtest-typed-test_test.h 53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0U, container.size());
  /external/chromium_org/testing/gtest/test/
gtest-typed-test_test.h 53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0U, container.size());

Completed in 1910 milliseconds

1 2 3 4 5 6 7 8 91011>>