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

1 2 3 4 5 6 78 91011>>

  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
stl_util.h 42 // 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) {
100 if (!container) return;
101 STLDeleteContainerPointers(container->begin(), container->end())
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PagerAdapter.java 91 * @param container The containing View which is displaying this adapter's
94 public void startUpdate(ViewGroup container) {
95 startUpdate((View) container);
100 * for adding the view to the container given here, although it only
104 * @param container The containing View in which the page will be shown.
107 * need to be a View, but can be some other container of the page.
109 public Object instantiateItem(ViewGroup container, int position) {
110 return instantiateItem((View) container, position);
115 * for removing the view from its container, although it only must ensure
118 * @param container The containing View from which the page will be removed
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
PagerAdapter.java 92 * @param container The containing View which is displaying this adapter's
95 public void startUpdate(ViewGroup container) {
96 startUpdate((View) container);
101 * for adding the view to the container given here, although it only
105 * @param container The containing View in which the page will be shown.
108 * need to be a View, but can be some other container of the page.
110 public Object instantiateItem(ViewGroup container, int position) {
111 return instantiateItem((View) container, position);
116 * for removing the view from its container, although it only must ensure
119 * @param container The containing View from which the page will be removed
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/tracks/
container_to_track_map.html 26 addContainer: function(container, track) {
29 this.stableIdToTrackMap_[container.stableId] = track;
  /external/freetype/include/internal/
ftpic.h 53 /* stored in the container. */
58 /* Destroy the contents of the container. */
  /external/libxml2/result/
dav2 4 <S:href>http://www.foo.bar/container/</S:href>
16 <S:href>http://www.foo.bar/container/index.html</S:href>
dav3 4 <D:href>http://www.foo.bar/container/</D:href>
12 <D:href>http://www.foo.bar/container/index.html</D:href>
  /external/libxml2/result/noent/
dav2 4 <S:href>http://www.foo.bar/container/</S:href>
16 <S:href>http://www.foo.bar/container/index.html</S:href>
dav3 4 <D:href>http://www.foo.bar/container/</D:href>
12 <D:href>http://www.foo.bar/container/index.html</D:href>
  /external/libxml2/test/
dav2 4 <S:href>http://www.foo.bar/container/</S:href>
16 <S:href>http://www.foo.bar/container/index.html</S:href>
dav3 4 <D:href>http://www.foo.bar/container/</D:href>
12 <D:href>http://www.foo.bar/container/index.html</D:href>
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
CsvReader.h 27 * @param list_vertex - The container of the vertices list of the mesh
28 * @param list_triangle - The container of the triangles list of the mesh
  /external/pdfium/third_party/freetype/include/freetype/internal/
ftpic.h 53 /* stored in the container. */
58 /* Destroy the contents of the container. */
  /frameworks/base/core/java/android/app/
IActivityContainerCallback.aidl 23 oneway void setVisible(IBinder container, boolean visible);
24 oneway void onAllActivitiesComplete(IBinder container);
  /frameworks/base/docs/html/design/patterns/
index.jd 6 #landing-graphic-container {
18 <div id="landing-graphic-container">
  /frameworks/base/docs/html/design/style/
index.jd 7 #landing-graphic-container {
19 <div id="landing-graphic-container">
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestFrameLayoutLocale.java 28 public View onCreateView(LayoutInflater inflater, ViewGroup container,
30 return inflater.inflate(R.layout.frame_layout_locale, container, false);
BiDiTestFrameLayoutLtr.java 28 public View onCreateView(LayoutInflater inflater, ViewGroup container,
30 return inflater.inflate(R.layout.frame_layout_ltr, container, false);
BiDiTestFrameLayoutRtl.java 28 public View onCreateView(LayoutInflater inflater, ViewGroup container,
30 return inflater.inflate(R.layout.frame_layout_rtl, container, false);
BiDiTestGridLayoutLocale.java 28 public View onCreateView(LayoutInflater inflater, ViewGroup container,
30 return inflater.inflate(R.layout.grid_layout_locale, container, false);
BiDiTestGridLayoutLtr.java 28 public View onCreateView(LayoutInflater inflater, ViewGroup container,
30 return inflater.inflate(R.layout.grid_layout_ltr, container, false);
BiDiTestGridLayoutRtl.java 28 public View onCreateView(LayoutInflater inflater, ViewGroup container,
30 return inflater.inflate(R.layout.grid_layout_rtl, container, false);
BiDiTestLinearLayoutLocale.java 28 public View onCreateView(LayoutInflater inflater, ViewGroup container,
30 return inflater.inflate(R.layout.linear_layout_locale, container, false);
BiDiTestLinearLayoutLtr.java 28 public View onCreateView(LayoutInflater inflater, ViewGroup container,
30 return inflater.inflate(R.layout.linear_layout_ltr, container, false);
BiDiTestLinearLayoutRtl.java 28 public View onCreateView(LayoutInflater inflater, ViewGroup container,
30 return inflater.inflate(R.layout.linear_layout_rtl, container, false);

Completed in 1429 milliseconds

1 2 3 4 5 6 78 91011>>