HomeSort by relevance Sort by last modified time
    Searched refs:frozen (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
ParameterizedModifier.java 17 boolean frozen; field in class:ParameterizedModifier
29 this.frozen = true;
43 this.frozen = false;
47 assert !frozen; local
52 frozen = true;
56 assert frozen; local
62 assert frozen; local
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
ParameterizedModifier.java 15 boolean frozen; field in class:ParameterizedModifier
27 this.frozen = true;
41 this.frozen = false;
45 assert !frozen; local
50 frozen = true;
54 assert frozen; local
60 assert frozen; local
  /hardware/interfaces/automotive/
README.md 9 The HALs are not (yet) frozen, as the HAL definition is expected to evolve
  /prebuilts/go/darwin-x86/src/log/syslog/
doc.go 13 // The syslog package is frozen and is not accepting new features.
20 // syslog package is frozen, Windows users are encouraged to
  /prebuilts/go/linux-x86/src/log/syslog/
doc.go 13 // The syslog package is frozen and is not accepting new features.
20 // syslog package is frozen, Windows users are encouraged to
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Row.java 24 protected volatile boolean frozen; field in class:Row
95 if (frozen) {
96 throw new UnsupportedOperationException("Attempt to modify frozen object");
171 return frozen;
176 frozen = true;
182 if (frozen) return this;
197 result.frozen = false;
Relation.java 283 volatile boolean frozen = false; field in class:Relation
287 return frozen;
292 if (!frozen) {
299 frozen = true;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Row.java 20 protected volatile boolean frozen; field in class:Row
91 if (frozen) {
92 throw new UnsupportedOperationException("Attempt to modify frozen object");
167 return frozen;
172 frozen = true;
178 if (frozen) return this;
193 result.frozen = false;
Relation.java 281 volatile boolean frozen = false; field in class:Relation
285 return frozen;
290 if (!frozen) {
297 frozen = true;
  /external/icu/icu4c/source/test/cintltst/
usettest.c 554 USet *frozen; local
565 frozen=uset_clone(idSet);
567 if (frozen == NULL) {
572 if(!uset_equals(frozen, idSet)) {
576 uset_freeze(frozen);
577 uset_addRange(frozen, 0xd802, 0xd805);
579 if(uset_isFrozen(idSet) || !uset_isFrozen(frozen) || !uset_equals(frozen, idSet)) {
583 thawed=uset_cloneAsThawed(frozen);
586 log_err("uset_cloneAsThawed(frozen) returned NULL")
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
hash.c 403 table->frozen = 0;
519 if (!table->frozen && table->count > table->size * 3 / 4)
530 table->frozen = 1;
538 table->frozen = 1;
650 table->frozen = 1;
660 table->frozen = 0;
  /prebuilts/go/darwin-x86/src/cmd/vet/internal/whitelist/
whitelist.go 11 // These image and image/color struct types are frozen. We will never add fields to them.
  /prebuilts/go/linux-x86/src/cmd/vet/internal/whitelist/
whitelist.go 11 // These image and image/color struct types are frozen. We will never add fields to them.
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateIntervalInfo.java 316 private transient volatile boolean frozen = false; field in class:DateIntervalInfo
319 // is shared with other objects. Unlike frozen which is always true once
320 // set to true, this field can go from true to false as long as frozen is
715 * @throws UnsupportedOperationException if the object is frozen
721 if ( frozen ) {
722 throw new UnsupportedOperationException("no modification is allowed after DII is frozen");
    [all...]
MessagePattern.java 240 "Attempt to clear() a frozen MessagePattern instance.");
793 * @return a copy of this object (or itself if frozen).
821 newMsg.frozen=false;
831 frozen=true;
836 * Determines whether this object is frozen (immutable) or not.
837 * @return true if this object is frozen.
841 return frozen;
847 "Attempt to parse("+prefix(pattern)+") on frozen MessagePattern instance.");
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateIntervalInfo.java 324 private transient volatile boolean frozen = false; field in class:DateIntervalInfo
327 // is shared with other objects. Unlike frozen which is always true once
328 // set to true, this field can go from true to false as long as frozen is
724 * @throws UnsupportedOperationException if the object is frozen
731 if ( frozen ) {
732 throw new UnsupportedOperationException("no modification is allowed after DII is frozen");
    [all...]
MessagePattern.java 251 "Attempt to clear() a frozen MessagePattern instance.");
860 * @return a copy of this object (or itself if frozen).
890 newMsg.frozen=false;
901 frozen=true;
906 * Determines whether this object is frozen (immutable) or not.
907 * @return true if this object is frozen.
912 return frozen;
918 "Attempt to parse("+prefix(pattern)+") on frozen MessagePattern instance.");
    [all...]
  /external/icu/icu4c/source/test/intltest/
usettest.cpp     [all...]
  /external/python/cpython3/Lib/test/test_importlib/
util.py 50 frozen = support.import_fresh_module(module_name)
53 return {'Frozen': frozen, 'Source': source}
76 frozen = specialize_class(cls, 'Frozen', base, **kwargs)
78 return frozen, source
96 __import__ = {'Frozen': staticmethod(builtins.__import__),
  /external/scapy/scapy/layers/tls/
keyexchange_tls13.py 138 if not self.tls_session.frozen:
150 if not self.tls_session.frozen:
176 if not self.tls_session.frozen and self.server_share.privkey:
199 if not self.tls_session.frozen and self.server_share.pubkey:
extensions.py 603 tmp = pkt.tls_session.frozen
604 pkt.tls_session.frozen = True
606 pkt.tls_session.frozen = tmp
632 if not pkt.tls_session.frozen:
session.py 313 self.frozen = False
    [all...]
  /external/tensorflow/tensorflow/contrib/tpu/python/tpu/
tpu_feed.py 151 for (frozen, updated) in zip(self._tuple_types, tuple_types):
152 if frozen != updated:
154 "Trying to update InfeedQueue with frozen configuration with an "
155 "incompatible type. Frozen types are %s, updated types are %s" % (
197 for (frozen, updated) in zip(self._tuple_shapes, tuple_shapes):
198 if frozen != updated:
200 "Trying to update InfeedQueue with frozen configuration with an "
201 "incompatible shape. Frozen shapes are %s, updated shapes are %s"
267 been frozen and number_of_shards was already set to something
348 The configuration is implicitly frozen before any host-side o
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocaleMatcher.java 574 result.frozen = false;
582 private volatile boolean frozen = false; field in class:LocaleMatcher.ScoreData
591 return frozen;
619 private volatile boolean frozen = false; field in class:LocaleMatcher.LanguageMatcherData
766 result.frozen = false;
785 frozen = true;
797 return frozen;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleMatcher.java 581 result.frozen = false;
589 private volatile boolean frozen = false; field in class:LocaleMatcher.ScoreData
598 return frozen;
626 private volatile boolean frozen = false; field in class:LocaleMatcher.LanguageMatcherData
773 result.frozen = false;
792 frozen = true;
804 return frozen;
    [all...]

Completed in 667 milliseconds

1 2 3 4