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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/net/base/
auth.cc 2 // Use of this source code is governed by a BSD-style license that can be
12 bool AuthChallengeInfo::operator==(const AuthChallengeInfo& that) const {
13 return (this->is_proxy == that.is_proxy &&
14 this->host_and_port == that.host_and_port &&
15 this->scheme == that.scheme &&
16 this->realm == that.realm);
auth.h 2 // Use of this source code is governed by a BSD-style license that can be
17 // Holds info about an authentication challenge that we may want to display
24 bool operator==(const AuthChallengeInfo& that) const;
26 bool operator!=(const AuthChallengeInfo& that) const {
27 return !(*this == that);
  /external/chromium/chrome/browser/sync/syncable/
syncable_id.h 2 // Use of this source code is governed by a BSD-style license that can be
37 // 1. c<client only opaque id> for client items that have not been committed.
39 // 3. s<server provided opaque id> for items that the server knows about.
51 inline Id(const Id& that) {
52 Copy(that);
54 inline Id& operator = (const Id& that) {
55 Copy(that);
58 inline void Copy(const Id& that) {
59 this->s_ = that.s_;
76 inline int compare(const Id& that) const
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MONITOR_ENTER.S 13 mov r3, #0 @ Record that we're not returning
TEMPLATE_MONITOR_ENTER_DEBUG.S 13 mov r3, #0 @ Record that we're not returning
  /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/Email/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/chromium/base/mac/
scoped_cftyperef.h 2 // Use of this source code is governed by a BSD-style license that can be
18 // of a CoreFoundation object: any object that can be represented as a
25 // an ownership claim to that object. ScopedCFTypeRef<> does not call
47 bool operator==(CFT that) const {
48 return object_ == that;
51 bool operator!=(CFT that) const {
52 return object_ != that;
63 void swap(ScopedCFTypeRef& that) {
64 CFT temp = that.object_;
65 that.object_ = object_
    [all...]
  /external/chromium/chrome/browser/cocoa/
scoped_authorizationref.h 2 // Use of this source code is governed by a BSD-style license that can be
38 bool operator==(AuthorizationRef that) const {
39 return authorization_ == that;
42 bool operator!=(AuthorizationRef that) const {
43 return authorization_ != that;
58 void swap(scoped_AuthorizationRef& that) {
59 AuthorizationRef temp = that.authorization_;
60 that.authorization_ = authorization_;
  /external/chromium/base/memory/
scoped_nsobject.h 2 // Use of this source code is governed by a BSD-style license that can be
21 // an ownership claim to that object. scoped_nsobject<> does not call
43 // We intentionally do not check that object != object_ as the caller must
46 // in a call to reset(). In either case, it relinquishes that claim and
52 bool operator==(NST* that) const { return object_ == that; }
53 bool operator!=(NST* that) const { return object_ != that; }
63 void swap(scoped_nsobject& that) {
64 NST* temp = that.object_
    [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
180 ProtocolVersion that = (ProtocolVersion) obj; local
182 return ((this.protocol.equals(that.protocol)) &&
183 (this.major == that.major) &&
184 (this.minor == that.minor));
193 * @param that the protocol version to consider
198 public boolean isComparable(ProtocolVersion that) {
199 return (that != null) && this.protocol.equals(that.protocol)
    [all...]
  /external/icu4c/common/
chariter.cpp 66 CharacterIterator::CharacterIterator(const CharacterIterator &that) :
67 ForwardCharacterIterator(that),
68 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
73 CharacterIterator::operator=(const CharacterIterator &that) {
74 ForwardCharacterIterator::operator=(that);
75 textLength = that.textLength;
76 pos = that.pos
    [all...]
schriter.cpp 60 StringCharacterIterator::StringCharacterIterator(const StringCharacterIterator& that)
61 : UCharCharacterIterator(that),
62 text(that.text)
72 StringCharacterIterator::operator=(const StringCharacterIterator& that) {
73 UCharCharacterIterator::operator=(that);
74 text = that.text;
81 StringCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
82 if (this == &that) {
87 // because that checks for array pointer equality
90 if (typeid(*this) != typeid(that)) {
    [all...]
  /external/llvm/include/llvm/Support/
TimeValue.h 103 /// This is a static constructor that returns a TimeValue that represents
112 /// Add \p that to \p this.
115 TimeValue& operator += (const TimeValue& that ) {
116 this->seconds_ += that.seconds_ ;
117 this->nanos_ += that.nanos_ ;
122 /// Subtract \p that from \p this.
125 TimeValue& operator -= (const TimeValue &that ) {
126 this->seconds_ -= that.seconds_ ;
127 this->nanos_ -= that.nanos_
    [all...]
  /bionic/libc/arch-arm/bionic/
crtbegin_dynamic.S 6 * modification, are permitted provided that the following conditions
33 # this is the small startup code that is first run when
34 # any executable that is dynamically-linked with Bionic
crtbegin_static.S 6 * modification, are permitted provided that the following conditions
33 # this is the small startup code that is first run when
34 # any executable that is statically-linked with Bionic
  /development/ndk/platforms/android-9/arch-mips/src/
crtbegin_dynamic.S 6 * modification, are permitted provided that the following conditions
34 # this is the small startup code that is first run when
35 # any executable that is dynamically-linked with Bionic
crtbegin_static.S 6 * modification, are permitted provided that the following conditions
34 # this is the small startup code that is first run when
35 # any executable that is statically-linked with Bionic
  /external/webkit/Source/WebCore/
DerivedSources.cpp 5 * modification, are permitted provided that the following conditions
481 #error Do not include any file in DerivedSources.cpp that includes StaticConstructors.h
  /external/icu4c/common/unicode/
schriter.h 32 * A concrete subclass of CharacterIterator that iterates over the
35 * iterator that iterates over an entire UnicodeString, but also to
36 * create one that iterates over only a subrange of a UnicodeString
89 * of the same string as "that", and its initial position is the
90 * same as "that"'s current position.
91 * The UnicodeString object in "that" is copied.
92 * @param that The StringCharacterIterator to be copied
95 StringCharacterIterator(const StringCharacterIterator& that);
105 * range of the same string as "that", and refers to the same
106 * character within that string as "that" does
    [all...]
  /external/icu4c/i18n/
dtrule.cpp 83 DateTimeRule::operator==(const DateTimeRule& that) const {
84 return ((this == &that) ||
85 (typeid(*this) == typeid(that) &&
86 fMonth == that.fMonth &&
87 fDayOfMonth == that.fDayOfMonth &&
88 fDayOfWeek == that.fDayOfWeek &&
89 fWeekInMonth == that.fWeekInMonth &&
90 fMillisInDay == that.fMillisInDay &&
91 fDateRuleType == that.fDateRuleType &&
92 fTimeRuleType == that.fTimeRuleType))
    [all...]
tztrans.cpp 65 TimeZoneTransition::operator==(const TimeZoneTransition& that) const {
66 if (this == &that) {
69 if (typeid(*this) != typeid(that)) {
72 if (fTime != that.fTime) {
75 if ((fFrom == NULL && that.fFrom == NULL)
76 || (fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom))) {
77 if ((fTo == NULL && that.fTo == NULL)
78 || (fTo != NULL && that.fTo != NULL && *fTo == *(that.fTo)))
    [all...]
  /external/clang/test/CodeGenCXX/
constructor-direct-call.cpp 41 Test3(const Test3& that) { a = that.a; b = that.b; c = that.c; }
  /external/clang/test/PCH/
cxx-member-init.cpp 13 S *that = this; member in struct:S
  /ndk/tests/build/import-install/path1/
Android.mk 1 # This is a trivial shared library that will be imported
2 # by the main project's binary. Note that it imports

Completed in 2414 milliseconds

1 2 3 4 5 6 7 8 91011>>