Searched defs:existingView (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DUiUtils.java72 * @param existingView The {@link View} to insert the newView before.
75 public static int insertBefore(ViewGroup container, View newView, View existingView) { argument
76 return insertView(container, newView, existingView, false);
83 * @param existingView The {@link View} to insert the newView after.
86 public static int insertAfter(ViewGroup container, View newView, View existingView) { argument
87 return insertView(container, newView, existingView, true);
91 ViewGroup container, View newView, View existingView, boolean after) {
97 index = container.indexOfChild(existingView);
90 insertView( ViewGroup container, View newView, View existingView, boolean after) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DProfilesPanel.js223 var view = profile.existingView();
275 existingView: function()

Completed in 197 milliseconds