HomeSort by relevance Sort by last modified time
    Searched defs:other (Results 226 - 250 of 2746) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
CollatorICU.java 34 CollatorICU other = (CollatorICU)super.clone(); local
36 other.fIcuCollator = (Collator)fIcuCollator.clone();
43 return other;
TimeZoneICU.java 42 TimeZoneICU other = (TimeZoneICU)super.clone(); local
43 other.fIcuTz = (TimeZone)fIcuTz.clone();
44 return other;
82 public boolean hasSameRules(java.util.TimeZone other) {
83 return other.hasSameRules(TimeZoneICU.wrap(fIcuTz));
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
DirectReadOnlyByteBuffer.java 31 static DirectReadOnlyByteBuffer copy (DirectByteBuffer other, int markOfOther) {
32 DirectReadOnlyByteBuffer buf = new DirectReadOnlyByteBuffer(other.byteArray.buffer(), other.capacity(),
33 other.byteArray.byteOffset());
34 buf.limit = other.limit();
35 buf.position = other.position();
37 buf.order(other.order());
ReadOnlyHeapByteBuffer.java 29 static ReadOnlyHeapByteBuffer copy (HeapByteBuffer other, int markOfOther) {
30 ReadOnlyHeapByteBuffer buf = new ReadOnlyHeapByteBuffer(other.backingArray, other.capacity(), other.offset);
31 buf.limit = other.limit();
32 buf.position = other.position();
34 buf.order(other.order());
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btAlignedAllocator.h 73 template < typename Other >
74 btAlignedAllocator( const btAlignedAllocator< Other , Alignment > & ) {}
96 typedef btAlignedAllocator< O , Alignment > other; typedef in struct:btAlignedAllocator::rebind
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/resolvers/
ResolutionFileResolver.java 109 Resolution other = descriptors[i]; local
110 if (w >= other.portraitWidth && other.portraitWidth >= best.portraitWidth && h >= other.portraitHeight
111 && other.portraitHeight >= best.portraitHeight) best = descriptors[i];
115 Resolution other = descriptors[i]; local
116 if (w >= other.portraitHeight && other.portraitHeight >= best.portraitHeight && h >= other.portraitWidth
117 && other.portraitWidth >= best.portraitWidth) best = descriptors[i];
    [all...]
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
Phonemetadata.java 132 public NumberFormat mergeFrom(NumberFormat other) {
133 if (other.hasPattern()) {
134 setPattern(other.getPattern());
136 if (other.hasFormat()) {
137 setFormat(other.getFormat());
139 int leadingDigitsPatternSize = other.leadingDigitsPatternSize();
141 addLeadingDigitsPattern(other.getLeadingDigitsPattern(i));
143 if (other.hasNationalPrefixFormattingRule()) {
144 setNationalPrefixFormattingRule(other.getNationalPrefixFormattingRule());
146 if (other.hasDomesticCarrierCodeFormattingRule())
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
UserInfo.java 82 UserInfo other = (UserInfo) obj; local
83 if (this.userType != other.userType) {
86 if (!this.user.equalsIgnoreCase(other.user)) {
89 if (this.password != null && other.password == null)
92 if (other.password != null && this.password == null)
95 if (this.password == other.password)
98 return (this.password.equals(other.password));
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/
reduce_to_vec.hpp 26 // and/or other materials provided with the distribution.
71 typedef Sum<U> other; typedef in struct:cv::cudev::Sum::rebind
91 typedef Avg<U> other; typedef in struct:cv::cudev::Avg::rebind
111 typedef Min<U> other; typedef in struct:cv::cudev::Min::rebind
131 typedef Max<U> other; typedef in struct:cv::cudev::Max::rebind
  /external/parameter-framework/upstream/test/functional-tests/include/
ElementHandle.hpp 13 * other materials provided with the distribution.
47 ElementHandle(const ElementHandle &other) = delete; member in class:parameterFramework::ElementHandle
48 ElementHandle &operator=(const ElementHandle &other) = delete; member in class:parameterFramework::ElementHandle
  /external/proguard/src/proguard/classfile/attribute/preverification/
FullFrame.java 127 FullFrame other = (FullFrame)object; local
129 if (this.u2offsetDelta != other.u2offsetDelta ||
130 this.variablesCount != other.variablesCount ||
131 this.stackCount != other.stackCount)
139 VerificationType otherType = other.variables[index];
150 VerificationType otherType = other.stack[index];
StackMapFrame.java 100 StackMapFrame other = (StackMapFrame)object; local
102 return this.u2offsetDelta == other.u2offsetDelta;
  /external/proguard/src/proguard/evaluation/
TracedVariables.java 108 public void initialize(TracedVariables other)
110 super.initialize(other);
112 producerVariables.initialize(other.producerVariables);
115 public boolean generalize(TracedVariables other,
118 boolean variablesChanged = super.generalize(other, clearConflictingOtherVariables);
119 boolean producersChanged = producerVariables.generalize(other.producerVariables, clearConflictingOtherVariables);
120 /* consumerVariables.generalize(other.consumerVariables)*/
133 other.producerVariables.values[index] = null;
169 TracedVariables other = (TracedVariables)object; local
172 this.producerVariables.equals(other.producerVariables)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
ExtensionRegistryLite.java 13 // in the documentation and/or other materials provided with the
61 * all other combinations not supported
67 * that all the inner messages must also support reflection. On the other hand,
143 ExtensionRegistryLite(ExtensionRegistryLite other) {
144 if (other == EMPTY) {
148 Collections.unmodifiableMap(other.extensionsByNumber);
181 final ObjectIntPair other = (ObjectIntPair)obj; local
182 return object == other.object && number == other.number;
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
ByteStringMicro.java 13 // in the documentation and/or other materials provided with the
187 final ByteStringMicro other = (ByteStringMicro) o; local
189 if (size != other.bytes.length) {
194 final byte[] otherBytes = other.bytes;
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
FieldData.java 13 // in the documentation and/or other materials provided with the
129 FieldData other = (FieldData) o; local
130 if (value != null && other.value != null) {
134 if (cachedExtension != other.cachedExtension) { // Extension objects are singletons.
139 return value.equals(other.value);
142 return Arrays.equals((byte[]) value, (byte[]) other.value);
144 return Arrays.equals((int[]) value, (int[]) other.value);
146 return Arrays.equals((long[]) value, (long[]) other.value);
148 return Arrays.equals((float[]) value, (float[]) other.value);
150 return Arrays.equals((double[]) value, (double[]) other.value)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_context.cc 13 // in the documentation and/or other materials provided with the
128 // Find out all fields that conflict with some other field in the same
136 const FieldDescriptor* other = fields[j]; local
137 const string& other_name = UnderscoresToCapitalizedCamelCase(other);
142 "\" conflicts with field \"" + other->name() + "\"";
143 } else if (IsConflicting(field, name, other, other_name,
159 // For fields conflicting with some other fields, we append the field
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MethodLocation.java 13 * in the documentation and/or other materials provided with the
101 void mergeInto(@Nonnull MethodLocation other) {
102 if (this.labels != null || other.labels != null) {
103 List<Label> otherLabels = other.getLabels(true);
105 label.location = other;
111 if (this.debugItems != null || other.labels != null) {
112 // We need to keep the debug items in the same order. We add the other debug items to this list, then reassign
116 debugItem.location = other;
118 debugItems.addAll(other.getDebugItems(false));
119 other.debugItems = debugItems
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
TypeListPool.java 13 * in the documentation and/or other materials provided with the
100 Key<? extends Collection<? extends CharSequence>> other = local
102 if (types.size() != other.types.size()) {
105 Iterator<? extends CharSequence> otherTypes = other.types.iterator();
127 Iterator<? extends CharSequence> other = o.types.iterator(); local
129 if (!other.hasNext()) {
132 int comparison = type.toString().compareTo(other.next().toString());
137 if (other.hasNext()) {
  /external/v8/src/crankshaft/x64/
lithium-gap-resolver-x64.cc 25 // Skip constants to perform them last. They don't block other moves
287 LOperand* other = source->IsDoubleRegister() ? destination : source; local
288 DCHECK(other->IsDoubleStackSlot());
289 Operand other_operand = cgen_->ToOperand(other);
295 // No other combinations are possible.
  /external/v8/src/
zone-allocator.h 26 typedef zone_allocator<O> other; typedef in struct:v8::internal::zone_allocator::rebind
30 explicit zone_allocator(const zone_allocator& other) throw()
31 : zone_(other.zone_) {}
32 template<typename U> zone_allocator(const zone_allocator<U>& other) throw()
33 : zone_(other.zone_) {}
53 bool operator==(zone_allocator const& other) const {
54 return zone_ == other.zone_;
56 bool operator!=(zone_allocator const& other) const {
57 return zone_ != other.zone_;
  /external/v8/test/cctest/
test-strtod.cc 10 // disclaimer in the documentation and/or other materials provided
380 Bignum other; local
381 other.AssignUInt64(diy_fp.f());
385 other.MultiplyByPowerOfTen(-bignum_exponent);
388 other.ShiftLeft(diy_fp.e());
392 return Bignum::Compare(bignum, other);
  /external/v8/test/unittests/interpreter/
bytecode-register-allocator-unittest.cc 122 // Free every other register either side of target.
201 Register other = allocator.NewRegister(); local
205 USE(other);
  /frameworks/base/core/java/android/bluetooth/le/
ScanResult.java 139 ScanResult other = (ScanResult) obj; local
140 return Objects.equals(mDevice, other.mDevice) && (mRssi == other.mRssi) &&
141 Objects.equals(mScanRecord, other.mScanRecord)
142 && (mTimestampNanos == other.mTimestampNanos);
  /frameworks/base/core/java/android/hardware/camera2/params/
HighSpeedVideoConfiguration.java 147 final HighSpeedVideoConfiguration other = (HighSpeedVideoConfiguration) obj; local
148 return mWidth == other.mWidth &&
149 mHeight == other.mHeight &&
150 mFpsMin == other.mFpsMin &&
151 mFpsMax == other.mFpsMax &&
152 mBatchSizeMax == other.mBatchSizeMax;

Completed in 1041 milliseconds

1 2 3 4 5 6 7 8 91011>>