Searched defs:other (Results 226 - 250 of 1518) sorted by relevance

1234567891011>>

/external/qemu/android/base/files/
H A DScopedFd.h61 void swap(ScopedFd* other) { argument
63 fd_ = other->fd_;
64 other->fd_ = fd;
H A DScopedStdioFile.h47 void swap(ScopedStdioFile* other) { argument
48 FILE* tmp = other->mFile;
49 other->mFile = mFile;
/external/skia/tests/
H A DSListTest.cpp93 SkTInternalSList<SListEntry> other; local
95 other.swap(&list);
97 verifyList(reporter, other, "swap", &testArray[testArraySize-1], testArraySize, -1);
99 list.pushAll(&other);
101 verifyEmptyList(reporter, other, "pushAll-empty");
103 other.push(list.pop());
104 other.pushAll(&list);
106 verifyList(reporter, other, "pushAll", &testArray[0], testArraySize, 1);
/external/smack/src/org/jivesoftware/smack/util/dns/
H A DSRVRecord.java36 * @throws IllegalArgumentException fqdn is null or any other field is not in valid range (0-65535).
64 public int compareTo(SRVRecord other) { argument
68 int res = other.priority - this.priority;
70 res = this.weight - other.weight;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLookaheadSet.java13 * documentation and/or other materials provided with the distribution.
36 * cannot be stored in my BitSet, I set a condition here. There may be other
55 public LookaheadSet(LookaheadSet other) { argument
57 this.tokenTypeSet.addAll(other.tokenTypeSet);
60 public void orInPlace(LookaheadSet other) { argument
61 this.tokenTypeSet.addAll(other.tokenTypeSet);
64 public LookaheadSet or(LookaheadSet other) { argument
65 return new LookaheadSet(tokenTypeSet.or(other.tokenTypeSet));
68 public LookaheadSet subtract(LookaheadSet other) { argument
69 return new LookaheadSet(this.tokenTypeSet.subtract(other
94 equals(Object other) argument
[all...]
H A DNFAContext.java13 * documentation and/or other materials provided with the distribution.
31 * other NFAs. These trees only have to point upwards to their parents
139 NFAContext other = ((NFAContext)o);
140 if ( this.cachedHashCode != other.cachedHashCode ) {
143 if ( this==other ) {
146 // System.out.println("comparing "+this+" with "+other);
148 while ( sp.parent!=null && other.parent!=null ) {
149 if ( sp.invokingState != other.invokingState ) {
153 other = other
183 conflictsWith(NFAContext other) argument
207 suffix(NFAContext other) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DExtendedType.java104 * @param other The other ExtendedType object to test for equality
107 public boolean equals(ExtendedType other) argument
111 return other.nodetype == this.nodetype &&
112 other.localName.equals(this.localName) &&
113 other.namespace.equals(this.namespace);
/external/chromium_org/base/profiler/
H A Dtracked_time.cc18 Duration& Duration::operator+=(const Duration& other) { argument
19 ms_ += other.ms_;
23 Duration Duration::operator+(const Duration& other) const {
24 return Duration(ms_ + other.ms_);
27 bool Duration::operator==(const Duration& other) const {
28 return ms_ == other.ms_;
31 bool Duration::operator!=(const Duration& other) const {
32 return ms_ != other.ms_;
35 bool Duration::operator>(const Duration& other) const {
36 return ms_ > other
[all...]
/external/chromium_org/base/win/
H A Dscoped_process_information.cc71 const ScopedProcessInformation& other) {
73 DCHECK(other.IsValid()) << "source ScopedProcessInformation must be valid";
75 if (CheckAndDuplicateHandle(other.process_handle(), &process_handle_) &&
76 CheckAndDuplicateHandle(other.thread_handle(), &thread_handle_)) {
77 process_id_ = other.process_id();
78 thread_id_ = other.thread_id();
70 DuplicateFrom( const ScopedProcessInformation& other) argument
/external/chromium_org/cc/debug/
H A Drendering_stats.cc27 void RenderingStats::TimeDeltaList::Add(const TimeDeltaList& other) { argument
28 values.insert(values.end(), other.values.begin(), other.values.end());
51 const MainThreadRenderingStats& other) {
52 frame_count += other.frame_count;
53 paint_time += other.paint_time;
54 painted_pixel_count += other.painted_pixel_count;
55 record_time += other.record_time;
56 recorded_pixel_count += other.recorded_pixel_count;
107 const ImplThreadRenderingStats& other) {
50 Add( const MainThreadRenderingStats& other) argument
106 Add( const ImplThreadRenderingStats& other) argument
126 Add(const RenderingStats& other) argument
[all...]
/external/chromium_org/cc/quads/
H A Dshared_quad_state.cc27 void SharedQuadState::CopyFrom(const SharedQuadState* other) { argument
28 *this = *other;
/external/chromium_org/chrome/installer/util/
H A Dapp_commands.cc54 AppCommands& AppCommands::CopyFrom(const AppCommands& other) { argument
55 commands_ = other.commands_;
/external/chromium_org/components/enhanced_bookmarks/
H A Ditem_position.cc34 ItemPosition ItemPosition::CreateBefore(const ItemPosition& other) { argument
35 DCHECK(other.IsValid());
36 return ItemPosition(CreateBeforeImpl(other.position_, 0));
41 const PositionVector& other,
43 DCHECK_LT(from_index, other.size());
44 PositionVector before(other.begin() + from_index, other.end());
77 ItemPosition ItemPosition::CreateAfter(const ItemPosition& other) { argument
78 DCHECK(other.IsValid());
79 return ItemPosition(CreateAfterImpl(other
40 CreateBeforeImpl( const PositionVector& other, size_t from_index) argument
83 CreateAfterImpl( const PositionVector& other, size_t from_index) argument
[all...]
/external/chromium_org/components/history/core/browser/
H A Durl_row.cc30 URLRow& URLRow::operator=(const URLRow& other) { argument
31 id_ = other.id_;
32 url_ = other.url_;
33 title_ = other.title_;
34 visit_count_ = other.visit_count_;
35 typed_count_ = other.typed_count_;
36 last_visit_ = other.last_visit_;
37 hidden_ = other.hidden_;
41 void URLRow::Swap(URLRow* other) { argument
42 std::swap(id_, other
83 SwapResult(URLResult* other) argument
[all...]
/external/chromium_org/components/policy/core/common/
H A Dpolicy_bundle.cc32 void PolicyBundle::Swap(PolicyBundle* other) { argument
33 policy_bundle_.swap(other->policy_bundle_);
36 void PolicyBundle::CopyFrom(const PolicyBundle& other) { argument
38 for (PolicyBundle::const_iterator it = other.begin();
39 it != other.end(); ++it) {
44 void PolicyBundle::MergeFrom(const PolicyBundle& other) { argument
45 // Iterate over both |this| and |other| in order; skip what's extra in |this|,
49 const_iterator it_other = other.begin();
50 const_iterator end_other = other.end();
59 // |this| has a PolicyMap that |other| does
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dlist_set_unittest.cc99 explicit Wrapped(const Wrapped<T>& other) : value_(other.value_) {} argument
/external/chromium_org/mojo/android/system/src/org/chromium/mojo/system/impl/
H A DDataPipeConsumerHandleImpl.java27 DataPipeConsumerHandleImpl(HandleBase other) { argument
28 super(other);
/external/chromium_org/mojo/embedder/
H A Dscoped_platform_handle.h25 ScopedPlatformHandle(RValue other) : handle_(other.object->release()) {} argument
26 ScopedPlatformHandle& operator=(RValue other) { argument
27 handle_ = other.object->release();
33 void swap(ScopedPlatformHandle& other) { argument
35 handle_ = other.handle_;
36 other.handle_ = temp;
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dshared_data.h27 SharedData(const SharedData<T>& other) : holder_(other.holder_) { argument
31 SharedData<T>& operator=(const SharedData<T>& other) { argument
32 if (other.holder_ == holder_)
35 holder_ = other.holder_;
/external/chromium_org/net/dns/
H A Drecord_parsed.cc71 bool RecordParsed::IsEqual(const RecordParsed* other, bool is_mdns) const { argument
72 DCHECK(other);
74 uint16 other_klass = other->klass_;
81 return name_ == other->name_ &&
83 type_ == other->type_ &&
84 rdata_->IsEqual(other->rdata_.get());
/external/chromium_org/net/tools/balsa/
H A Dsimple_buffer.h62 void Swap(SimpleBuffer* other) { argument
64 storage_ = other->storage_;
65 other->storage_ = tmp;
68 write_idx_ = other->write_idx_;
69 other->write_idx_ = tmp_int;
72 read_idx_ = other->read_idx_;
73 other->read_idx_ = tmp_int;
76 storage_size_ = other->storage_size_;
77 other->storage_size_ = tmp_int;
/external/chromium_org/ppapi/cpp/
H A Daudio_buffer.cc23 AudioBuffer::AudioBuffer(const AudioBuffer& other) : Resource(other) { argument
H A Dhost_resolver.cc36 HostResolver::HostResolver(const HostResolver& other) : Resource(other) { argument
42 HostResolver& HostResolver::operator=(const HostResolver& other) { argument
43 Resource::operator=(other);
H A Dnet_address.cc46 NetAddress::NetAddress(const NetAddress& other) : Resource(other) { argument
52 NetAddress& NetAddress::operator=(const NetAddress& other) { argument
53 Resource::operator=(other);
/external/chromium_org/ppapi/cpp/dev/
H A Dscrollbar_dev.cc34 Scrollbar_Dev::Scrollbar_Dev(const Scrollbar_Dev& other) argument
35 : Widget_Dev(other) {

Completed in 2766 milliseconds

1234567891011>>