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

1 2 3 4

  /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.25/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/messageformat/java/com/ibm/icu/text/
MessagePattern.java 248 "Attempt to clear() a frozen MessagePattern instance.");
857 * @return a copy of this object (or itself if frozen).
886 newMsg.frozen=false;
896 frozen=true;
901 * Determines whether this object is frozen (immutable) or not.
902 * @return true if this object is frozen.
906 return frozen;
912 "Attempt to parse("+prefix(pattern)+") on frozen MessagePattern instance.");
    [all...]
  /system/tools/hidl/
Coordinator.cpp 556 std::vector<std::string> frozen = Hash::lookupHash(hashPath, currentFQName.string(), &error); local
564 // hash not define, interface not frozen
565 if (frozen.size() == 0) {
571 if(std::find(frozen.begin(), frozen.end(), currentHash) == frozen.end()) {
574 << "been frozen. Do not change it!";
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocaleMatcher.java 567 result.frozen = false;
575 private volatile boolean frozen = false; field in class:LocaleMatcher.ScoreData
582 return frozen;
610 private volatile boolean frozen = false; field in class:LocaleMatcher.LanguageMatcherData
755 result.frozen = false;
773 frozen = true;
784 return frozen;
    [all...]
TimeZone.java 202 * <strong>[icu]</strong> The immutable (frozen) "unknown" time zone.
360 throw new UnsupportedOperationException("Attempt to modify a frozen TimeZone instance.");
679 * @param frozen specify if the returned object can be frozen
683 private static TimeZone getTimeZone(String id, int type, boolean frozen) {
688 return frozen ? result.freeze() : result;
698 return frozen ? result : result.cloneAsThawed();
702 * Returns a frozen ICU type TimeZone object given a time zone ID.
706 * @return the frozen ICU TimeZone or null if one could not be created.
    [all...]
GlobalizationPreferences.java 1440 private volatile boolean frozen; field in class:GlobalizationPreferences
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleMatcher.java 574 result.frozen = false;
582 private volatile boolean frozen = false; field in class:LocaleMatcher.ScoreData
589 return frozen;
617 private volatile boolean frozen = false; field in class:LocaleMatcher.LanguageMatcherData
762 result.frozen = false;
780 frozen = true;
791 return frozen;
TimeZone.java 242 * {@icu} The immutable (frozen) "unknown" time zone.
417 throw new UnsupportedOperationException("Attempt to modify a frozen TimeZone instance.");
749 * @param frozen specify if the returned object can be frozen
753 private static TimeZone getTimeZone(String id, int type, boolean frozen) {
758 return frozen ? result.freeze() : result;
768 return frozen ? result : result.cloneAsThawed();
772 * Returns a frozen ICU type TimeZone object given a time zone ID.
776 * @return the frozen ICU TimeZone or null if one could not be created.
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/
GlobalizationPreferences.java 1480 private volatile boolean frozen; field in class:GlobalizationPreferences
    [all...]
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.1/
grpc-stub-1.0.1.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/
grpc-stub-1.0.3.jar 

Completed in 1120 milliseconds

1 2 3 4