HomeSort by relevance Sort by last modified time
    Searched refs:container (Results 1 - 25 of 1602) 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/gfx/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 29 AnimationContainer* container) OVERRIDE {
33 // Invoked when no more animations are being managed by this container.
34 virtual void AnimationContainerEmpty(AnimationContainer* container) OVERRIDE {
64 // Makes sure the animation ups the ref count of the container and releases it
68 scoped_refptr<AnimationContainer> container(new AnimationContainer());
70 animation->SetContainer(container.get());
71 // Setting the container should up the ref count.
72 EXPECT_FALSE(container->HasOneRef());
77 EXPECT_TRUE(container->HasOneRef());
85 scoped_refptr<AnimationContainer> container(new AnimationContainer())
    [all...]
  /external/chromium_org/third_party/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/chromium_org/third_party/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/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/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/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 56 const RenderBlock* container = renderer->containingBlock(); local
57 while (!container->hasOverflowClip() && !container->isRenderView())
58 container = container->containingBlock();
59 return container;
62 static FloatRect toNormalizedRect(const FloatRect& absoluteRect, const RenderObject* renderer, const RenderBlock* container)
66 ASSERT(container || renderer->isRenderView());
67 if (!container)
75 if (container->hasOverflowClip()
112 const RenderBlock* container = enclosingScrollableAncestor(renderer); local
    [all...]
  /external/chromium_org/third_party/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/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/chromium_org/third_party/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/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/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_org/chrome/browser/chromeos/policy/
device_policy_decoder_chromeos.cc 63 const em::GuestModeEnabledProto& container(policy.guest_mode_enabled());
64 if (container.has_guest_mode_enabled()) {
68 Value::CreateBooleanValue(container.guest_mode_enabled()),
74 const em::ShowUserNamesOnSigninProto& container(policy.show_user_names());
75 if (container.has_show_user_names()) {
79 Value::CreateBooleanValue(container.show_user_names()),
85 const em::AllowNewUsersProto& container(policy.allow_new_users());
86 if (container.has_allow_new_users()) {
90 Value::CreateBooleanValue(container.allow_new_users()),
96 const em::UserWhitelistProto& container(policy.user_whitelist())
196 const em::SupervisedUsersSettingsProto& container = local
    [all...]
  /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 803 milliseconds

1 2 3 4 5 6 7 8 91011>>