Home
last modified time | relevance | path

Searched refs:checkNotNull (Results 1 – 13 of 13) sorted by relevance

/development/tools/motion/motion_test_watcher_app/src/model/
Dvideo-source.ts18 import { checkNotNull } from '../util/preconditions';
70 checkNotNull(this._videoElement).loop = value;
78 checkNotNull(this._videoElement).playbackRate = value;
Dvisualization.ts17 import { checkArgument, checkNotNull } from '../util/preconditions';
80 const ctx = checkNotNull(canvas.getContext('2d'));
176 const ctx = checkNotNull(canvas.getContext('2d'));
/development/tools/idegen/src/com/android/idegen/
DModuleCache.java55 Preconditions.checkNotNull(moduleDir); in getAndCacheByDir()
72 Preconditions.checkNotNull(moduleName); in getAndCacheByName()
102 Preconditions.checkNotNull(module); in put()
DDirectorySearch.java62 Preconditions.checkNotNull(repoRoot, "repoRoot has not been initialized yet. Call " in getRepoRoot()
74 Preconditions.checkNotNull(file); in findAndInitRepoRoot()
107 Preconditions.checkNotNull(path); in findModuleRoot()
136 Preconditions.checkNotNull(file); in findSourceDirs()
180 Preconditions.checkNotNull(file); in findExcludeDirs()
DIntellijProject.java54 this.indexFile = new File(Preconditions.checkNotNull(indexFile)); in IntellijProject()
55 this.projectPath = new File(Preconditions.checkNotNull(projectPath)); in IntellijProject()
56 this.moduleDirs = Preconditions.checkNotNull(moduleDirs); in IntellijProject()
DFrameworkModule.java43 super(Preconditions.checkNotNull(moduleDir), false); in FrameworkModule()
DMakeFileParser.java58 this.makeFile = Preconditions.checkNotNull(makeFile);
DModule.java97 this.moduleRoot = Preconditions.checkNotNull(moduleDir); in Module()
/development/samples/MotionMechanics/src/com/android/mechanics/demo/staging/behavior/reveal/
DFadeReveal.kt140 checkNotNull(findNearestAncestor(TRAVERSAL_NODE_KEY)) as RevealContainerNode in fadeReveal()
169 with(checkNotNull(attachedState)) { in fadeReveal()
178 with(checkNotNull(attachedState)) { in fadeReveal()
192 with(checkNotNull(attachedState)) { in fadeReveal()
216 val revealAlpha = checkNotNull(attachedState).alphaValue.output in fadeReveal()
/development/samples/MotionMechanics/src/com/android/mechanics/demo/staging/behavior/
DMagneticDetach.kt91 val idleSize = checkNotNull(element.targetSize(content)) in transform()
105 val fromSize = checkNotNull(element.targetSize(transition.fromContent)).toSize() in transform()
106 val toSize = checkNotNull(element.targetSize(transition.toContent)).toSize() in transform()
/development/tools/motion/motion_test_watcher_app/src/util/
Dpreconditions.ts31 export function checkNotNull<T>( function
/development/tools/motion/motion_test_watcher_app/src/service/
Dgoldens.service.ts26 import { checkNotNull } from '../util/preconditions';
60 const videoUrl = checkNotNull(golden.videoUrl);
/development/samples/SceneTransitionLayoutDemo/src/com/android/compose/animation/scene/demo/
DPartialShade.kt59 val contentOverscrollEffect = checkNotNull(rememberOverscrollEffect()) in ContentScope()