HomeSort by relevance Sort by last modified time
    Searched refs:container (Results 276 - 300 of 881) sorted by null

<<11121314151617181920>>

  /packages/apps/Gallery/src/com/android/camera/gallery/
DrmImageList.java 60 protected DrmImage(BaseImageList container, ContentResolver cr,
64 super(container, cr, id, index, uri, dataPath,
VideoObject.java 45 protected VideoObject(BaseImageList container, ContentResolver cr,
48 super(container, cr, id, index, uri, dataPath,
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
InfoDialogFragment.java 26 public View onCreateView(LayoutInflater inflater, ViewGroup container,
28 View view = inflater.inflate(R.layout.fragment_info, container);
  /external/chromium/net/http/
http_auth_cache.cc 34 // 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) {
37 DCHECK(container.empty() || *(container.end() - 1) == '/');
38 return ((container.empty() && path.empty()) ||
39 (!container.empty() && StartsWithASCII(path, container, true)));
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
TestFragmentManager.java 155 ViewGroup container = null; local
158 container = (ViewGroup) activity.findViewById(shadowFragment.getContainerViewId());
161 View view = fragment.onCreateView(activity.getLayoutInflater(), container, shadowFragment.getSavedInstanceState());
165 if (container != null) {
167 container.removeAllViews();
170 container.addView(view);
  /external/webkit/Source/WebCore/css/
mediaControlsQtFullscreen.css 50 video::-webkit-media-controls-timeline-container {
68 video::-webkit-media-controls-volume-slider-container {
69 -webkit-appearance: media-volume-slider-container;
  /frameworks/support/v13/java/android/support/v13/app/
FragmentStatePagerAdapter.java 89 public void startUpdate(ViewGroup container) {
93 public Object instantiateItem(ViewGroup container, int position) {
123 mCurTransaction.add(container.getId(), fragment);
129 public void destroyItem(ViewGroup container, int position, Object object) {
147 public void setPrimaryItem(ViewGroup container, int position, Object object) {
163 public void finishUpdate(ViewGroup container) {
  /frameworks/support/v4/java/android/support/v4/app/
FragmentStatePagerAdapter.java 85 public void startUpdate(ViewGroup container) {
89 public Object instantiateItem(ViewGroup container, int position) {
119 mCurTransaction.add(container.getId(), fragment);
125 public void destroyItem(ViewGroup container, int position, Object object) {
143 public void setPrimaryItem(ViewGroup container, int position, Object object) {
159 public void finishUpdate(ViewGroup container) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SampleSelectionPage.java 74 Composite container = new Composite(parent, SWT.NULL); local
75 container.setLayout(new GridLayout(2, false));
77 mTableViewer = new TableViewer(container, SWT.BORDER | SWT.FULL_SELECTION);
84 setControl(container);
86 Label projectLabel = new Label(container, SWT.NONE);
90 mSampleProjectName = new Text(container, SWT.BORDER);
TestTargetPage.java 73 Composite container = new Composite(parent, SWT.NULL); local
75 setControl(container);
76 container.setLayout(new GridLayout(2, false));
78 mCurrentRadioButton = new Button(container, SWT.RADIO);
83 mExistingRadioButton = new Button(container, SWT.RADIO);
90 mProjectList = new FilteredList(container,
ImportPage.java 111 Composite container = new Composite(parent, SWT.NULL); local
112 setControl(container);
113 container.setLayout(new GridLayout(3, false));
115 Label directoryLabel = new Label(container, SWT.NONE);
119 mDir = new Text(container, SWT.BORDER);
124 mBrowseButton = new Button(container, SWT.NONE);
129 Label projectsLabel = new Label(container, SWT.NONE);
133 mTable = new Table(container, SWT.CHECK);
157 mSelectAllButton = new Button(container, SWT.NONE);
162 mDeselectAllButton = new Button(container, SWT.NONE)
    [all...]
ProjectNamePage.java 118 Composite container = new Composite(parent, SWT.NULL); local
119 container.setLayout(new GridLayout(3, false));
121 Label nameLabel = new Label(container, SWT.NONE);
124 mProjectNameText = new Text(container, SWT.BORDER);
129 mCreateNewButton = new Button(container, SWT.RADIO);
136 mCreateSampleRadioButton = new Button(container, SWT.RADIO);
143 Label separator = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL);
146 mUseDefaultCheckBox = new Button(container, SWT.CHECK);
151 mLocationLabel = new Label(container, SWT.NONE);
154 mLocationText = new Text(container, SWT.BORDER)
    [all...]
ApplicationInfoPage.java 98 Composite container = new Composite(parent, SWT.NULL); local
99 container.setLayout(new GridLayout(2, false));
101 Label applicationLabel = new Label(container, SWT.NONE);
104 mApplicationText = new Text(container, SWT.BORDER);
108 Label packageLabel = new Label(container, SWT.NONE);
111 mPackageText = new Text(container, SWT.BORDER);
116 mCreateActivityCheckbox = new Button(container, SWT.CHECK);
120 mActivityText = new Text(container, SWT.BORDER);
125 Label minSdkLabel = new Label(container, SWT.NONE);
128 mSdkCombo = new Combo(container, SWT.NONE)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_iterator.h 388 * These are output iterators, constructed from a container-of-T.
389 * Assigning a T to the iterator appends it to the container using
400 _Container* container; member in class:back_insert_iterator
403 /// A nested typedef for the type of whatever container you used.
406 /// The only way to create this %iterator is with a container.
408 back_insert_iterator(_Container& __x) : container(&__x) { }
413 * reference-to-const T for container<T>.
417 * container (you can think of the position as being permanently at
419 * always append the value to the end of the container.
425 container->push_back(__value)
491 _Container* container; member in class:front_insert_iterator
585 _Container* container; member in class:insert_iterator
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_iterator.h 388 * These are output iterators, constructed from a container-of-T.
389 * Assigning a T to the iterator appends it to the container using
400 _Container* container; member in class:back_insert_iterator
403 /// A nested typedef for the type of whatever container you used.
406 /// The only way to create this %iterator is with a container.
408 back_insert_iterator(_Container& __x) : container(&__x) { }
413 * reference-to-const T for container<T>.
417 * container (you can think of the position as being permanently at
419 * always append the value to the end of the container.
425 container->push_back(__value)
491 _Container* container; member in class:front_insert_iterator
585 _Container* container; member in class:insert_iterator
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_iterator.h 388 * These are output iterators, constructed from a container-of-T.
389 * Assigning a T to the iterator appends it to the container using
400 _Container* container; member in class:back_insert_iterator
403 /// A nested typedef for the type of whatever container you used.
406 /// The only way to create this %iterator is with a container.
408 back_insert_iterator(_Container& __x) : container(&__x) { }
413 * reference-to-const T for container<T>.
417 * container (you can think of the position as being permanently at
419 * always append the value to the end of the container.
425 container->push_back(__value)
491 _Container* container; member in class:front_insert_iterator
585 _Container* container; member in class:insert_iterator
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_iterator.h 396 * These are output iterators, constructed from a container-of-T.
397 * Assigning a T to the iterator appends it to the container using
408 _Container* container; member in class:back_insert_iterator
411 /// A nested typedef for the type of whatever container you used.
414 /// The only way to create this %iterator is with a container.
416 back_insert_iterator(_Container& __x) : container(&__x) { }
421 * reference-to-const T for container<T>.
425 * container (you can think of the position as being permanently at
427 * always append the value to the end of the container.
433 container->push_back(__value)
499 _Container* container; member in class:front_insert_iterator
593 _Container* container; member in class:insert_iterator
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
Panel.js 408 var container = elements[i];
409 container._scrollTop = container.scrollTop;
417 var container = elements[i];
418 if (container._scrollTop)
419 container.scrollTop = container._scrollTop;
  /external/webkit/Source/WebCore/rendering/
RenderInline.cpp 489 void RenderInline::culledInlineAbsoluteRects(const RenderInline* container, Vector<IntRect>& rects, const IntSize& offset)
502 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
503 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
515 currInline->culledInlineAbsoluteRects(container, rects, offset);
519 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
520 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
539 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
540 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
568 void RenderInline::culledInlineAbsoluteQuads(const RenderInline* container, Vector<FloatQuad>& quads)
586 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent())
1511 RenderObject* container = containingBlock(); local
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationTest.java 52 mView = (LinearLayout) mActivity.findViewById(R.id.container);
186 ViewGroup container, View view, int transitionType) {
187 this.mContainer = container;
194 ViewGroup container, View view, int transitionType) {
195 this.mContainer = container;
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.cc 112 LocalSharedObjectsContainer& container = blocked_by_policy ?
117 container.cookies()->SetCookieWithDetails(url,
167 LocalSharedObjectsContainer& container = blocked_by_policy ? local
171 container.local_storages() : container.session_storages();
  /external/webkit/Source/WebCore/dom/
Range.h 50 Node* startContainer() const { return m_start.container(); }
52 Node* endContainer() const { return m_end.container(); }
63 void setStart(PassRefPtr<Node> container, int offset, ExceptionCode&);
64 void setEnd(PassRefPtr<Node> container, int offset, ExceptionCode&);
155 static PassRefPtr<Node> processAncestorsAndTheirSiblings(ActionType, Node* container, ContentsProcessDirection, PassRefPtr<Node> clonedContainer, Node* commonRoot, ExceptionCode&);
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test4DetailFragment.java 65 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedState) {
67 View rootView = inflater.inflate(R.layout.test4_detail_fragment, container, false);
169 public View onCreateView(LayoutInflater inflater, ViewGroup container,
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationSeeking.java 59 LinearLayout container = (LinearLayout) findViewById(R.id.container); local
61 container.addView(animView);
CustomEvaluator.java 47 LinearLayout container = (LinearLayout) findViewById(R.id.container); local
49 container.addView(animView);

Completed in 1731 milliseconds

<<11121314151617181920>>