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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/dbus/
object_path.cc 2 // Use of this source code is governed by a BSD-style license that can be
17 bool ObjectPath::operator<(const ObjectPath& that) const {
18 return value_ < that.value_;
21 bool ObjectPath::operator==(const ObjectPath& that) const {
22 return value_ == that.value_;
25 bool ObjectPath::operator!=(const ObjectPath& that) const {
26 return value_ != that.value_;
  /external/eigen/failtest/
failtest_sanity_check.cpp 2 This is just some text that won't compile as a C++ file, as a basic sanity check for failtest.
  /external/llvm/test/MC/Mips/mips2/
invalid-mips32r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /external/llvm/test/MC/Mips/mips32/
invalid-mips32r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /external/llvm/test/MC/Mips/mips4/
invalid-mips64r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /external/llvm/test/MC/Mips/mips5/
invalid-mips64r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /external/llvm/test/MC/Mips/mips64/
invalid-mips64r2-xfail.s 1 # Instructions that are supposed to be invalid but currently aren't
  /external/chromium_org/sync/syncable/
syncable_id.h 2 // Use of this source code is governed by a BSD-style license that can be
41 // 1. c<client only opaque id> for client items that have not been committed.
43 // 3. s<server provided opaque id> for items that the server knows about.
49 inline Id(const Id& that) {
50 Copy(that);
52 inline Id& operator = (const Id& that) {
53 Copy(that);
56 inline void Copy(const Id& that) {
57 this->s_ = that.s_;
74 inline int compare(const Id& that) const
    [all...]
  /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_org/base/mac/
scoped_block.h 2 // Use of this source code is governed by a BSD-style license that can be
31 ScopedBlock(const ScopedBlock<B>& that)
32 : block_(that.block_) {
42 ScopedBlock& operator=(const ScopedBlock<B>& that) {
43 reset(that.get(), base::scoped_policy::RETAIN);
57 bool operator==(B that) const {
58 return block_ == that;
61 bool operator!=(B that) const {
62 return block_ != that;
73 void swap(ScopedBlock& that) {
    [all...]
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;
60 void swap(ScopedAuthorizationRef& that) {
61 AuthorizationRef temp = that.authorization_;
62 that.authorization_ = authorization_;
scoped_ioobject.h 2 // Use of this source code is governed by a BSD-style license that can be
37 bool operator==(IOT that) const {
38 return object_ == that;
41 bool operator!=(IOT that) const {
42 return object_ != that;
53 void swap(ScopedIOObject& that) {
54 IOT temp = that.object_;
55 that.object_ = object_;
scoped_ioplugininterface.h 2 // Use of this source code is governed by a BSD-style license that can be
39 bool operator==(InterfaceT that) const {
40 return object_ == that;
43 bool operator!=(InterfaceT that) const {
44 return object_ != that;
55 void swap(ScopedIOPluginInterface& that) {
56 InterfaceT temp = that.object_;
57 that.object_ = object_;
scoped_nsobject.h 2 // Use of this source code is governed by a BSD-style license that can be
22 // ownership claim to that object. scoped_nsobject<> does not call -retain,
39 scoped_nsprotocol(const scoped_nsprotocol<NST>& that)
40 : object_([that.object_ retain]) {
47 scoped_nsprotocol& operator=(const scoped_nsprotocol<NST>& that) {
48 reset([that.get() retain]);
53 // We intentionally do not check that object != object_ as the caller must
55 // method, or call it with the |RETAIN| policy which will have ensured that
61 bool operator==(NST that) const { return object_ == that; }
    [all...]
scoped_launch_data.h 2 // Use of this source code is governed by a BSD-style license that can be
40 bool operator==(launch_data_t that) const {
41 return object_ == that;
44 bool operator!=(launch_data_t that) const {
45 return object_ != that;
56 void swap(ScopedLaunchData& that) {
57 std::swap(object_, that.object_);
  /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/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/ltrace/testsuite/ltrace.main/
main-internal.exp 9 # This program is distributed in the hope that it will be useful, but
21 __attribute__((noinline)) void that(void) {}
25 that();
32 {that == 0}
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu/icu4c/source/common/
chariter.cpp 68 CharacterIterator::CharacterIterator(const CharacterIterator &that) :
69 ForwardCharacterIterator(that),
70 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
75 CharacterIterator::operator=(const CharacterIterator &that) {
76 ForwardCharacterIterator::operator=(that);
77 textLength = that.textLength;
78 pos = that.pos
    [all...]
  /bionic/libc/private/
ScopeGuard.h 26 ScopeGuard(ScopeGuard&& that) : f_(that.f_), active_(that.active_) {
27 that.active_ = false;
  /external/chromium_org/chrome/browser/sync_file_system/
sync_file_metadata.cc 2 // Use of this source code is governed by a BSD-style license that can be
27 bool SyncFileMetadata::operator==(const SyncFileMetadata& that) const {
28 return file_type == that.file_type &&
29 size == that.size &&
30 last_modified == that.last_modified;
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLContext.cpp 4 * Use of this source code is governed by a BSD-style license that can be
12 GrGLContextInfo& GrGLContextInfo::operator= (const GrGLContextInfo& that) {
13 fInterface.reset(SkSafeRef(that.fInterface.get()));
14 fGLVersion = that.fGLVersion;
15 fGLSLGeneration = that.fGLSLGeneration;
16 fVendor = that.fVendor;
17 fRenderer = that.fRenderer;
18 fIsMesa = that.fIsMesa;
19 fIsChromium = that.fIsChromium;
20 *fGLCaps = *that.fGLCaps.get()
    [all...]
  /external/skia/src/gpu/gl/
GrGLContext.cpp 4 * Use of this source code is governed by a BSD-style license that can be
12 GrGLContextInfo& GrGLContextInfo::operator= (const GrGLContextInfo& that) {
13 fInterface.reset(SkSafeRef(that.fInterface.get()));
14 fGLVersion = that.fGLVersion;
15 fGLSLGeneration = that.fGLSLGeneration;
16 fVendor = that.fVendor;
17 fRenderer = that.fRenderer;
18 fIsMesa = that.fIsMesa;
19 fIsChromium = that.fIsChromium;
20 *fGLCaps = *that.fGLCaps.get()
    [all...]

Completed in 1094 milliseconds

1 2 3 4 5 6 7 8 91011>>