HomeSort by relevance Sort by last modified time
    Searched refs:that (Results 26 - 50 of 13096) sorted by null

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
noglob1.d 5 # Check that we can link an object that doesn't have any global symbols;
  /development/tools/bugreport/src/com/android/bugreport/stacks/
StackFrameSnapshot.java 41 protected StackFrameSnapshot(StackFrameSnapshot that) {
42 this.frameType = that.frameType;
43 this.text = that.text;
  /external/doclava/src/com/google/doclava/
SourcePositionInfo.java 28 public SourcePositionInfo(SourcePositionInfo that) {
29 this.file = that.file;
30 this.line = that.line;
31 this.column = that.column;
35 * Given this position and str which occurs at that position, as well as str an index into str,
40 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index) {
41 if (that == null) {
44 int line = that.line;
53 return new SourcePositionInfo(that.file, line, 0);
56 public static SourcePositionInfo findBeginning(SourcePositionInfo that, String str)
78 SourcePositionInfo that = (SourcePositionInfo) o; local
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapElement.java 48 * An element that is returned by {@link ImapList#getElementOrNone} to indicate an index is out of
75 public boolean equalsForTest(ImapElement that) {
76 return super.equalsForTest(that);
106 * Return a string that represents this object; it's purely for the debug purpose. Don't mistake
115 * The equals implementation that is intended to be used only for unit testing. (Because it may be
118 public boolean equalsForTest(ImapElement that) {
119 if (that == null) {
122 return this.getClass() == that.getClass(); // Has to be the same class.
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapElement.java 47 * An element that is returned by {@link ImapList#getElementOrNone} to indicate an index
69 public boolean equalsForTest(ImapElement that) {
70 return super.equalsForTest(that);
102 * Return a string that represents this object; it's purely for the debug purpose. Don't
111 * The equals implementation that is intended to be used only for unit testing.
114 public boolean equalsForTest(ImapElement that) {
115 if (that == null) {
118 return this.getClass() == that.getClass(); // Has to be the same class.
  /external/libchrome/base/mac/
scoped_authorizationref.h 2 // Use of this source code is governed by a BSD-style license that can be
40 bool operator==(AuthorizationRef that) const {
41 return authorization_ == that;
44 bool operator!=(AuthorizationRef that) const {
45 return authorization_ != that;
58 void swap(ScopedAuthorizationRef& that) {
59 AuthorizationRef temp = that.authorization_;
60 that.authorization_ = authorization_;
  /external/pdfium/core/fxcrt/
cfx_maybe_owned.h 2 // Use of this source code is governed by a BSD-style license that can be
15 // A template that can hold either owned or unowned references, and cleans up
27 CFX_MaybeOwned(const CFX_MaybeOwned& that) = delete; member in class:CFX_MaybeOwned
28 CFX_MaybeOwned(CFX_MaybeOwned&& that)
29 : m_pOwnedObj(that.m_pOwnedObj.release()), m_pObj(that.m_pObj) {
30 that.m_pObj = nullptr;
49 CFX_MaybeOwned& operator=(const CFX_MaybeOwned& that) = delete; member in class:CFX_MaybeOwned
50 CFX_MaybeOwned& operator=(CFX_MaybeOwned&& that) {
51 m_pOwnedObj = std::move(that.m_pOwnedObj)
    [all...]
cfx_observable.h 2 // Use of this source code is governed by a BSD-style license that can be
23 ObservedPtr(const ObservedPtr& that) : ObservedPtr(that.Get()) {}
39 ObservedPtr& operator=(const ObservedPtr& that) {
40 Reset(that.Get());
43 bool operator==(const ObservedPtr& that) const {
44 return m_pObservable == that.m_pObservable;
46 bool operator!=(const ObservedPtr& that) const { return !(*this == that); }
57 CFX_Observable(const CFX_Observable& that) = delete member in class:CFX_Observable
72 CFX_Observable& operator=(const CFX_Observable& that) = delete; member in class:CFX_Observable
    [all...]
cfx_weak_ptr.h 2 // Use of this source code is governed by a BSD-style license that can be
21 CFX_WeakPtr(const CFX_WeakPtr& that) : m_pHandle(that.m_pHandle) {}
22 CFX_WeakPtr(CFX_WeakPtr&& that) { Swap(that); }
34 CFX_WeakPtr& operator=(const CFX_WeakPtr& that) {
35 m_pHandle = that.m_pHandle;
38 bool operator==(const CFX_WeakPtr& that) const {
39 return m_pHandle == that.m_pHandle;
41 bool operator!=(const CFX_WeakPtr& that) const { return !(*this == that);
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/bluetooth/
LedConfiguration.java 55 public LedConfiguration(LedConfiguration that) {
56 this.color0 = that.color0;
57 this.color1 = that.color1;
58 this.pulse = that.pulse;
66 final LedConfiguration that = (LedConfiguration)o; local
67 return areColorsEqual(that)
68 && this.pulse == that.pulse
69 && this.isTransient == that.isTransient;
72 public boolean areColorsEqual(LedConfiguration that) {
73 if (that == null)
    [all...]
  /external/google-breakpad/src/processor/
basic_code_module.h 5 // modification, are permitted provided that the following conditions are
30 // basic_code_module.h: Carries information about code modules that are loaded
34 // instantiated directly, only based on other objects that implement
55 // the CodeModule interface without requiring all of the resources that
57 explicit BasicCodeModule(const CodeModule *that)
58 : base_address_(that->base_address()),
59 size_(that->size()),
60 code_file_(that->code_file()),
61 code_identifier_(that->code_identifier()),
62 debug_file_(that->debug_file())
    [all...]
  /external/skia/src/gpu/
GrAppliedClip.h 4 * Use of this source code is governed by a BSD-style license that can be
16 * Produced by GrClip. It provides a set of modifications to the drawing state that are used to
22 GrAppliedClip(GrAppliedClip&& that) = default; member in class:GrAppliedClip
64 bool operator==(const GrAppliedClip& that) const {
65 if (fScissorState != that.fScissorState || fHasStencilClip != that.fHasStencilClip) {
69 if (!SkToBool(that.fClipCoverageFP) ||
70 !that.fClipCoverageFP->isEqual(*fClipCoverageFP)) {
73 } else if (SkToBool(that.fClipCoverageFP)) {
76 return fWindowRectsState == that.fWindowRectsState
    [all...]
  /external/apache-http/src/org/apache/http/
ProtocolVersion.java 41 * RFC 3261 specifies a message format that is identical to HTTP except
48 * Note that {@link #equals} and {@link #hashCode} are defined as
185 ProtocolVersion that = (ProtocolVersion) obj; local
187 return ((this.protocol.equals(that.protocol)) &&
188 (this.major == that.major) &&
189 (this.minor == that.minor));
198 * @param that the protocol version to consider
203 public boolean isComparable(ProtocolVersion that) {
204 return (that != null) && this.protocol.equals(that.protocol)
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_contentmarkitem.cpp 2 // Use of this source code is governed by a BSD-style license that can be
16 CPDF_ContentMarkItem::CPDF_ContentMarkItem(const CPDF_ContentMarkItem& that)
17 : m_MarkName(that.m_MarkName),
18 m_ParamType(that.m_ParamType),
19 m_pPropertiesDict(that.m_pPropertiesDict) {
20 if (that.m_pDirectDict)
21 m_pDirectDict = ToDictionary(that.m_pDirectDict->Clone());
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
LegacyPasspointConfig.java 49 LegacyPasspointConfig that = (LegacyPasspointConfig) thatObject; local
50 return TextUtils.equals(mFqdn, that.mFqdn)
51 && TextUtils.equals(mFriendlyName, that.mFriendlyName)
52 && Arrays.equals(mRoamingConsortiumOis, that.mRoamingConsortiumOis)
53 && TextUtils.equals(mRealm, that.mRealm)
54 && TextUtils.equals(mImsi, that.mImsi);
  /packages/apps/Settings/src/com/android/settings/vpn2/
AppVpnInfo.java 24 AppVpnInfo that = (AppVpnInfo) other; local
26 int result = packageName.compareTo(that.packageName);
28 result = that.userId - userId;
36 AppVpnInfo that = (AppVpnInfo) other; local
37 return userId == that.userId && Objects.equals(packageName, that.packageName);
  /external/icu/icu4c/source/common/
chariter.cpp 70 CharacterIterator::CharacterIterator(const CharacterIterator &that) :
71 ForwardCharacterIterator(that),
72 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
77 CharacterIterator::operator=(const CharacterIterator &that) {
78 ForwardCharacterIterator::operator=(that);
79 textLength = that.textLength;
80 pos = that.pos
    [all...]
  /bionic/libc/private/
ScopeGuard.h 28 ScopeGuard(ScopeGuard&& that) : f_(that.f_), active_(that.active_) {
29 that.active_ = false;
  /external/skia/include/gpu/
GrCoordTransform.h 4 * Use of this source code is governed by a BSD-style license that can be
34 * Create a transformation that maps [0, 1] to a texture's boundaries. The precision is inferred
70 * Create a transformation that applies the matrix to a coord set.
93 GrCoordTransform& operator= (const GrCoordTransform& that) {
95 fMatrix = that.fMatrix;
96 fTexture = that.fTexture;
97 fNormalize = that.fNormalize;
98 fReverseY = that.fReverseY;
99 fPrecision = that.fPrecision;
112 bool hasSameEffectAs(const GrCoordTransform& that) const
    [all...]
  /external/v8/src/compiler/
diamond.h 2 // Use of this source code is governed by a BSD-style license that can be
35 // Place {this} after {that} in control flow order.
36 void Chain(Diamond& that) { branch->ReplaceInput(1, that.merge); }
38 // Place {this} after {that} in control flow order.
39 void Chain(Node* that) { branch->ReplaceInput(1, that); }
41 // Nest {this} into either the if_true or if_false branch of {that}.
42 void Nest(Diamond& that, bool if_true) {
44 branch->ReplaceInput(1, that.if_true)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
EventDataItem.java 48 final EventDataItem that = (EventDataItem) t; local
50 if (!TextUtils.equals(getStartDate(), that.getStartDate())) {
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
57 !TextUtils.equals(getLabel(), that.getLabel())) {
RelationDataItem.java 48 final RelationDataItem that = (RelationDataItem) t; local
50 if (!TextUtils.equals(getName(), that.getName())) {
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
57 !TextUtils.equals(getLabel(), that.getLabel())) {
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
EventDataItem.java 47 final EventDataItem that = (EventDataItem) t; local
49 if (!TextUtils.equals(getStartDate(), that.getStartDate())) {
51 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
52 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
53 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
56 && !TextUtils.equals(getLabel(), that.getLabel())) {
RelationDataItem.java 47 final RelationDataItem that = (RelationDataItem) t; local
49 if (!TextUtils.equals(getName(), that.getName())) {
51 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
52 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
53 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
56 && !TextUtils.equals(getLabel(), that.getLabel())) {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
v32-err-2.s 5 ; Tests that broken words don't crash, just give a message when

Completed in 748 milliseconds

12 3 4 5 6 7 8 91011>>