Searched defs:container (Results 51 - 75 of 384) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/extensions/
H A Dapplication_launch.h34 extensions::LaunchContainer container,
38 // LAUNCH_TYPE_REGULAR to check for a user-configured container.
44 // override the user-configured container using modifier keys, falling back to
60 // The container type to launch the application in.
61 extensions::LaunchContainer container; member in struct:AppLaunchParams
63 // If container is TAB, this field controls how the tab is opened.
/external/chromium_org/crypto/
H A Dcapi_util.cc41 LPCWSTR container,
46 return CryptAcquireContext(prov, container, provider, prov_type, flags);
40 CryptAcquireContextLocked(HCRYPTPROV* prov, LPCWSTR container, LPCWSTR provider, DWORD prov_type, DWORD flags) argument
/external/chromium_org/gpu/command_buffer/common/
H A Dbitfield_helpers.h23 static unsigned int Get(unsigned int container) { argument
24 return (container >> kShift) & kMask;
33 static void Set(unsigned int *container, unsigned int field_value) { argument
34 *container = (*container & ~(kMask << kShift)) | MakeValue(field_value);
/external/chromium_org/third_party/WebKit/Source/web/
H A DFindInPageCoordinates.cpp54 const RenderBlock* container = renderer->containingBlock(); local
55 while (!container->hasOverflowClip() && !container->isRenderView())
56 container = container->containingBlock();
57 return container;
60 static FloatRect toNormalizedRect(const FloatRect& absoluteRect, const RenderObject* renderer, const RenderBlock* container) argument
64 ASSERT(container || renderer->isRenderView());
65 if (!container)
73 if (container
110 const RenderBlock* container = enclosingScrollableAncestor(renderer); local
[all...]
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dstl_util.h39 // Deletes the pointers contained in the provided container.
41 void STLDeleteElements(T* container) { argument
42 for (typename T::iterator it = container->begin(); it != container->end();
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvideo_writer.c35 VpxContainer container,
37 if (container == kContainerIVF) {
34 vpx_video_writer_open(const char *filename, VpxContainer container, const VpxVideoInfo *info) argument
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstl_util.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/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Djava_iterator.h43 explicit PODIterator(Container* container) : container_(container) {} argument
59 Container* container() { return container_; } function in class:sfntly::PODIterator
70 explicit RefIterator(Container* container) : container_(container) {} argument
86 Container* container() { return container_; } function in class:sfntly::RefIterator
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DAudioMenuFragment.java34 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
36 View v = inflater.inflate(R.layout.audiomenu, container, false);
142 // This makes sure that the container activity has implemented
H A DVideoMenuFragment.java34 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
36 View v = inflater.inflate(R.layout.videomenu, container, false);
122 // This makes sure that the container activity has implemented
/external/chromium_org/ui/views/examples/
H A Dbutton_example.cc44 void ButtonExample::CreateExampleView(View* container) { argument
45 container->set_background(Background::CreateSolidBackground(SK_ColorWHITE));
46 container->SetLayoutManager(new BoxLayout(BoxLayout::kVertical, 10, 10, 10));
50 container->AddChildView(label_button_);
56 container->AddChildView(disabled_button);
58 container->AddChildView(new BlueButton(this, ASCIIToUTF16("Blue Button")));
69 container->AddChildView(image_button_);
H A Dcombobox_example.cc38 void ComboboxExample::CreateExampleView(View* container) { argument
43 container->SetLayoutManager(new FillLayout);
44 container->AddChildView(combobox_);
H A Dexample_base.h31 View* container() { return container_; } function in class:views::examples::ExampleBase
H A Dmessage_box_example.cc24 void MessageBoxExample::CreateExampleView(View* container) { argument
30 GridLayout* layout = new GridLayout(container);
31 container->SetLayoutManager(layout);
H A Dprogress_bar_example.cc39 void ProgressBarExample::CreateExampleView(View* container) { argument
40 GridLayout* layout = new GridLayout(container);
41 container->SetLayoutManager(layout);
H A Dradio_button_example.cc25 void RadioButtonExample::CreateExampleView(View* container) { argument
38 GridLayout* layout = new GridLayout(container);
39 container->SetLayoutManager(layout);
H A Dslider_example.cc25 void SliderExample::CreateExampleView(View* container) { argument
31 container->SetLayoutManager(new BoxLayout(BoxLayout::kHorizontal, 3, 3, 3));
32 container->AddChildView(slider_);
33 container->AddChildView(label_);
H A Dthrobber_example.cc55 void ThrobberExample::CreateExampleView(View* container) { argument
56 container->SetLayoutManager(new FillLayout());
57 container->AddChildView(new ThrobberView());
/external/chromium_org/ui/wm/core/
H A Deasy_resize_window_targeter.cc15 aura::Window* container,
18 : container_(container),
14 EasyResizeWindowTargeter( aura::Window* container, const gfx::Insets& mouse_extend, const gfx::Insets& touch_extend) argument
/external/clang/test/SemaCXX/
H A DPR11358.cpp6 struct container { struct in namespace:test1
13 typedef container<T> Container;
39 struct container { struct in namespace:test3
45 typedef container<T> Container;
H A Dpragma-optimize.cpp70 float container (float par) { function
/external/libvpx/libvpx/
H A Dvideo_writer.c35 VpxContainer container,
37 if (container == kContainerIVF) {
34 vpx_video_writer_open(const char *filename, VpxContainer container, const VpxVideoInfo *info) argument
/external/oprofile/libutil++/
H A Dgrowable_vector.h33 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
102 container_type container; member in class:growable_vector
[all...]
H A Dsparse_array.h29 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
97 container_type container; member in class:sparse_array
[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...]

Completed in 277 milliseconds

1234567891011>>