Home
last modified time | relevance | path

Searched refs:newView (Results 1 – 6 of 6) sorted by relevance

/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DNoopStats.java158 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/
DImmutableSortedMap.java181 return newView(unmodifiableSortedMap(delegate), comparator); in copyOfInternal()
265 return newView(unmodifiableSortedMap(delegate), comparator); in build()
313 return newView(sortedDelegate.headMap(toKey)); in headMap()
332 return newView(sortedDelegate.subMap(fromKey, toKey)); in subMap()
344 return newView(sortedDelegate.tailMap(fromKey)); in tailMap()
358 private ImmutableSortedMap<K, V> newView(SortedMap<K, V> delegate) { in newView() method in ImmutableSortedMap
359 return newView(delegate, comparator); in newView()
362 private static <K, V> ImmutableSortedMap<K, V> newView( in newView() method in ImmutableSortedMap
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowCursorAdapterTest.java100 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
/external/skia/src/image/
DSkImage_GpuYUVA.cpp80 auto newView = GrCopyBaseMipMapToView(context, fYUVAProxies.makeView(i)); in setupMipmapsForPlanes() local
81 if (!newView) { in setupMipmapsForPlanes()
84 SkASSERT(newView.swizzle() == fYUVAProxies.makeView(i).swizzle()); in setupMipmapsForPlanes()
85 newProxies[i] = newView.detachProxy(); in setupMipmapsForPlanes()
/external/skia/src/gpu/
DGrThreadSafeCache.cpp211 GrSurfaceProxyView newView; in add() local
212 std::tie(newView, std::ignore) = this->internalAdd(key, view); in add()
213 return newView; in add()
/external/skia/tests/
DGrThreadSafeCacheTest.cpp719 auto [newView, data] = threadSafeCache->addWithData(key, view); in AccessCachedView()
720 if (view == newView && id != kNoID) { in AccessCachedView()
726 return newView; in AccessCachedView()