/third_party/node/deps/npm/node_modules/bluebird/js/release/ |
D | join.js | 121 var holder = new HolderClass(fn); 132 undefined, ret, holder); 133 promiseSetters[i](maybePromise, holder); 134 holder.asyncNeeded = false; 137 maybePromise._value(), holder); 144 callbacks[i].call(ret, maybePromise, holder); 149 if (holder.asyncNeeded) { 152 holder.fn = util.domainBind(domain, holder.fn); 156 ret._setOnCancel(holder);
|
/third_party/typescript/tests/baselines/reference/ |
D | typeGuardFunctionOfFormThisErrors.js | 42 let holder = {invalidGuard}; variable 44 if (holder.invalidGuard(c)) { 46 holder; 50 holder; 124 var holder = { invalidGuard: invalidGuard }; variable 125 if (holder.invalidGuard(c)) { 127 holder; 131 holder; 159 declare let holder: {
|
D | typeGuardFunctionOfFormThisErrors.symbols | 108 let holder = {invalidGuard}; 109 >holder : Symbol(holder, Decl(typeGuardFunctionOfFormThisErrors.ts, 40, 3)) 112 if (holder.invalidGuard(c)) { 113 >holder.invalidGuard : Symbol(invalidGuard, Decl(typeGuardFunctionOfFormThisErrors.ts, 40, 14)) 114 >holder : Symbol(holder, Decl(typeGuardFunctionOfFormThisErrors.ts, 40, 3)) 121 holder; 122 >holder : Symbol(holder, Decl(typeGuardFunctionOfFormThisErrors.ts, 40, 3)) 128 holder; 129 >holder : Symbol(holder, Decl(typeGuardFunctionOfFormThisErrors.ts, 40, 3))
|
D | typeGuardFunctionOfFormThisErrors.types | 111 let holder = {invalidGuard}; 112 >holder : { invalidGuard: (c: any) => this is number; } 116 if (holder.invalidGuard(c)) { 117 >holder.invalidGuard(c) : boolean 118 >holder.invalidGuard : (c: any) => this is number 119 >holder : { invalidGuard: (c: any) => this is number; } 126 holder; 127 >holder : { invalidGuard: (c: any) => this is number; } & number 133 holder; 134 >holder : { invalidGuard: (c: any) => this is number; }
|
/third_party/flutter/skia/tools/copyright/ |
D | main.py | 50 (year, holder) = parser.GetCopyrightBlockAttributes(old_copyright_block) 51 if holder and not ConfirmAllowedCopyrightHolder(holder): 54 holder, filepath)) 56 new_copyright_block = parser.CreateCopyrightBlock(year, holder) 99 def ConfirmAllowedCopyrightHolder(holder): argument 104 return holder in ALLOWED_COPYRIGHT_HOLDERS
|
D | fileparser.py | 81 def CreateCopyrightBlock(self, year, holder): argument 90 if not holder: 91 holder = self.DEFAULT_HOLDER 92 return self.COPYRIGHT_BLOCK_FORMAT % (year, holder)
|
/third_party/skia/tools/copyright/ |
D | main.py | 53 (year, holder) = parser.GetCopyrightBlockAttributes(old_copyright_block) 54 if holder and not ConfirmAllowedCopyrightHolder(holder): 57 holder, filepath)) 59 new_copyright_block = parser.CreateCopyrightBlock(year, holder) 108 def ConfirmAllowedCopyrightHolder(holder): argument 113 return holder in ALLOWED_COPYRIGHT_HOLDERS
|
D | fileparser.py | 81 def CreateCopyrightBlock(self, year, holder): argument 90 if not holder: 91 holder = self.DEFAULT_HOLDER 92 return self.COPYRIGHT_BLOCK_FORMAT % (year, holder)
|
/third_party/flutter/skia/platform_tools/android/apps/skar_java/src/main/java/com/google/skar/examples/helloskar/app/ |
D | CanvasARSurfaceView.java | 38 SurfaceHolder holder = getHolder(); in CanvasARSurfaceView() local 41 holder.setFormat(PixelFormat.TRANSPARENT); in CanvasARSurfaceView() 42 holder.addCallback(this); in CanvasARSurfaceView() 50 public void surfaceCreated(SurfaceHolder holder) { in surfaceCreated() argument 55 public void surfaceDestroyed(SurfaceHolder holder) { in surfaceDestroyed() argument 60 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {} in surfaceChanged() argument
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | CompatibilityTest.java | 82 public void testCompatibility(FileHolder holder) throws ClassNotFoundException, IOException { in testCompatibility() argument 83 if (holder.skip) { in testCompatibility() 84 logln("Skipping File = " + holder); in testCompatibility() 88 Object[] oldObjects = SerializableTestUtility.getSerializedObjects(holder.b); in testCompatibility() 89 Handler classHandler = SerializableTestUtility.getHandler(holder.className); in testCompatibility() 94 … errln("Input object " + i + ", className " + holder.className + ": failed behavior test."); in testCompatibility() 185 FileHolder holder = new FileHolder(entryName, in getJarList() local 187 classList.add(holder); in getJarList()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/ |
D | CompatibilityTest.java | 85 public void testCompatibility(FileHolder holder) throws ClassNotFoundException, IOException { in testCompatibility() argument 86 if (holder.skip) { in testCompatibility() 87 logln("Skipping File = " + holder); in testCompatibility() 91 Object[] oldObjects = SerializableTestUtility.getSerializedObjects(holder.b); in testCompatibility() 92 Handler classHandler = SerializableTestUtility.getHandler(holder.className); in testCompatibility() 97 … errln("Input object " + i + ", className " + holder.className + ": failed behavior test."); in testCompatibility() 188 FileHolder holder = new FileHolder(entryName, in getJarList() local 190 classList.add(holder); in getJarList()
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_common.hpp | 1379 if (holder) in ~Variant() 1380 group->pools[type]->free_opaque(holder); in ~Variant() 1398 if (holder) in operator =() 1399 group->pools[type]->free_opaque(holder); in operator =() 1400 holder = other.holder; in operator =() 1405 other.holder = nullptr; in operator =() 1422 if (holder) in operator =() 1423 group->pools[type]->free_opaque(holder); in operator =() 1425 if (other.holder) in operator =() 1426 holder = other.holder->clone(group->pools[other.type].get()); in operator =() [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/ |
D | typeGuardFunctionOfFormThisErrors.ts | 42 let holder = {invalidGuard}; variable 44 if (holder.invalidGuard(c)) { 46 holder; 50 holder;
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/java/com/mobileer/androidfxlab/ |
D | EffectsAdapter.kt | 137 override fun onBindViewHolder(holder: EffectsHolder, position: Int) { in <lambda>() 138 holder.bindEffect(effectList[position], position) in <lambda>() 178 var holder = mRecyclerView.findViewHolderForAdapterPosition(i) as EffectsHolder in <lambda>() variable 179 holder.bindEffect(holder.effect, i) in <lambda>() 202 var holder = mRecyclerView.findViewHolderForAdapterPosition(i) as EffectsHolder in <lambda>() variable 203 holder.bindEffect(holder.effect, i) in <lambda>()
|
/third_party/node/lib/internal/http2/ |
D | util.js | 273 const holder = ObjectCreate(null); 279 holder.headerTableSize = 285 holder.enablePush = 291 holder.initialWindowSize = 297 holder.maxFrameSize = 303 holder.maxConcurrentStreams = 309 holder.maxHeaderListSize = holder.maxHeaderSize = 315 holder.enableConnectProtocol = 319 return holder;
|
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/util/ |
D | SurfaceRenderer.java | 63 public void surfaceCreated(SurfaceHolder holder) { in surfaceCreated() argument 68 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { in surfaceChanged() argument 69 mAndroidSurface = holder.getSurface(); in surfaceChanged() 76 public void surfaceDestroyed(SurfaceHolder holder) { in surfaceDestroyed() argument
|
/third_party/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/ |
D | ViewerActivity.java | 120 public void surfaceCreated(SurfaceHolder holder) { in surfaceCreated() argument 122 onSurfaceCreated(mApplication.getNativeHandle(), holder.getSurface()); in surfaceCreated() 127 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { in surfaceChanged() argument 129 onSurfaceChanged(mApplication.getNativeHandle(), holder.getSurface()); in surfaceChanged() 134 public void surfaceDestroyed(SurfaceHolder holder) { in surfaceDestroyed() argument
|
/third_party/flutter/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/ |
D | ViewerActivity.java | 120 public void surfaceCreated(SurfaceHolder holder) { in surfaceCreated() argument 122 onSurfaceCreated(mApplication.getNativeHandle(), holder.getSurface()); in surfaceCreated() 127 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { in surfaceChanged() argument 129 onSurfaceChanged(mApplication.getNativeHandle(), holder.getSurface()); in surfaceChanged() 134 public void surfaceDestroyed(SurfaceHolder holder) { in surfaceDestroyed() argument
|
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/ |
D | MainActivity.java | 107 public void surfaceCreated(@NonNull SurfaceHolder holder) {} in surfaceCreated() argument 110 … public void surfaceChanged(@NonNull SurfaceHolder holder, int format, int width, int height) { in surfaceChanged() argument 111 threadedSurface = Surface.createThreadedSurface(holder.getSurface()); in surfaceChanged() 135 public void surfaceDestroyed(@NonNull SurfaceHolder holder) {} in surfaceDestroyed() argument
|
/third_party/popt/po/ |
D | Makevars | 13 # This is the copyright holder that gets inserted into the header of the 14 # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding 16 # sources, belong to the copyright holder of the package.) Translators are
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/android/ |
D | FlutterSurfaceView.java | 53 public void surfaceCreated(@NonNull SurfaceHolder holder) { 63 public void surfaceChanged(@NonNull SurfaceHolder holder, int format, int width, int height) { 71 public void surfaceDestroyed(@NonNull SurfaceHolder holder) {
|
/third_party/flutter/flutter/dev/integration_tests/external_ui/android/app/src/main/java/io/flutter/externalui/ |
D | MainActivity.java | 99 public void surfaceCreated(SurfaceHolder holder) { in onCreate() 107 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { in onCreate() 111 public void surfaceDestroyed(SurfaceHolder holder) { in onCreate()
|
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/ |
D | EJDB2JQLModule.java | 171 AtomicReference<WritableArray> holder = new AtomicReference<>(Arguments.createArray()); in execute() local 175 WritableArray wa = holder.get(); in execute() 179 holder.set(wa); in execute() 187 WritableArray wa = holder.get(); in execute() 189 holder.set(null); in execute()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/java/com/google/oboe/samples/rhythmgame/ |
D | GameSurfaceView.java | 48 public void surfaceDestroyed(SurfaceHolder holder) { in surfaceDestroyed() argument 50 super.surfaceDestroyed(holder); in surfaceDestroyed()
|
/third_party/icu/icu4j/tools/build/src-pre8/com/ibm/icu/dev/tool/docs/ |
D | ICUTagletAdapter.java | 37 public TagletOutput getTagletOutput(Doc holder, TagletWriter writer) in getTagletOutput() argument 41 Tag[] tags = holder.tags(getName()); in getTagletOutput()
|