Searched refs:newView (Results 1 – 3 of 3) sorted by relevance
/external/opencensus-java/api/src/main/java/io/opencensus/stats/ |
D | NoopStats.java | 158 public void registerView(View newView) { in registerView() argument 159 Utils.checkNotNull(newView, "newView"); in registerView() 162 View existing = registeredViews.get(newView.getName()); in registerView() 164 existing == null || newView.equals(existing), in registerView() 167 registeredViews.put(newView.getName(), newView); in registerView() local
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableSortedMap.java | 73 return newView(unmodifiableSortedMap(delegate), comparator); in create() 152 return newView(unmodifiableSortedMap(delegate), comparator); in copyOfInternal() 213 return newView(unmodifiableSortedMap(delegate), comparator); in build() 259 return newView(sortedDelegate.headMap(toKey)); in headMap() 278 return newView(sortedDelegate.subMap(fromKey, toKey)); in subMap() 290 return newView(sortedDelegate.tailMap(fromKey)); in tailMap() 304 private ImmutableSortedMap<K, V> newView(SortedMap<K, V> delegate) { in newView() method in ImmutableSortedMap 305 return newView(delegate, comparator); in newView() 308 private static <K, V> ImmutableSortedMap<K, V> newView( in newView() method in ImmutableSortedMap
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowCursorAdapterTest.java | 100 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in ShadowCursorAdapterTest.TestAdapter 110 @Override public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in ShadowCursorAdapterTest.TestAdapterWithFlags
|