Searched refs:m_base (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | VisibleSelection.cpp | 59 : m_base(pos) in VisibleSelection() 69 : m_base(base) in VisibleSelection() 79 : m_base(pos.deepEquivalent()) in VisibleSelection() 89 : m_base(base.deepEquivalent()) in VisibleSelection() 99 : m_base(range->startPosition()) in VisibleSelection() 109 : m_base(other.m_base) in VisibleSelection() 125 m_base = other.m_base; in operator =() 152 Position oldBase = m_base; in setBase() 153 m_base = position; in setBase() 155 if (m_base != oldBase) in setBase() [all …]
|
D | VisibleSelection.h | 71 Position base() const { return m_base; } in base() 78 …VisiblePosition visibleBase() const { return VisiblePosition(m_base, isRange() ? (isBaseFirst() ? … in visibleBase() 162 Position m_base; // Where the first click happened variable
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | PODArena.h | 159 m_base = static_cast<uint8_t*>(m_allocator->allocate(size)); in Chunk() 166 m_allocator->free(m_base); in ~Chunk() 180 void* result = m_base + m_currentOffset; in allocate() 187 uint8_t* m_base; variable
|
/external/chromium_org/third_party/WebKit/Source/platform/heap/ |
D | Heap.cpp | 117 : m_base(base) in MemoryRegion() 125 return m_base <= addr && addr < (m_base + m_size); in contains() 131 return contains(other.m_base) && contains(other.m_base + other.m_size - 1); in contains() 137 int err = munmap(m_base, m_size); in release() 140 bool success = VirtualFree(m_base, 0, MEM_RELEASE); in release() 149 int err = mprotect(m_base, m_size, PROT_READ | PROT_WRITE); in commit() 151 madvise(m_base, m_size, MADV_NORMAL); in commit() 156 void* result = VirtualAlloc(m_base, m_size, MEM_COMMIT, PAGE_READWRITE); in commit() 164 int err = mprotect(m_base, m_size, PROT_NONE); in decommit() 167 madvise(m_base, m_size, MADV_DONTNEED); in decommit() [all …]
|
/external/eigen/Eigen/src/Core/ |
D | Functors.h | 557 …m_base(padd(pset1<Packet>(low), pmul(pset1<Packet>(step),plset<Scalar>(-packet_traits<Scalar>::siz… 562 m_base = padd(m_base, pset1<Packet>(m_step)); 567 …EIGEN_STRONG_INLINE const Packet packetOp(Index) const { return m_base = padd(m_base,m_packetStep)… 572 mutable Packet m_base;
|