/third_party/node/test/parallel/ |
D | test-events-listener-count-with-listener.js | 7 const EE = new EventEmitter(); constant 11 assert.strictEqual(EE.listenerCount('event'), 0); 12 assert.strictEqual(EE.listenerCount('event', handler), 0); 13 assert.strictEqual(EE.listenerCount('event', anotherHandler), 0); 15 EE.once('event', handler); 17 assert.strictEqual(EE.listenerCount('event'), 1); 18 assert.strictEqual(EE.listenerCount('event', handler), 1); 19 assert.strictEqual(EE.listenerCount('event', anotherHandler), 0); 21 EE.removeAllListeners('event'); 23 assert.strictEqual(EE.listenerCount('event'), 0); [all …]
|
D | test-events-list.js | 7 const EE = new EventEmitter(); constant 9 EE.on('foo', () => {}); 10 assert.deepStrictEqual(['foo'], EE.eventNames()); 11 EE.on('bar', m); 12 assert.deepStrictEqual(['foo', 'bar'], EE.eventNames()); 13 EE.removeListener('bar', m); 14 assert.deepStrictEqual(['foo'], EE.eventNames()); 16 EE.on(s, m); 17 assert.deepStrictEqual(['foo', s], EE.eventNames()); 18 EE.removeListener(s, m); [all …]
|
D | test-event-emitter-error-monitor.js | 6 const EE = new EventEmitter(); constant 9 EE.on( 18 () => EE.emit('error', theErr), theErr 22 EE.once('error', common.mustCall((e) => assert.strictEqual(e, theErr))); 23 EE.emit('error', theErr); 27 process.nextTick(() => EE.emit('error', theErr)); 28 assert.rejects(EventEmitter.once(EE, 'notTriggered'), theErr); 31 EE.on('aEvent', common.mustCall()); 32 EE.emit('aEvent');
|
D | test-event-emitter-errors.js | 7 const EE = new EventEmitter(); constant 10 () => EE.emit('error', 'Accepts a string'), 19 () => EE.emit('error', { message: 'Error!' }), 28 () => EE.emit('error', {
|
D | test-event-emitter-emit-context.js | 7 const EE = new EventEmitter(); constant 13 () => EE.emit.call(ctx, 'error', new Error('foo')), 18 assert.strictEqual(EE.emit.call({}, 'foo'), false);
|
/third_party/typescript/tests/baselines/reference/ |
D | sourceMapPercentEncoded.sourcemap.txt | 3 …%B5U1%5B%EE%80%A5%EE%80%A6%EE%80%A7%EE%80%B8%EE%80%B9%5DU2%5B%EE%89%9A%EE%89%9B%EE%89%AC%EE%89%AD%… 76 …%B5U1%5B%EE%80%A5%EE%80%A6%EE%80%A7%EE%80%B8%EE%80%B9%5DU2%5B%EE%89%9A%EE%89%9B%EE%89%AC%EE%89%AD%…
|
D | moduleExportAssignment.symbols | 13 >npmlog.on : Symbol(EE.on, Decl(npmlog.js, 0, 10)) 15 >on : Symbol(EE.on, Decl(npmlog.js, 0, 10)) 18 class EE { 19 >EE : Symbol(EE, Decl(npmlog.js, 0, 0)) 23 >on : Symbol(EE.on, Decl(npmlog.js, 0, 10)) 26 var npmlog = module.exports = new EE() 31 >EE : Symbol(EE, Decl(npmlog.js, 0, 0)) 33 npmlog.on('hi') // both references should see EE.on 34 >npmlog.on : Symbol(EE.on, Decl(npmlog.js, 0, 10)) 36 >on : Symbol(EE.on, Decl(npmlog.js, 0, 10)) [all …]
|
D | moduleExportAssignment.types | 19 class EE { 20 >EE : EE 27 var npmlog = module.exports = new EE() 29 >module.exports = new EE() : { on(s: string): void; x: number; y: 2; } 33 >new EE() : EE 34 >EE : typeof EE 36 npmlog.on('hi') // both references should see EE.on
|
D | classAbstractInheritance.js | 18 abstract class EE extends BB {} 85 var EE = /** @class */ (function (_super) { class 86 __extends(EE, _super); 87 function EE() { class in EE 90 return EE;
|
D | classAbstractInheritance.types | 32 abstract class EE extends BB {} 33 >EE : EE
|
D | jsDeclarationsEnums.js | 20 export { E as EE }; 70 exports.K = exports.I = exports.H = exports.G = exports.F = exports.FF = exports.EE = exports.E = e… 89 exports.EE = E; 168 export { DD as D, E as EE, F as FF };
|
D | classAbstractDeclarations.d.types | 27 declare abstract class EE extends BB {} 28 >EE : EE
|
D | classAbstractInheritance.symbols | 32 abstract class EE extends BB {} 33 >EE : Symbol(EE, Decl(classAbstractInheritance.ts, 14, 22))
|
/third_party/node/deps/npm/node_modules/events/tests/ |
D | events-list.js | 6 var EE = new EventEmitter(); variable 8 EE.on('foo', function() {}); 9 assert.equal(1, EE.eventNames().length); 10 assert.equal('foo', EE.eventNames()[0]); 11 EE.on('bar', m); 12 assert.equal(2, EE.eventNames().length); 13 assert.equal('foo', EE.eventNames()[0]); 14 assert.equal('bar', EE.eventNames()[1]); 15 EE.removeListener('bar', m); 16 assert.equal(1, EE.eventNames().length); [all …]
|
D | errors.js | 5 var EE = new EventEmitter(); variable 8 EE.emit('error', 'Accepts a string'); 12 EE.emit('error', { message: 'Error!' });
|
/third_party/libphonenumber/resources/carrier/en/ |
D | 44.txt | 42 # - EE Limited ( TM): EE 43 # - EE Limited (Orange): Orange 113 447300|EE 114 447301|EE 115 447302|EE 116 447303|EE 117 447304|EE 133 447375|EE 134 447376|EE 135 447377|EE [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 110 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local 111 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule() 216 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() argument 217 delete unwrap(EE); in LLVMDisposeExecutionEngine() 220 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() argument 221 unwrap(EE)->finalizeObject(); in LLVMRunStaticConstructors() 222 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors() 225 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() argument 226 unwrap(EE)->finalizeObject(); in LLVMRunStaticDestructors() 227 unwrap(EE)->runStaticConstructorsDestructors(true); in LLVMRunStaticDestructors() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
D | ExecutionEngine.h | 112 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE); 114 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE); 116 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE); 118 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, 122 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, 126 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F); 128 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M); 130 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, 133 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, 136 void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | SymbolRemappingReader.cpp | 59 using EE = ItaniumManglingCanonicalizer::EquivalenceError; in read() typedef 61 case EE::Success: in read() 64 case EE::ManglingAlreadyUsed: in read() 69 case EE::InvalidFirstMangling: in read() 73 case EE::InvalidSecondMangling: in read()
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/ |
D | legacy.js | 4 const { EventEmitter: EE } = require('events') 6 EE.call(this, opts) 8 ObjectSetPrototypeOf(Stream.prototype, EE.prototype) 9 ObjectSetPrototypeOf(Stream, EE) 46 if (EE.listenerCount(this, 'error') === 0) {
|
/third_party/node/lib/internal/streams/ |
D | legacy.js | 8 const EE = require('events'); constant 11 EE.call(this, opts); 13 ObjectSetPrototypeOf(Stream.prototype, EE.prototype); 14 ObjectSetPrototypeOf(Stream, EE); 61 if (EE.listenerCount(this, 'error') === 0) {
|
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/signal-exit/ |
D | index.js | 30 var EE = require('events') variable 32 if (typeof EE !== 'function') { 33 EE = EE.EventEmitter 40 emitter = process.__signal_exit_emitter__ = new EE()
|
/third_party/lz4/build/VS2022/ |
D | lz4.sln | 22 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lz4", "lz4\lz4.vcxproj", "{60A3115E-B988-41EE-… 88 {60A3115E-B988-41EE-8815-F4D4F253D866}.Debug|Win32.ActiveCfg = Debug|Win32 89 {60A3115E-B988-41EE-8815-F4D4F253D866}.Debug|Win32.Build.0 = Debug|Win32 90 {60A3115E-B988-41EE-8815-F4D4F253D866}.Debug|x64.ActiveCfg = Debug|x64 91 {60A3115E-B988-41EE-8815-F4D4F253D866}.Debug|x64.Build.0 = Debug|x64 92 {60A3115E-B988-41EE-8815-F4D4F253D866}.Release|Win32.ActiveCfg = Release|Win32 93 {60A3115E-B988-41EE-8815-F4D4F253D866}.Release|Win32.Build.0 = Release|Win32 94 {60A3115E-B988-41EE-8815-F4D4F253D866}.Release|x64.ActiveCfg = Release|x64 95 {60A3115E-B988-41EE-8815-F4D4F253D866}.Release|x64.Build.0 = Release|x64
|
/third_party/lz4/build/VS2017/ |
D | lz4.sln | 22 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lz4", "lz4\lz4.vcxproj", "{60A3115E-B988-41EE-… 88 {60A3115E-B988-41EE-8815-F4D4F253D866}.Debug|Win32.ActiveCfg = Debug|Win32 89 {60A3115E-B988-41EE-8815-F4D4F253D866}.Debug|Win32.Build.0 = Debug|Win32 90 {60A3115E-B988-41EE-8815-F4D4F253D866}.Debug|x64.ActiveCfg = Debug|x64 91 {60A3115E-B988-41EE-8815-F4D4F253D866}.Debug|x64.Build.0 = Debug|x64 92 {60A3115E-B988-41EE-8815-F4D4F253D866}.Release|Win32.ActiveCfg = Release|Win32 93 {60A3115E-B988-41EE-8815-F4D4F253D866}.Release|Win32.Build.0 = Release|Win32 94 {60A3115E-B988-41EE-8815-F4D4F253D866}.Release|x64.ActiveCfg = Release|x64 95 {60A3115E-B988-41EE-8815-F4D4F253D866}.Release|x64.Build.0 = Release|x64
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | GraphWriter.h | 86 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local 89 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels() 103 if (EI != EE && hasEdgeSourceLabels) in getEdgeSourceLabels() 229 child_iterator EE = GTraits::child_end(Node); in writeNode() local 230 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode() 233 for (; EI != EE; ++EI) in writeNode()
|