HomeSort by relevance Sort by last modified time
    Searched full:container (Results 351 - 375 of 5699) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaCXX/
using-decl-templates.cpp 72 typedef long Container;
78 using Base<T>::Container;
80 void foo(const Container& current); // expected-error {{unknown type name 'Container'}}
  /external/droiddriver/src/io/appium/droiddriver/scroll/
StaticSentinelStrategy.java 35 * container.
53 UiElement container = sentinel.getParent(); local
56 Rect visibleBounds = container.getVisibleBounds();
61 doScroll(container, direction);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestContainerGenerator.java 29 * 'container' is used.
36 * Returns the sample elements that this generate populates its container
42 * Creates a new container containing the given elements. TODO: would be nice
56 * which they were added to the container. This method may return the
  /external/libchrome/base/containers/
stack_container.h 35 // be sure to reserve() in the container up to the stack buffer size. Otherwise
36 // the container will allocate a small array which will "use up" the stack
44 // Backing store for the allocator. The container owner is responsible for
132 // initial capacity of the vector is based on. Growing the container beyond the
133 // stack capacity will transparently overflow onto the heap. The container must
146 // Allocator must be constructed before the container!
148 // Make the container use the stack allocation by reserving our buffer size
153 // Getters for the actual container.
158 // copy into a "real" container for longer-lived objects.
159 ContainerType& container() { return container_; function in class:base::StackContainer
160 const ContainerType& container() const { return container_; } function in class:base::StackContainer
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
package.html 10 SIPTransactionStack is the container that holds references to these protocol objects.
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/
MDNSUtils.java 90 * @param container The string that contains the string
95 private static boolean containsString(@NonNull String container, @NonNull String contained) {
96 return container.equalsIgnoreCase(contained) || container.contains(contained + " ");
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationMessagingTemplateViewWrapper.java 42 View container = mView.findViewById(com.android.internal.R.id.notification_messaging); local
43 if (container instanceof MessagingLinearLayout
44 && ((MessagingLinearLayout) container).getChildCount() > 0) {
45 MessagingLinearLayout messagingContainer = (MessagingLinearLayout) container;
  /frameworks/base/tests/TransitionTests/res/layout/
clipping_text_1.xml 5 android:id="@+id/container"
fading_test_simple.xml 5 android:id="@+id/container"
overlay_test.xml 5 android:id="@+id/container"
reparenting.xml 6 android:id="@+id/container">
two_buttons.xml 6 android:id="@+id/container">
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
Demo2.java 41 View container = (View) findViewById(R.id.container); local
42 mSceneRoot = (ViewGroup) container.getParent();
63 addTransition(new Recolor().addTarget(R.id.container));
Reparenting.java 37 ViewGroup container = (ViewGroup) findViewById(R.id.container); local
40 System.out.println("container 1 and 2 " + mContainer1 + ", " + mContainer2);
45 mSceneRoot = container;
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/res/layout/
fragment_test.xml 8 android:id="@+id/container"
  /frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
BaseFragmentPagerAdapter.java 67 public void startUpdate(View container) {
71 public Object instantiateItem(View container, int position) {
77 String name = makeFragmentName(container.getId(), position);
93 mCurTransaction.add(container.getId(), fragment,
94 makeFragmentName(container.getId(), position));
104 public void destroyItem(View container, int position, Object object) {
117 name = makeFragmentName(container.getId(), position);
125 public void setPrimaryItem(View container, int position, Object object) {
140 public void finishUpdate(View container) {
  /frameworks/support/v13/java/android/support/v13/app/
FragmentPagerAdapter.java 83 public void startUpdate(ViewGroup container) {
84 if (container.getId() == View.NO_ID) {
91 public Object instantiateItem(ViewGroup container, int position) {
99 String name = makeFragmentName(container.getId(), itemId);
107 mCurTransaction.add(container.getId(), fragment,
108 makeFragmentName(container.getId(), itemId));
119 public void destroyItem(ViewGroup container, int position, Object object) {
129 public void setPrimaryItem(ViewGroup container, int position, Object object) {
145 public void finishUpdate(ViewGroup container) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ViewsStateBundle.java 157 SparseArray<Parcelable> container = mChildStates.remove(key); local
158 if (container != null) {
159 view.restoreHierarchyState(container);
173 SparseArray<Parcelable> container = new SparseArray<Parcelable>(); local
174 view.saveHierarchyState(container);
175 mChildStates.put(key, container);
190 SparseArray<Parcelable> container = new SparseArray<Parcelable>(); local
191 view.saveHierarchyState(container);
195 bundle.putSparseParcelableArray(key, container);
  /frameworks/support/v4/java/android/support/v4/app/
FragmentPagerAdapter.java 79 public void startUpdate(ViewGroup container) {
80 if (container.getId() == View.NO_ID) {
87 public Object instantiateItem(ViewGroup container, int position) {
95 String name = makeFragmentName(container.getId(), itemId);
103 mCurTransaction.add(container.getId(), fragment,
104 makeFragmentName(container.getId(), itemId));
115 public void destroyItem(ViewGroup container, int position, Object object) {
125 public void setPrimaryItem(ViewGroup container, int position, Object object) {
141 public void finishUpdate(ViewGroup container) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
BasicSlider.java 36 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
37 container.removeAllViews();
39 Context context = container.getContext();
44 R.layout.filtershow_seekbar, container, true);
SliderHue.java 48 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
49 container.removeAllViews();
51 Context context = container.getContext();
56 R.layout.filtershow_hue, container, true);
SliderOpacity.java 38 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
39 container.removeAllViews();
41 Context context = container.getContext();
46 R.layout.filtershow_opacity, container, true);
SliderSaturation.java 39 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
40 container.removeAllViews();
42 Context context = container.getContext();
47 R.layout.filtershow_saturation, container, true);
StyleChooser.java 31 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
32 container.removeAllViews();
34 Context context = container.getContext();
38 mTopView = inflater.inflate(mLayoutID, container, true);
TitledSlider.java 42 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
43 container.removeAllViews();
45 Context context = container.getContext();
49 mTopView = inflater.inflate(mLayoutID, container, true);

Completed in 1823 milliseconds

<<11121314151617181920>>