Searched defs:offset (Results 151 - 175 of 4056) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSplitTextNodeCommand.cpp38 SplitTextNodeCommand::SplitTextNodeCommand(PassRefPtrWillBeRawPtr<Text> text, int offset) argument
41 , m_offset(offset)
H A DSurroundingTextTest.cpp25 VisibleSelection select(int offset) { return select(offset, offset); } argument
H A DTextInsertionBaseCommand.h54 unsigned offset = 0; local
56 while ((newline = string.find('\n', offset)) != kNotFound) {
57 operation(offset, newline - offset, false);
58 offset = newline + 1;
60 if (!offset)
64 if (length != offset)
65 operation(offset, length - offset, true);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DPaintInvalidationState.cpp59 LayoutSize offset = renderer.isBox() && !renderer.isTableRow() ? toRenderBox(renderer).locationOffset() : LayoutSize(); local
60 m_paintOffset = next.m_paintOffset + offset;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DOutlineValue.h57 int offset() const { return m_offset; } function in class:blink::OutlineValue
58 void setOffset(int offset) { m_offset = offset; } argument
H A DStyleSurroundData.h46 LengthBox offset; member in class:blink::StyleSurroundData
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DSharedBufferReaderTest.cpp94 const int offset = i * bytesPerIteration; local
95 const int bytesRead = reader.readData(&destinationVector[0] + offset, bytesPerIteration);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DProgrammaticScrollAnimator.cpp37 void ProgrammaticScrollAnimator::animateToOffset(FloatPoint offset) argument
40 m_targetOffset = offset;
46 m_scrollableArea->notifyScrollPositionChanged(IntPoint(offset.x(), offset.y()));
62 FloatPoint offset = m_animationCurve->getValue(elapsedTime); local
63 m_scrollableArea->notifyScrollPositionChanged(IntPoint(offset.x(), offset.y()));
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DStringTruncator.cpp44 static inline int textBreakAtOrPreceding(const NonSharedCharacterBreakIterator& it, int offset) argument
46 if (it.isBreak(offset))
47 return offset;
49 int result = it.preceding(offset);
53 static inline int boundedTextBreakFollowing(const NonSharedCharacterBreakIterator& it, int offset, int length) argument
55 int result = it.following(offset);
H A DTextRunIterator.h44 TextRunIterator(const TextRun* textRun, unsigned offset) argument
46 , m_offset(offset)
56 unsigned offset() const { return m_offset; } function in class:blink::TextRunIterator
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTypedArrayBase.h40 bool set(TypedArrayBase<T>* array, unsigned offset) argument
42 return setImpl(array, offset * sizeof(T));
45 bool setRange(const T* data, size_t dataLength, unsigned offset) argument
47 return setRangeImpl(reinterpret_cast<const char*>(data), dataLength * sizeof(T), offset * sizeof(T));
50 bool zeroRange(unsigned offset, size_t length) argument
52 return zeroRangeImpl(offset * sizeof(T), length * sizeof(T));
76 bool checkInboundData(unsigned offset, unsigned pos) const
78 return (offset <= m_length
79 && offset + pos <= m_length
81 && offset
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringView.h53 StringView(PassRefPtr<StringImpl> impl, unsigned offset, unsigned length) argument
55 , m_offset(offset)
58 ASSERT_WITH_SECURITY_IMPLICATION(offset + length <= m_impl->length());
61 void narrow(unsigned offset, unsigned length) argument
63 ASSERT_WITH_SECURITY_IMPLICATION(offset + length <= m_length);
64 m_offset += offset;
H A DTextPosition.cpp57 TextPosition TextPosition::fromOffsetAndLineEndings(unsigned offset, const Vector<unsigned>& lineEndings) argument
59 const unsigned* foundLineEnding = std::lower_bound(lineEndings.begin(), lineEndings.end(), offset);
62 int column = offset - lineStartOffset;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDeviceEmulationParams.h35 WebFloatPoint offset; member in struct:blink::WebDeviceEmulationParams
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DIndexRangeCache.h26 void addRange(GLenum type, unsigned int offset, GLsizei count, const RangeUI &range,
28 bool findRange(GLenum type, unsigned int offset, GLsizei count, RangeUI *rangeOut,
31 void invalidateRange(unsigned int offset, unsigned int size);
40 unsigned int offset; member in struct:rx::IndexRangeCache::IndexRange
44 IndexRange(GLenum type, intptr_t offset, GLsizei count);
55 IndexBounds(const RangeUI &range, unsigned int offset);
/external/chromium_org/third_party/ashmem/
H A Dashmem-dev.c75 int ashmem_pin_region(int fd, size_t offset, size_t len) argument
77 struct ashmem_pin pin = { offset, len };
81 int ashmem_unpin_region(int fd, size_t offset, size_t len) argument
83 struct ashmem_pin pin = { offset, len };
/external/chromium_org/third_party/brotli/src/woff2/
H A Dfont.h38 uint32_t offset; member in struct:woff2::Font::Table
H A Dstore_bytes.h27 inline size_t StoreU32(uint8_t* dst, size_t offset, uint32_t x) { argument
28 dst[offset] = x >> 24;
29 dst[offset + 1] = x >> 16;
30 dst[offset + 2] = x >> 8;
31 dst[offset + 3] = x;
32 return offset + 4;
35 inline size_t Store16(uint8_t* dst, size_t offset, int x) { argument
36 dst[offset] = x >> 8;
37 dst[offset + 1] = x;
38 return offset
41 StoreU32(uint32_t val, size_t* offset, uint8_t* dst) argument
48 Store16(int val, size_t* offset, uint8_t* dst) argument
53 StoreBytes(const uint8_t* data, size_t len, size_t* offset, uint8_t* dst) argument
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftsystem.c189 /* offset :: The position in the data stream to start reading. */
202 unsigned long offset,
209 if ( !count && offset > stream->size )
214 if ( stream->pos != offset )
215 ft_fseek( file, offset, SEEK_SET );
201 ft_ansi_stream_io( FT_Stream stream, unsigned long offset, unsigned char* buffer, unsigned long count ) argument
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2arrst.c231 size_t offset = arrstack->count * arrstack->sizeItem; local
232 void* newPtr = (FT_Byte*)arrstack->ptr + offset;
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dparsepos.h61 * @param newIndex the new text offset.
212 ParsePosition::setIndex(int32_t offset) argument
214 this->index = offset;
/external/chromium_org/third_party/icu/source/common/
H A Dunifilt.cpp37 * filters. Matches a single code point at offset (either one or
41 int32_t& offset,
45 if (offset < limit &&
46 contains(c = text.char32At(offset))) {
47 offset += U16_LENGTH(c);
50 if (offset > limit &&
51 contains(c = text.char32At(offset))) {
52 // Backup offset by 1, unless the preceding character is a
53 // surrogate pair -- then backup by 2 (keep offset pointing at
55 --offset;
40 matches(const Replaceable& text, int32_t& offset, int32_t limit, UBool incremental) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dvp8_decrypt_test.cc30 ptrdiff_t offset) {
32 dst[i] = src[i] ^ test_key[(offset + i) & 15];
29 encrypt_buffer(const uint8_t *src, uint8_t *dst, size_t size, ptrdiff_t offset) argument
H A Dvp9_decrypt_test.cc30 ptrdiff_t offset) {
32 dst[i] = src[i] ^ test_key[(offset + i) & 15];
29 encrypt_buffer(const uint8_t *src, uint8_t *dst, size_t size, ptrdiff_t offset) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_aos_array.c46 * \param offset ptr offset
53 LLVMValueRef offset)
75 ptr = LLVMBuildGEP(builder, base_ptr, &offset, 1, "");
49 lp_build_fetch_rgba_aos_array(struct gallivm_state *gallivm, const struct util_format_description *format_desc, struct lp_type dst_type, LLVMValueRef base_ptr, LLVMValueRef offset) argument

Completed in 552 milliseconds

1234567891011>>