Searched refs:m_base (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisibleSelection.cpp59 : m_base(pos)
69 : m_base(base)
79 : m_base(pos.deepEquivalent())
89 : m_base(base.deepEquivalent())
99 : m_base(range->startPosition())
109 : m_base(other.m_base)
125 m_base = other.m_base;
152 Position oldBase = m_base;
[all...]
H A DVisibleSelection.h71 Position base() const { return m_base; }
78 VisiblePosition visibleBase() const { return VisiblePosition(m_base, isRange() ? (isBaseFirst() ? UPSTREAM : DOWNSTREAM) : affinity()); }
162 Position m_base; // Where the first click happened member in class:blink::VisibleSelection
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODArena.h159 m_base = static_cast<uint8_t*>(m_allocator->allocate(size));
166 m_allocator->free(m_base);
180 void* result = m_base + m_currentOffset;
187 uint8_t* m_base; member in class:blink::FINAL::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeap.cpp117 : m_base(base)
125 return m_base <= addr && addr < (m_base + m_size);
131 return contains(other.m_base) && contains(other.m_base + other.m_size - 1);
137 int err = munmap(m_base, m_size);
140 bool success = VirtualFree(m_base, 0, MEM_RELEASE);
149 int err = mprotect(m_base, m_size, PROT_READ | PROT_WRITE);
151 madvise(m_base, m_size, MADV_NORMAL);
156 void* result = VirtualAlloc(m_base, m_siz
178 Address m_base; member in class:blink::MemoryRegion
[all...]
/external/eigen/Eigen/src/Core/
H A DFunctors.h557 m_base(padd(pset1<Packet>(low), pmul(pset1<Packet>(step),plset<Scalar>(-packet_traits<Scalar>::size)))) {}
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; member in struct:Eigen::internal::linspaced_op_impl

Completed in 1069 milliseconds