Home
last modified time | relevance | path

Searched refs:frozen (Results 1 – 25 of 148) sorted by relevance

123456

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
DAdoptingModifierStore.java21 boolean frozen; field in AdoptingModifierStore
35 this.frozen = true; in AdoptingModifierStore()
51 this.frozen = false; in AdoptingModifierStore()
55 assert !frozen; in setModifier() local
60 frozen = true; in freeze()
64 assert frozen; in getModifierWithoutPlural() local
83 assert frozen; in getModifier() local
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DAdoptingModifierStore.java19 boolean frozen; field in AdoptingModifierStore
33 this.frozen = true; in AdoptingModifierStore()
49 this.frozen = false; in AdoptingModifierStore()
53 assert !frozen; in setModifier() local
58 frozen = true; in freeze()
62 assert frozen; in getModifierWithoutPlural() local
81 assert frozen; in getModifier() local
/third_party/node/deps/npm/node_modules/yargs/lib/
Dusage.js525 let frozen = {}
526 frozens.push(frozen)
527 frozen.failMessage = failMessage
528 frozen.failureOutput = failureOutput
529 frozen.usages = usages
530 frozen.usageDisabled = usageDisabled
531 frozen.epilogs = epilogs
532 frozen.examples = examples
533 frozen.commands = commands
534 frozen.descriptions = descriptions
[all …]
Dvalidation.js336 let frozen = {}
337 frozens.push(frozen)
338 frozen.implied = implied
339 frozen.checks = checks
340 frozen.conflicting = conflicting
343 let frozen = frozens.pop()
344 implied = frozen.implied
345 checks = frozen.checks
346 conflicting = frozen.conflicting
Dcommand.js433 let frozen = {}
434 frozens.push(frozen)
435 frozen.handlers = handlers
436 frozen.aliasMap = aliasMap
437 frozen.defaultCommand = defaultCommand
440 let frozen = frozens.pop()
441 handlers = frozen.handlers
442 aliasMap = frozen.aliasMap
443 defaultCommand = frozen.defaultCommand
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
DSeriesMatcher.java21 protected boolean frozen = false; field in SeriesMatcher
24 assert !frozen; in addMatcher() local
32 frozen = true; in freeze()
41 assert frozen; in match() local
91 assert frozen; in smokeTest() local
103 assert frozen; in postProcess() local
DNumberParserImpl.java273 private boolean frozen; field in NumberParserImpl
284 frozen = false; in NumberParserImpl()
288 assert !frozen; in addMatcher() local
293 assert !frozen; in addMatchers() local
298 frozen = true; in freeze()
323 assert frozen; in parse() local
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DSeriesMatcher.java19 protected boolean frozen = false; field in SeriesMatcher
22 assert !frozen; in addMatcher() local
30 frozen = true; in freeze()
39 assert frozen; in match() local
89 assert frozen; in smokeTest() local
101 assert frozen; in postProcess() local
DNumberParserImpl.java271 private boolean frozen; field in NumberParserImpl
282 frozen = false; in NumberParserImpl()
286 assert !frozen; in addMatcher() local
291 assert !frozen; in addMatchers() local
296 frozen = true; in freeze()
321 assert frozen; in parse() local
/third_party/python/Lib/
Ddataclasses.py324 def __init__(self, init, repr, eq, order, unsafe_hash, frozen): argument
330 self.frozen = frozen
438 def _field_assign(frozen, name, value, self_name): argument
445 if frozen:
450 def _field_init(f, frozen, globals, self_name, slots): argument
507 return _field_assign(frozen, f.name, value, self_name)
529 def _init_fn(fields, std_fields, kw_only_fields, frozen, has_post_init, argument
557 line = _field_init(f, frozen, locals, self_name, slots)
882 def _process_class(cls, init, repr, eq, order, unsafe_hash, frozen, argument
901 unsafe_hash, frozen))
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_freezedetect.c44 int frozen; member
168 int frozen = 0; in activate() local
178 frozen = is_frozen(s, s->reference_frame, frame); in activate()
180 if (!s->frozen) in activate()
182 if (!frozen) { in activate()
186 s->frozen = frozen; in activate()
190 if (!frozen) { in activate()
/third_party/node/deps/npm/node_modules/yargs/
Dyargs.js153 let frozen = {}
154 frozens.push(frozen)
155 frozen.options = options
156 frozen.configObjects = options.configObjects.slice(0)
157 frozen.exitProcess = exitProcess
158 frozen.groups = groups
162 frozen.strict = strict
163 frozen.completionCommand = completionCommand
164 frozen.output = output
165 frozen.exitError = exitError
[all …]
/third_party/icu/icu4c/source/test/cintltst/
Dusettest.c593 USet *frozen; in TestFreezable() local
604 frozen=uset_clone(idSet); in TestFreezable()
606 if (frozen == NULL) { in TestFreezable()
611 if(!uset_equals(frozen, idSet)) { in TestFreezable()
615 uset_freeze(frozen); in TestFreezable()
616 uset_addRange(frozen, 0xd802, 0xd805); in TestFreezable()
618 if(uset_isFrozen(idSet) || !uset_isFrozen(frozen) || !uset_equals(frozen, idSet)) { in TestFreezable()
622 thawed=uset_cloneAsThawed(frozen); in TestFreezable()
626 uset_close(frozen); in TestFreezable()
638 uset_close(frozen); in TestFreezable()
/third_party/ltp/testcases/kernel/controllers/freezer/
D00_description.txt9 The sleep process is frozen. We then kill the sleep process.
16 The sleep process is frozen. We then move the sleep process to a THAWED
28 The sleep process is frozen. We then wait until the sleep process should
36 The sleep process is frozen. We then thaw the process before it exits.
46 The sleep process is stopped and then frozen. We then thaw the process
52 The sleep process is stopped and then frozen. We then thaw the process
67 A task within the cgroup to be frozen tries to fork.
/third_party/typescript/tests/baselines/reference/
DmappedTypes2.js64 var frozen: ReadonlyShape;
65 var frozen: Readonly<Shape>;
66 var frozen = freeze(shape);
112 var frozen;
113 var frozen;
114 var frozen = freeze(shape);
DmappedTypes2.types155 var frozen: ReadonlyShape;
156 >frozen : ReadonlyShape
158 var frozen: Readonly<Shape>;
159 >frozen : ReadonlyShape
161 var frozen = freeze(shape);
162 >frozen : ReadonlyShape
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DRow.java26 protected volatile boolean frozen; field in Row
109 if (frozen) { in set()
185 return frozen; in isFrozen()
190 frozen = true; in freeze()
196 if (frozen) return this; in clone()
211 result.frozen = false; in cloneAsThawed()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DRow.java22 protected volatile boolean frozen; field in Row
93 if (frozen) { in set()
169 return frozen; in isFrozen()
174 frozen = true; in freeze()
180 if (frozen) return this; in clone()
195 result.frozen = false; in cloneAsThawed()
/third_party/python/Tools/freeze/
DREADME11 who don't have Python. The shipped file (called a "frozen" version of
61 "python hello.py" there's little chance of getting the frozen version
80 Freeze creates a number of files: frozen.c, config.c and Makefile,
82 M_<module>.c. To produce the frozen version of your program, you can
89 clean up after you've shipped the frozen binary. You should invoke
98 frozen Tkinter program is to decide in advance where you are going
100 then declare these directories in your frozen Python program using
103 For example, assume you will ship your frozen program in the directory
106 placing the following lines in your frozen Python script before importing
142 The OS must find the dynamic libraries or your frozen program won't start.
[all …]
/third_party/jerryscript/tests/jerry/
Dobject-is-extensible.js28 var frozen = Object.freeze({});
29 assert(Object.isExtensible(frozen) === false);
/third_party/python/Lib/test/
Dtest_dataclasses.py125 @dataclass(frozen=True)
134 @dataclass(frozen=True)
227 @dataclass(frozen=True)
261 C = make_dataclass('C', attributes, frozen=True)
814 @dataclass(frozen=True, unsafe_hash=True)
923 @dataclass(frozen=True)
1054 @dataclass(frozen=True)
1956 @dataclass(order=True, unsafe_hash=True, frozen=True)
2401 def test(case, unsafe_hash, eq, frozen, with_hash, result): argument
2403 frozen=frozen):
[all …]
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypes2.ts66 var frozen: ReadonlyShape;
67 var frozen: Readonly<Shape>;
68 var frozen = freeze(shape);
/third_party/icu/icu4c/source/test/intltest/
Dusettest.cpp2259 UnicodeSet frozen(idSet); in TestFreezable() local
2260 frozen.freeze(); in TestFreezable()
2262 if(idSet.isFrozen() || !frozen.isFrozen()) { in TestFreezable()
2265 if(frozen!=idSet || !(frozen==idSet)) { in TestFreezable()
2269 frozen=wsSet; in TestFreezable()
2270 if(frozen!=idSet || !(frozen==idSet)) { in TestFreezable()
2274 UnicodeSet frozen2(frozen); in TestFreezable()
2275 if(frozen2!=frozen || frozen2!=idSet) { in TestFreezable()
2285 frozen3=frozen; in TestFreezable()
2290 UnicodeSet *cloned=frozen.clone(); in TestFreezable()
[all …]
/third_party/python/Doc/library/
Dtracemalloc.rst58 <frozen importlib._bootstrap>:716: size=4855 KiB, count=39328, average=126 B
59 <frozen importlib._bootstrap>:284: size=521 KiB, count=3199, average=167 B
64 <frozen importlib._bootstrap>:1446: size=70.4 KiB, count=911, average=79 B
65 <frozen importlib._bootstrap>:1454: size=52.0 KiB, count=25, average=2131 B
98 … <frozen importlib._bootstrap>:716: size=8173 KiB (+4428 KiB), count=71332 (+39369), average=117 B
101 <frozen importlib._bootstrap>:284: size=1005 KiB (+166 KiB), count=7423 (+1526), average=139 B
144 File "<frozen importlib._bootstrap>", line 716
145 File "<frozen importlib._bootstrap>", line 1036
146 File "<frozen importlib._bootstrap>", line 934
147 File "<frozen importlib._bootstrap>", line 1068
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DDateIntervalInfo.java313 private transient volatile boolean frozen = false; field in DateIntervalInfo
719 if ( frozen ) { in setIntervalPattern()
884 if ( frozen ) { in setFallbackIntervalPattern()
919 if ( frozen ) { in clone()
943 other.frozen = false; in cloneUnfrozenDII()
976 return frozen; in isFrozen()
985 frozen = true; in freeze()

123456