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

<<21222324252627282930>>

  /external/owasp/sanitizer/tools/findbugs/src/xsl/
fancy-hist.xsl 266 var container = document.getElementById(messageContainerId);
267 container.innerHTML = "<div class='message'>"+msg+"</div>";
272 var container = document.getElementById(messageContainerId);
273 container.innerHTML = "";
277 var container = menuId+"Container";
278 document.getElementById(container).style.display="none";
305 var container = document.getElementById(summaryContainerId);
306 container.style.display="block";
314 var container = document.getElementById(infoContainerId);
    [all...]
  /external/libbrillo/brillo/streams/
memory_stream.h 31 // no data copying is performed and the underlying container can
42 // container such as std::vector or std::string which must
44 // The data already stored in the container is maintained,
50 // container.
63 std::unique_ptr<data_container::ReadOnlyVectorCopy<T>> container{
65 return CreateEx(std::move(container), 0, error);
81 std::unique_ptr<data_container::ReadOnlyVectorRef<T>> container{
83 return CreateEx(std::move(container), 0, error);
109 std::unique_ptr<data_container::VectorPtr<T>> container{
111 return CreateEx(std::move(container), 0, error)
    [all...]
  /external/deqp/modules/glshared/
glsLifetimeTests.cpp 904 GLuint getAttachment (Attacher& attacher, GLuint container)
906 const GLuint queriedAttachment = attacher.getAttachment(container);
910 << container << ": " << queriedAttachment << "."
919 Name container (containerType);
927 m_attacher.attach(*element, *container);
928 errors.check(getAttachment(m_attacher, *container) == elementId,
932 // "Such a container or other context may continue using the object, and
935 // We here interpret "may" to mean that whenever the container has a
938 errors.check(getAttachment(m_attacher, *container) == elementId,
948 m_attacher.detach(elementId, *container);
    [all...]
  /external/libcxx/include/
queue 20 template <class T, class Container = deque<T>>
24 typedef Container container_type;
72 template <class T, class Container>
73 bool operator==(const queue<T, Container>& x,const queue<T, Container>& y);
75 template <class T, class Container>
76 bool operator< (const queue<T, Container>& x,const queue<T, Container>& y);
78 template <class T, class Container>
79 bool operator!=(const queue<T, Container>& x,const queue<T, Container>& y)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
queue 20 template <class T, class Container = deque<T>>
24 typedef Container container_type;
72 template <class T, class Container>
73 bool operator==(const queue<T, Container>& x,const queue<T, Container>& y);
75 template <class T, class Container>
76 bool operator< (const queue<T, Container>& x,const queue<T, Container>& y);
78 template <class T, class Container>
79 bool operator!=(const queue<T, Container>& x,const queue<T, Container>& y)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
queue 20 template <class T, class Container = deque<T>>
24 typedef Container container_type;
72 template <class T, class Container>
73 bool operator==(const queue<T, Container>& x,const queue<T, Container>& y);
75 template <class T, class Container>
76 bool operator< (const queue<T, Container>& x,const queue<T, Container>& y);
78 template <class T, class Container>
79 bool operator!=(const queue<T, Container>& x,const queue<T, Container>& y)
    [all...]
  /external/dbus/dbus/
dbus-marshal-recursive-util.c 1027 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
1681 TestTypeNode *container; local
1871 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
1914 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
2874 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
2929 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
2997 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
3045 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
3124 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
3211 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
3239 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
3285 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
3337 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
3433 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
3530 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
3558 TestTypeNodeContainer *container = (TestTypeNodeContainer*) node; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/component/
Container.java 29 /** Container.
46 public class Container
48 private static final Logger LOG = Log.getLogger(Container.class);
49 private final CopyOnWriteArrayList<Container.Listener> _listeners=new CopyOnWriteArrayList<Container.Listener>();
51 public void addEventListener(Container.Listener listener)
56 public void removeEventListener(Container.Listener listener)
206 LOG.debug("Container "+parent+" + "+child+" as "+relationship);
224 LOG.debug("Container "+parent+" - "+child+" as "+relationship);
234 /** A Container event
    [all...]
  /system/tools/aidl/
type_namespace.h 102 // Add a container type to this namespace. Returns false only
103 // on error. Silently discards requests to add non-container types.
149 // Find a type by its |name|. If |name| refers to a container type (e.g.
165 // We dynamically create container types as we discover them in the parse
175 // Returns true iff the name can be canonicalized to a container type.
181 // Returns true if this is a container type, rather than a normal type.
238 // Here, we know that we have the canonical name for this container.
339 std::string container = Trim(name.substr(0, opening_brace)); local
346 // container).
362 // Map the container name to its canonical form for supported containers
    [all...]
  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/Application/src/main/java/com/example/android/actionbarcompat/shareactionprovider/
MainActivity.java 111 public void destroyItem(ViewGroup container, int position, Object object) {
113 container.removeView((View) object);
117 public Object instantiateItem(ViewGroup container, int position) {
131 .inflate(R.layout.item_text, container, false);
137 container.addView(tv);
143 .inflate(R.layout.item_image, container, false);
149 container.addView(iv);
  /developers/build/prebuilts/gradle/SlidingTabsBasic/Application/src/main/java/com/example/android/slidingtabsbasic/
SlidingTabsBasicFragment.java 56 public View onCreateView(LayoutInflater inflater, ViewGroup container,
58 return inflater.inflate(R.layout.fragment_sample, container, false);
132 public Object instantiateItem(ViewGroup container, int position) {
135 container, false);
137 container.addView(view);
154 public void destroyItem(ViewGroup container, int position, Object object) {
155 container.removeView((View) object);
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ShareActionProvider/Application/src/main/java/com/example/android/actionbarcompat/shareactionprovider/
MainActivity.java 111 public void destroyItem(ViewGroup container, int position, Object object) {
113 container.removeView((View) object);
117 public Object instantiateItem(ViewGroup container, int position) {
131 .inflate(R.layout.item_text, container, false);
137 container.addView(tv);
143 .inflate(R.layout.item_image, container, false);
149 container.addView(iv);
  /developers/samples/android/ui/views/SlidingTabs/SlidingTabsBasic/Application/src/main/java/com/example/android/slidingtabsbasic/
SlidingTabsBasicFragment.java 56 public View onCreateView(LayoutInflater inflater, ViewGroup container,
58 return inflater.inflate(R.layout.fragment_sample, container, false);
132 public Object instantiateItem(ViewGroup container, int position) {
135 container, false);
137 container.addView(view);
154 public void destroyItem(ViewGroup container, int position, Object object) {
155 container.removeView((View) object);
  /development/samples/browseable/ActionBarCompat-ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/
MainActivity.java 111 public void destroyItem(ViewGroup container, int position, Object object) {
113 container.removeView((View) object);
117 public Object instantiateItem(ViewGroup container, int position) {
131 .inflate(R.layout.item_text, container, false);
137 container.addView(tv);
143 .inflate(R.layout.item_image, container, false);
149 container.addView(iv);
  /development/samples/browseable/SlidingTabsBasic/src/com.example.android.slidingtabsbasic/
SlidingTabsBasicFragment.java 56 public View onCreateView(LayoutInflater inflater, ViewGroup container,
58 return inflater.inflate(R.layout.fragment_sample, container, false);
132 public Object instantiateItem(ViewGroup container, int position) {
135 container, false);
137 container.addView(view);
154 public void destroyItem(ViewGroup container, int position, Object object) {
155 container.removeView((View) object);
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
CardFlipActivity.java 64 .add(R.id.container, new CardFrontFragment())
133 // Replace any fragments currently in the container view with a fragment
136 .replace(R.id.container, new CardBackFragment())
172 public View onCreateView(LayoutInflater inflater, ViewGroup container,
174 return inflater.inflate(R.layout.fragment_card_front, container, false);
186 public View onCreateView(LayoutInflater inflater, ViewGroup container,
188 return inflater.inflate(R.layout.fragment_card_back, container, false);
  /external/libchrome/base/containers/
scoped_ptr_hash_map.h 26 typedef base::hash_map<Key, typename ScopedPtr::element_type*> Container;
29 typedef typename Container::key_type key_type;
30 typedef typename Container::mapped_type mapped_type;
31 typedef typename Container::value_type value_type;
32 typedef typename Container::iterator iterator;
33 typedef typename Container::const_iterator const_iterator;
167 Container data_;
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
VectorDrawablePerformance.java 113 GridLayout container = new GridLayout(this); local
114 scrollView.addView(container);
115 container.setColumnCount(4);
117 container.setBackgroundColor(0xFF888888);
127 container.addView(t);
133 container.addView(button);
139 container.addView(t);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
MainPanel.java 90 public View onCreateView(LayoutInflater inflater, ViewGroup container,
263 View container = mMainView.findViewById(R.id.state_panel_container); local
265 if (container == null) {
267 container = activity.getMainStatePanelContainer(R.id.state_panel_container);
271 if (container == null) {
278 container.setVisibility(View.VISIBLE);
285 container.setVisibility(View.GONE);
  /packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java 121 private static ViewGroup getAppsCustomizePage(ViewGroup container, int index) {
122 ViewGroup page = (ViewGroup) ((PagedView) container).getPageAt(index);
137 final PagedView container = (PagedView) parent.getParent(); local
138 final TabHost tabHost = findTabHostParent(container);
142 final int pageIndex = ((PagedView) container).indexToPage(container.indexOfChild(parent));
143 final int pageCount = container.getChildCount();
164 newParent = getAppsCustomizePage(container, pageIndex - 1);
181 newParent = getAppsCustomizePage(container, pageIndex + 1);
219 View.OnClickListener clickListener = (View.OnClickListener) container;
297 final PagedView container = (PagedView) parentLayout.getParent(); local
    [all...]
  /external/deqp/doc/testspecs/GLES2/
functional.lifetime.txt 39 + Tests for deleting an object that is attached to a container
41 - Reading from the container
42 - Writing to the container
92 The "attach.*" family of test cases create a container object (a
96 In the "attach.deleted_name.*" test cases, the container is queried for
101 remains referenced by the container.
103 In the "attach.deleted_input.*" test cases, the container is read from
107 results differ, the new object erroneously affected the container's
110 In the "attach.deleted_output.*" test cases, the container is written to
  /frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
SetupWizardLayoutTest.java 171 SparseArray<Parcelable> container = new SparseArray<>(); local
172 layout.saveHierarchyState(container);
177 layout2.restoreHierarchyState(container);
190 SparseArray<Parcelable> container = new SparseArray<>(); local
191 layout.saveHierarchyState(container);
196 layout2.restoreHierarchyState(container);
207 SparseArray<Parcelable> container = new SparseArray<>(); local
208 container.put(1234, AbsSavedState.EMPTY_STATE);
209 layout.restoreHierarchyState(container);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherSettings.java 152 * The container holding the favorite
155 public static final String CONTAINER = "container";
163 static final String containerToString(int container) {
164 switch (container) {
167 default: return String.valueOf(container);
172 * The screen holding the favorite (if container is CONTAINER_DESKTOP)
179 * (if container is CONTAINER_HOTSEAT or CONTAINER_HOTSEAT)
186 * (if container is CONTAINER_DESKTOP)
  /packages/experimental/NotificationListenerSample/src/com/android/example/notificationlistener/
NotificationListenerActivity.java 226 FrameLayout container = (FrameLayout) view.findViewById(R.id.remote_view); local
230 if (container.getTag() instanceof StatusBarNotification &&
231 container.getChildCount() > 0) {
233 StatusBarNotification old = (StatusBarNotification) container.getTag();
238 View content = container.getChildAt(0);
239 container.removeView(content);
249 container.setTag(sbn);
250 container.removeAllViews();
251 container.addView(child);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
BrowseErrorActivity.java 77 public View onCreateView(LayoutInflater inflater, ViewGroup container,
79 ProgressBar progressBar = new ProgressBar(container.getContext());
80 if (container instanceof FrameLayout) {

Completed in 1392 milliseconds

<<21222324252627282930>>