HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 351 - 375 of 9687) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/ui/views/tabs/
abstract_tab_strip_view.h 33 // Set the background offset used by inactive tabs to match the frame image.
34 virtual void SetBackgroundOffset(const gfx::Point& offset) = 0;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
TransformState.cpp 53 void TransformState::translateTransform(const LayoutSize& offset)
56 m_accumulatedTransform->translateRight(offset.width(), offset.height());
58 m_accumulatedTransform->translate(offset.width(), offset.height());
61 void TransformState::translateMappedCoordinates(const LayoutSize& offset)
63 LayoutSize adjustedOffset = (m_direction == ApplyTransformDirection) ? offset : -offset;
70 void TransformState::move(const LayoutSize& offset, TransformAccumulation accumulate)
73 m_accumulatedOffset += offset;
93 LayoutSize offset = m_accumulatedOffset; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextPosition.cpp 56 TextPosition TextPosition::fromOffsetAndLineEndings(unsigned offset, const Vector<unsigned>& lineEndings)
58 const unsigned* foundLineEnding = approximateBinarySearch<unsigned, unsigned>(lineEndings, lineEndings.size(), offset, valueExtractor);
60 if (offset > *foundLineEnding)
63 int column = offset - lineStartOffset;
  /external/chromium_org/third_party/icu/source/common/unicode/
parseerr.h 34 * <p>The line, offset, and context fields are optional; parsing
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
70 * this is the offset from the start of the text. If the parser
74 int32_t offset; member in struct:UParseError
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600.h 103 #define CTX_RANGE_ID(offset) ((((offset - RANGE_OFFSET_START) >> 2) >> HASH_SHIFT) & 255)
104 #define CTX_BLOCK_ID(offset) (((offset - RANGE_OFFSET_START) >> 2) & ((1 << HASH_SHIFT) - 1))
152 /* Offset of the next free result after current query data */
198 unsigned offset, unsigned value);
213 uint32_t offset, uint32_t value,
220 uint32_t offset, uint32_t value,
224 uint32_t offset, uint32_t value,
228 #define r600_pipe_state_add_reg_bo(state, offset, value, bo, usage) _r600_pipe_state_add_reg_bo(rctx, state, offset, value, CTX_RANGE_ID(offset), C (…)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_debug.h 38 unsigned offset; /* current gtt offset */ member in struct:debug_stream
39 char *ptr; /* pointer to gtt offset zero */
40 char *end; /* pointer to gtt offset zero */
  /external/chromium_org/third_party/skia/src/animator/
SkTextOnPath.h 24 SkScalar offset; member in class:SkTextOnPath
  /external/chromium_org/webkit/browser/fileapi/quota/
