Home
last modified time | relevance | path

Searched refs:obs (Results 1 – 25 of 69) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
DsymbolProperty61.types6 readonly obs: symbol
7 >obs : unique symbol
11 const observable: typeof Symbol.obs = Symbol.obs
13 >Symbol.obs : unique symbol
15 >obs : unique symbol
16 >Symbol.obs : unique symbol
18 >obs : unique symbol
51 [Symbol.obs]: () => { subscribe(next: (val: T) => void): void }
52 >[Symbol.obs] : () => { subscribe(next: (val: T) => void): void; }
53 >Symbol.obs : unique symbol
[all …]
DsymbolProperty61.symbols8 readonly obs: symbol
9 >obs : Symbol(SymbolConstructor.obs, Decl(symbolProperty61.ts, 1, 31))
13 const observable: typeof Symbol.obs = Symbol.obs
15 >Symbol.obs : Symbol(SymbolConstructor.obs, Decl(symbolProperty61.ts, 1, 31))
17 >obs : Symbol(SymbolConstructor.obs, Decl(symbolProperty61.ts, 1, 31))
18 >Symbol.obs : Symbol(SymbolConstructor.obs, Decl(symbolProperty61.ts, 1, 31))
20 >obs : Symbol(SymbolConstructor.obs, Decl(symbolProperty61.ts, 1, 31))
56 [Symbol.obs]: () => { subscribe(next: (val: T) => void): void }
57 >[Symbol.obs] : Symbol([Symbol.obs], Decl(symbolProperty61.ts, 20, 29))
58 >Symbol.obs : Symbol(SymbolConstructor.obs, Decl(symbolProperty61.ts, 1, 31))
[all …]
DsymbolProperty61.js4 readonly obs: symbol
8 const observable: typeof Symbol.obs = Symbol.obs
23 [Symbol.obs]: () => { subscribe(next: (val: T) => void): void }
26 function from<T>(obs: InteropObservable<T>) {
27 return obs[Symbol.obs]()
34 const observable = Symbol.obs;
46 function from(obs) { argument
47 return obs[Symbol.obs]();
55 readonly obs: symbol;
58 declare const observable: typeof Symbol.obs;
/third_party/node/test/fixtures/wpt/performance-timeline/
Dpo-observe.any.js4 const obs = new PerformanceObserver(() => {});
6 obs.observe({entryTypes: "mark"});
11 const obs = new PerformanceObserver(() => {});
12 obs.observe({entryTypes: []});
16 const obs = new PerformanceObserver(() => {});
17 obs.observe({entryTypes: ["this-cannot-match-an-entryType"]});
18 obs.observe({entryTypes: ["marks","navigate", "resources"]});
22 const obs = new PerformanceObserver(() => {});
23 obs.observe({entryTypes: ["mark","this-cannot-match-an-entryType"]});
24 obs.observe({entryTypes: ["this-cannot-match-an-entryType","mark"]});
[all …]
Dpo-observe-type.any.js4 const obs = new PerformanceObserver(() => {});
6 obs.observe({});
9 obs.observe({entryType: ['mark', 'measure']});
14 const obs = new PerformanceObserver(() =>{}); constant
15 obs.observe({entryTypes: ["mark"]});
17 obs.observe({type: "measure"});
22 const obs = new PerformanceObserver(() =>{}); constant
23 obs.observe({type: "mark"});
25 obs.observe({entryTypes: ["measure"]});
30 const obs = new PerformanceObserver(() =>{}); constant
[all …]
Dpo-disconnect.any.js5 t.step_func(function (entryList, obs) { argument
19 var obs = new PerformanceObserver(function () { return true; });
20 obs.disconnect();
21 obs.disconnect();
26 t.step_func(function (entryList, obs) { argument
Dpo-mark-measure.any.js6 t.step_func(function (entryList, obs) { argument
26 t.step_func(function (entryList, obs) { argument
46 t.step_func(function (entryList, obs) { argument
Dmultiple-buffered-flag-observers.any.js5 new PerformanceObserver((entryList, obs) => {
12 obs.disconnect();
/third_party/libcoap/src/
Dcoap_resource.c468 coap_subscription_t *obs, *otmp; local
491 LL_FOREACH_SAFE(resource->subscribers, obs, otmp) {
493 resource->context->observe_deleted(obs->session, obs,
495 coap_session_release(obs->session);
496 coap_delete_pdu(obs->pdu);
497 coap_delete_cache_key(obs->cache_key);
498 coap_free_type(COAP_SUBSCRIPTION, obs);
989 coap_subscription_t *obs, *otmp; local
1000 LL_FOREACH_SAFE(r->subscribers, obs, otmp) {
1001 obs_session = obs->session;
[all …]
/third_party/typescript/tests/cases/conformance/es6/Symbols/
DsymbolProperty61.ts6 readonly obs: symbol property
10 const observable: typeof Symbol.obs = Symbol.obs
25 [Symbol.obs]: () => { subscribe(next: (val: T) => void): void }
28 function from<T>(obs: InteropObservable<T>) {
29 return obs[Symbol.obs]()
/third_party/node/test/parallel/
Dtest-performance-function.js20 const obs = new PerformanceObserver(common.mustCall((list) => { constant
28 obs.disconnect();
30 obs.observe({ entryTypes: ['function'] });
37 const obs = new PerformanceObserver(common.mustNotCall()); constant
38 obs.observe({ entryTypes: ['function'] });
43 obs.disconnect();
50 const obs = new PerformanceObserver(common.mustCall((list) => { constant
60 obs.disconnect();
62 obs.observe({ entryTypes: ['function'] });
Dtest-performanceobserver.js55 const obs = new PerformanceObserver(common.mustNotCall()); constant
56 obs.observe({ entryTypes: ['mark', 'mark'] });
57 obs.disconnect();
66 function callback(list, obs) { argument
67 assert.strictEqual(obs, observer);
Dtest-performance-function-async.js26 const obs = new PerformanceObserver(common.mustCall((list) => { constant
30 obs.disconnect();
33 obs.observe({ type: 'function' });
Dtest-performance-gc.js28 const obs = new PerformanceObserver(common.mustCallAtLeast((list) => { constant
40 obs.disconnect();
42 obs.observe({ entryTypes: ['gc'] });
Dtest-performanceobserver-gc.js13 const obs = new PerformanceObserver(() => {}); constant
16 obs.observe({ type: 'gc' });
Dtest-performance-measure.js11 const obs = new PerformanceObserver(common.mustCall((items) => { constant
17 obs.observe({ entryTypes: ['measure'] });
/third_party/node/deps/v8/src/compiler/
Dstore-store-elimination.cc115 UnobservablesSet Add(UnobservableStore obs, Zone* zone) const;
143 bool IsUnobservable(UnobservableStore obs, in IsUnobservable() argument
146 ObservableState state = set_->Get(obs); in IsUnobservable()
158 bool IsGCObservable(UnobservableStore obs) const { in IsGCObservable()
159 return set_ != nullptr && set_->Get(obs) == kGCObservable; in IsGCObservable()
535 UnobservablesSet UnobservablesSet::Add(UnobservableStore obs, in Add() argument
537 if (set()->Get(obs) == kUnobservable) return *this; in Add()
541 SetAdd(new_set, obs); in Add()
553 const UnobservableStore& obs = entry.first; in RemoveSameOffset() local
554 if (obs.offset_ == offset) SetErase(new_set, obs); in RemoveSameOffset()
[all …]
/third_party/openssl/crypto/bio/
Dbf_lbuf.c210 int obs; in linebuffer_ctrl() local
235 obs = (int)num; in linebuffer_ctrl()
237 if ((obs > DEFAULT_LINEBUFFER_SIZE) && (obs != ctx->obuf_size)) { in linebuffer_ctrl()
238 p = OPENSSL_malloc((size_t)obs); in linebuffer_ctrl()
243 if (ctx->obuf_len > obs) { in linebuffer_ctrl()
244 ctx->obuf_len = obs; in linebuffer_ctrl()
249 ctx->obuf_size = obs; in linebuffer_ctrl()
Dbf_buff.c242 int ibs, obs; in buffer_ctrl() local
308 obs = ctx->obuf_size; in buffer_ctrl()
312 obs = (int)num; in buffer_ctrl()
316 obs = (int)num; in buffer_ctrl()
327 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size)) { in buffer_ctrl()
347 ctx->obuf_size = obs; in buffer_ctrl()
/third_party/node/deps/openssl/openssl/crypto/bio/
Dbf_lbuf.c210 int obs; in linebuffer_ctrl() local
235 obs = (int)num; in linebuffer_ctrl()
237 if ((obs > DEFAULT_LINEBUFFER_SIZE) && (obs != ctx->obuf_size)) { in linebuffer_ctrl()
238 p = OPENSSL_malloc((size_t)obs); in linebuffer_ctrl()
243 if (ctx->obuf_len > obs) { in linebuffer_ctrl()
244 ctx->obuf_len = obs; in linebuffer_ctrl()
249 ctx->obuf_size = obs; in linebuffer_ctrl()
Dbf_buff.c242 int ibs, obs; in buffer_ctrl() local
308 obs = ctx->obuf_size; in buffer_ctrl()
312 obs = (int)num; in buffer_ctrl()
316 obs = (int)num; in buffer_ctrl()
327 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size)) { in buffer_ctrl()
347 ctx->obuf_size = obs; in buffer_ctrl()
/third_party/libcoap/examples/
Detsi_testcases.sh652 testaddress=coap://$SERVERTUP/obs
712 testaddress=coap://$SERVERTUP/obs
733 testaddress=coap://$SERVERTUP/obs
758 testaddress=coap://$SERVERTUP/obs
763 testaddress=coap://[::1]/obs
/third_party/gstreamer/gstplugins_good/po/
Dpl.po74 msgstr "Serwer nie obsługuje przewijania."
110 "Nie znaleziono obsługiwanego strumienia. Być może trzeba zainstalować "
118 "Nie znaleziono obsługiwanego strumienia. Być może trzeba zezwolić na więcej "
144 "Sound System nie jest obsługiwana przez ten element."
147 msgstr "Odtwarzanie nie jest obsługiwane przez to urządzenie dźwiękowe."
153 msgstr "Nagrywanie nie jest obsługiwane przez to urządzenie dźwiękowe."
193 msgstr "Sterownik urządzenia '%s' nie obsługuje metody we/wy %d"
197 msgstr "Sterownik urządzenia '%s' nie obsługuje żadnej znanej metody we/wy."
204 msgstr "Urządzenie '%s' nie ma obsługiwanego formatu"
224 msgstr "Urządzenie '%s' obsługuje nieciągłe powierzchnie"
[all …]
/third_party/node/benchmark/perf_hooks/
Dusertiming.js25 const obs = new PerformanceObserver(() => {
28 obs.observe({ entryTypes, buffered: true });
Dresourcetiming.js69 const obs = new PerformanceObserver(() => {
72 obs.observe({ entryTypes: [observe], buffered: true });

123