Home
last modified time | relevance | path

Searched refs:tracked (Results 1 – 25 of 220) sorted by relevance

123456789

/third_party/node/lib/internal/assert/
Dcalltracker.js77 #getTrackedFunction(tracked) { argument
78 if (!this.#trackedFunctions.has(tracked)) {
79 throw new ERR_INVALID_ARG_VALUE('tracked', tracked, 'is not a tracked function');
81 return this.#trackedFunctions.get(tracked);
84 reset(tracked) { argument
85 if (tracked === undefined) {
90 this.#getTrackedFunction(tracked).reset();
93 getCalls(tracked) { argument
94 return this.#getTrackedFunction(tracked).getCalls();
115 const tracked = new Proxy(fn, {
[all …]
/third_party/typescript/tests/baselines/reference/
DpotentiallyUncalledDecorators.types15 // Glimmer-style tracked API:
16 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; }
17 >tracked : PropertyDecorator & ((...watchedProperties: string[]) => any)
23 @tracked person; any;
24 >tracked : PropertyDecorator & ((...watchedProperties: string[]) => any)
35 @tracked('args')
36 >tracked('args') : any
37 >tracked : PropertyDecorator & ((...watchedProperties: string[]) => any)
DpotentiallyUncalledDecorators.symbols15 // Glimmer-style tracked API:
16 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; }
17 >tracked : Symbol(tracked, Decl(potentiallyUncalledDecorators.ts, 7, 13))
24 @tracked person; any;
25 >tracked : Symbol(tracked, Decl(potentiallyUncalledDecorators.ts, 7, 13))
36 @tracked('args')
37 >tracked : Symbol(tracked, Decl(potentiallyUncalledDecorators.ts, 7, 13))
DpotentiallyUncalledDecorators.js9 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; }
12 @tracked person; any;
17 @tracked('args')
96 tracked
104 tracked('args')
DpotentiallyUncalledDecorators.errors.txt31 // Glimmer-style tracked API:
32 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; }
35 @tracked person; any;
40 @tracked('args')
/third_party/typescript/tests/cases/compiler/
DpotentiallyUncalledDecorators.ts13 declare const tracked: PropertyDecorator & { (...watchedProperties: string[]): any; } constant
16 @tracked person; any;
21 @tracked('args')
/third_party/vixl/tools/
Dgit.py41 status, tracked = util.getstatusoutput(command)
44 return tracked
/third_party/python/Doc/c-api/
Dgcsupport.rst72 resized object or ``NULL`` on failure. *op* must not be tracked by the collector yet.
77 Adds the object *op* to the set of container objects tracked by the
79 valid while being tracked. This should be called once all the fields
89 The object cannot be tracked by the garbage collector if this function returns 0.
95 currently tracked by the garbage collector and 0 otherwise.
120 Remove the object *op* from the set of container objects tracked by the
122 this object to add it back to the set of tracked objects. The deallocator
/third_party/node/deps/npm/node_modules/libnpmfund/lib/
Dindex.js57 function tracked (name, version) { function
117 if (tracked(name, version)) {
/third_party/rust/crates/env_logger/
DCHANGELOG.md1 Changes to this crate are tracked via [GitHub Releases][releases].
/third_party/python/Doc/library/
Dgc.rst68 Returns a list of all objects tracked by the collector, excluding the list
69 returned. If *generation* is not None, return only the objects tracked by
163 Returns ``True`` if the object is currently tracked by the garbage collector,
165 tracked and instances of non-atomic types (containers, user-defined
209 Freeze all the objects tracked by gc - move them to a permanent generation
/third_party/selinux/
D.gitignore2 # no tracked files are ignored as a result of any changes.
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
DCMakeLists.txt368 absl::tracked
707 absl::tracked
747 tracked
749 "internal/tracked.h"
DBUILD.bazel327 ":tracked",
679 ":tracked",
735 name = "tracked",
737 hdrs = ["internal/tracked.h"],
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/
Dstars.js.test.cjs3 * It should be checked into source control and tracked carefully.
Dinit.js.test.cjs3 * It should be checked into source control and tracked carefully.
Dversion.js.test.cjs3 * It should be checked into source control and tracked carefully.
/third_party/node/test/fixtures/wpt/streams/
DREADME.md3 The work on the streams tests is closely tracked by the specification authors, who maintain a refer…
/third_party/libfuse/
D.gitignore8 # any tracked files which get ignored after the change.
/third_party/openGLES/extensions/EXT/
DGLX_EXT_buffer_age.txt203 3) Is the buffer age tracked in the GLX client or the GLX server?
209 Therefore, the buffer age is tracked in the same address space
241 the context are tracked.
248 - Note that buffer age is tracked in the GLX client when using
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DGLX_EXT_buffer_age.txt203 3) Is the buffer age tracked in the GLX client or the GLX server?
209 Therefore, the buffer age is tracked in the same address space
241 the context are tracked.
248 - Note that buffer age is tracked in the GLX client when using
/third_party/node/deps/npm/tap-snapshots/test/lib/utils/
Dopen-url.js.test.cjs3 * It should be checked into source control and tracked carefully.
Dopen-url-prompt.js.test.cjs3 * It should be checked into source control and tracked carefully.
Dtar.js.test.cjs3 * It should be checked into source control and tracked carefully.
/third_party/mbedtls/
DBUGS.md3 Known issues in Mbed TLS are [tracked on GitHub](https://github.com/Mbed-TLS/mbedtls/issues).

123456789