open_file_handle_context.cc 26 int64 offset,
30 if (offset > maximum_written_offset_) {
31 *growth = offset - maximum_written_offset_;
32 maximum_written_offset_ = offset;
  /external/chromium_org/webkit/common/
resource_request_body.cc 22 uint64 offset, uint64 length,
25 elements_.back().SetToFilePathRange(file_path, offset, length,
35 const GURL& url, uint64 offset, uint64 length,
38 elements_.back().SetToFileSystemUrlRange(url, offset, length,
  /external/clang/test/CodeGen/
2003-06-26-CFECrash.c 4 long offset; member in struct:min_info
  /external/elfutils/backends/
alpha_corenote.c 41 { .offset = 0, .regno = 0, .count = 31, .bits = 64 }, /* r0-r30 */
42 { .offset = 32 * 8, .regno = 64, .count = 1, .bits = 64 }, /* pc */
43 { .offset = 33 * 8, .regno = 66, .count = 1, .bits = 64 }, /* unique */
49 { .offset = 0, .regno = 32, .count = 32, .bits = 64 }, /* f0-f30, fpcr */
  /external/icu4c/common/unicode/
parseerr.h 34 * <p>The line, offset, and context fields are optional; parsing
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
70 * this is the offset from the start of the text. If the parser
74 int32_t offset; member in struct:UParseError
  /external/mesa3d/src/gallium/drivers/r600/
r600.h 103 #define CTX_RANGE_ID(offset) ((((offset - RANGE_OFFSET_START) >> 2) >> HASH_SHIFT) & 255)
104 #define CTX_BLOCK_ID(offset) (((offset - RANGE_OFFSET_START) >> 2) & ((1 << HASH_SHIFT) - 1))
152 /* Offset of the next free result after current query data */
198 unsigned offset, unsigned value);
213 uint32_t offset, uint32_t value,
220 uint32_t offset, uint32_t value,
224 uint32_t offset, uint32_t value,
228 #define r600_pipe_state_add_reg_bo(state, offset, value, bo, usage) _r600_pipe_state_add_reg_bo(rctx, state, offset, value, CTX_RANGE_ID(offset), C (…)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_debug.h 38 unsigned offset; /* current gtt offset */ member in struct:debug_stream
39 char *ptr; /* pointer to gtt offset zero */
40 char *end; /* pointer to gtt offset zero */
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
UnknownLengthHttpInputStream.java 33 @Override public int read(byte[] buffer, int offset, int count) throws IOException {
34 checkOffsetAndCount(buffer.length, offset, count);
39 int read = in.read(buffer, offset, count);
45 cacheWrite(buffer, offset, read);
  /external/proguard/src/proguard/classfile/editor/
InstructionAdder.java 58 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
61 codeAttributeComposer.appendInstruction(offset, instruction);
65 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
74 codeAttributeComposer.appendInstruction(offset, newConstantInstruction);
  /external/skia/src/animator/
SkTextOnPath.h 24 SkScalar offset; member in class:SkTextOnPath
  /frameworks/av/drm/common/
DrmConvertedStatus.cpp 25 offset(_offset) {
  /frameworks/av/include/drm/
DrmConvertedStatus.h 26 * data/checksum data and the offset. Offset is going to be used in the case of close
47 * @param[in] _offset Offset value
61 int offset; member in class:android::DrmConvertedStatus
  /frameworks/av/media/libstagefright/
FileSource.cpp 46 FileSource::FileSource(int fd, int64_t offset, int64_t length)
48 mOffset(offset),
55 CHECK(offset >= 0);
87 ssize_t FileSource::readAt(off64_t offset, void *data, size_t size) {
95 if (offset >= mLength) {
98 int64_t numAvailable = mLength - offset;
106 return readAtDRM(offset, data, size);
108 off64_t result = lseek64(mFd, offset + mOffset, SEEK_SET);
110 ALOGE("seek to %lld failed", offset + mOffset);
158 ssize_t FileSource::readAtDRM(off64_t offset, void *data, size_t size)
    [all...]
  /frameworks/av/media/libstagefright/foundation/
ABuffer.cpp 56 void ABuffer::setRange(size_t offset, size_t size) {
57 CHECK_LE(offset, mCapacity);
58 CHECK_LE(offset + size, mCapacity);
60 mRangeOffset = offset;
  /frameworks/av/media/mtp/
MtpPacket.h 64 uint16_t getUInt16(int offset) const;
65 uint32_t getUInt32(int offset) const;
66 void putUInt16(int offset, uint16_t value);
67 void putUInt32(int offset, uint32_t value);
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattServerCallback.java 59 * @param offset Offset into the value of the characteristic
63 int offset, BluetoothGattCharacteristic characteristic) {
78 * @param offset The offset given for the value
84 int offset, byte[] value) {
95 * @param offset Offset into the value of the characteristic
99 int offset, BluetoothGattDescriptor descriptor) {
114 * @param offset The offset given for the valu
    [all...]
  /frameworks/base/core/java/android/speech/tts/
SynthesisCallback.java 62 * @param offset The offset into {@code buffer} where the audio data starts.
67 public int audioAvailable(byte[] buffer, int offset, int length);
  /frameworks/base/core/java/android/widget/
AccessibilityIterators.java 51 public int[] following(int offset) {
56 if (offset >= mText.length()) {
60 if (offset < 0) {
63 final int currentLine = mLayout.getLineForOffset(offset);
64 if (getLineEdgeIndex(currentLine, DIRECTION_START) == offset) {
79 public int[] preceding(int offset) {
84 if (offset <= 0) {
88 if (offset > mText.length()) {
91 final int currentLine = mLayout.getLineForOffset(offset);
92 if (getLineEdgeIndex(currentLine, DIRECTION_END) + 1 == offset) {
    [all...]

Completed in 724 milliseconds

<<11121314151617181920>>