/libcore/ojluni/src/main/java/java/util/function/ |
Function.java | 27 import java.util.Objects; 67 Objects.requireNonNull(before); 87 Objects.requireNonNull(after); 94 * @param <T> the type of the input and output objects to the function
|
/packages/apps/Settings/src/com/android/settings/vpn2/ |
AppVpnInfo.java | 7 import java.util.Objects; 37 return userId == that.userId && Objects.equals(packageName, that.packageName); 44 return Objects.hash(packageName, userId);
|
/libcore/ojluni/src/main/java/java/util/ |
PrimitiveIterator.java | 113 Objects.requireNonNull(action); 147 Objects.requireNonNull(action); 187 Objects.requireNonNull(action); 221 Objects.requireNonNull(action); 260 Objects.requireNonNull(action); 295 Objects.requireNonNull(action);
|
Iterator.java | 114 Objects.requireNonNull(action);
|
Optional.java | 91 this.value = Objects.requireNonNull(value); 169 Objects.requireNonNull(predicate); 206 Objects.requireNonNull(mapper); 232 Objects.requireNonNull(mapper); 236 return Objects.requireNonNull(mapper.apply(value)); 313 return Objects.equals(value, other.value); 324 return Objects.hashCode(value);
|
StringJoiner.java | 121 Objects.requireNonNull(prefix, "The prefix must not be null"); 122 Objects.requireNonNull(delimiter, "The delimiter must not be null"); 123 Objects.requireNonNull(suffix, "The suffix must not be null"); 146 this.emptyValue = Objects.requireNonNull(emptyValue, 209 Objects.requireNonNull(other);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
AccountWithDataSet.java | 22 import com.google.common.base.Objects; 72 return Objects.equal(mAccountName, other.getAccountName()) 73 && Objects.equal(mAccountType, other.getAccountType()) 74 && Objects.equal(mDataSet, other.getDataSet()); 101 if (Objects.equal(systemAccount.name, getAccountName()) 102 && Objects.equal(systemAccount.type, getAccountType())) {
|
/external/guice/core/src/com/google/inject/internal/ |
ConstantFactory.java | 19 import com.google.common.base.Objects; 39 return Objects.toStringHelper(ConstantFactory.class)
|
/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
InstanceFilterBindingImpl.java | 19 import com.google.common.base.Objects; 43 return Objects.toStringHelper(InstanceFilterBinding.class)
|
InstanceServletBindingImpl.java | 19 import com.google.common.base.Objects; 43 return Objects.toStringHelper(InstanceServletBinding.class)
|
/libcore/luni/src/main/java/android/system/ |
StructStatVfs.java | 19 import libcore.util.Objects; 78 return Objects.toString(this);
|
StructUtsname.java | 19 import libcore.util.Objects; 53 return Objects.toString(this);
|
/packages/apps/Camera2/src/com/android/camera/async/ |
FilteredCallback.java | 21 import java.util.Objects; 43 if (Objects.equals(mLastValue, result)) {
|
/frameworks/base/telecomm/java/android/telecom/ |
DisconnectCause.java | 24 import java.util.Objects; 221 return Objects.hashCode(mDisconnectCode) 222 + Objects.hashCode(mDisconnectLabel) 223 + Objects.hashCode(mDisconnectDescription) 224 + Objects.hashCode(mDisconnectReason) 225 + Objects.hashCode(mToneToPlay); 232 return Objects.equals(mDisconnectCode, d.getCode()) 233 && Objects.equals(mDisconnectLabel, d.getLabel()) 234 && Objects.equals(mDisconnectDescription, d.getDescription()) 235 && Objects.equals(mDisconnectReason, d.getReason() [all...] |
StatusHints.java | 28 import java.util.Objects; 143 return Objects.equals(otherHints.getLabel(), getLabel()) && 144 Objects.equals(otherHints.getIcon(), getIcon()) && 145 Objects.equals(otherHints.getExtras(), getExtras()); 152 return Objects.hashCode(mLabel) + Objects.hashCode(mIcon) + Objects.hashCode(mExtras);
|
/external/guice/extensions/grapher/src/com/google/inject/grapher/ |
InstanceNode.java | 19 import com.google.common.base.Objects; 51 return super.equals(other) && Objects.equal(instance, other.instance) 52 && Objects.equal(members, other.members); 56 return 31 * super.hashCode() + Objects.hashCode(instance, members);
|
NodeId.java | 19 import com.google.common.base.Objects; 68 return Objects.hashCode(key, nodeType); 76 return Objects.equal(key, other.key) && Objects.equal(nodeType, other.nodeType);
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
ObjectTransformLayer.h | 1 //===- ObjectTransformLayer.h - Run all objects through functor -*- C++ -*-===// 10 // Run all objects passed in through a user supplied functor. 26 /// the set of transformed objects to the layer below. 30 /// @brief Handle to a set of added objects. 39 /// add the resulting set of objects to the base layer, along with the 42 /// @return A handle for the added objects. 45 ObjSetHandleT addObjectSet(ObjSetT &Objects, MemoryManagerPtrT MemMgr, 48 for (auto I = Objects.begin(), E = Objects.end(); I != E; ++I) 51 return BaseLayer.addObjectSet(Objects, std::move(MemMgr) [all...] |
/frameworks/base/media/java/android/media/projection/ |
MediaProjectionInfo.java | 23 import java.util.Objects; 52 return Objects.equals(other.mPackageName, mPackageName) 53 && Objects.equals(other.mUserHandle, mUserHandle); 60 return Objects.hash(mPackageName, mUserHandle);
|
/toolchain/binutils/binutils-2.25/gold/ |
cref.cc | 72 // A list of input objects. 73 typedef std::vector<Object*> Objects; 80 // List of objects included from the archive. 81 Objects* objects; member in struct:gold::Cref_inputs::Archive_info 86 // A mapping from the name of an archive to the list of objects in 91 // symbols to lists of objects. The symbols are sorted 101 typedef std::map<const Symbol*, Objects*, Cref_table_compare> Cref_table; 103 // Report symbol counts for a list of Objects. 105 print_objects_symbol_counts(const Symbol_table*, FILE*, const Objects*) const 302 const Objects* objects = pc->second; local [all...] |
/external/guice/core/src/com/google/inject/spi/ |
Dependency.java | 21 import com.google.common.base.Objects; 104 return Objects.hashCode(injectionPoint, parameterIndex, key); 110 return Objects.equal(injectionPoint, dependency.injectionPoint) 111 && Objects.equal(parameterIndex, dependency.parameterIndex) 112 && Objects.equal(key, dependency.key);
|
/frameworks/base/core/java/android/net/ |
ScoredNetwork.java | 23 import java.util.Objects; 123 return Objects.equals(networkKey, that.networkKey) 124 && Objects.equals(rssiCurve, that.rssiCurve) 125 && Objects.equals(meteredHint, that.meteredHint); 130 return Objects.hash(networkKey, rssiCurve, meteredHint);
|
/libcore/luni/src/main/java/libcore/reflect/ |
ParameterizedTypeImpl.java | 22 import java.util.Objects; 88 return Objects.equals(getRawType(), that.getRawType()) && 89 Objects.equals(getOwnerType(), that.getOwnerType()) && 95 return 31 * (31 * Objects.hashCode(getRawType()) + Objects.hashCode(getOwnerType())) +
|
/packages/apps/TV/tests/common/src/com/android/tv/testing/ |
ChannelInfo.java | 25 import java.util.Objects; 167 return Objects.equals(originalNetworkId, that.originalNetworkId) && 168 Objects.equals(videoWidth, that.videoWidth) && 169 Objects.equals(videoHeight, that.videoHeight) && 170 Objects.equals(audioChannel, that.audioChannel) && 171 Objects.equals(audioLanguageCount, that.audioLanguageCount) && 172 Objects.equals(hasClosedCaption, that.hasClosedCaption) && 173 Objects.equals(appLinkColor, that.appLinkColor) && 174 Objects.equals(number, that.number) && 175 Objects.equals(name, that.name) & [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/ |
StopMeasurementLogMessage.java | 20 import com.google.common.base.Objects; 46 return Objects.hashCode(measurements);
|