HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 226 - 250 of 4718) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/animator/
SkTextOnPath.h 32 SkScalar offset; member in class:SkTextOnPath
  /external/webkit/Source/JavaScriptCore/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
66 * this is the offset from the start of the text. If the parser
70 int32_t offset; member in struct:UParseError
  /external/webkit/Source/JavaScriptCore/runtime/
PutPropertySlot.h 1 // -*- mode: c++; c-basic-offset: 4 -*-
48 void setExistingProperty(JSObject* base, size_t offset)
52 m_offset = offset;
55 void setNewProperty(JSObject* base, size_t offset)
59 m_offset = offset;
  /external/webkit/Source/WebCore/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
66 * this is the offset from the start of the text. If the parser
70 int32_t offset; member in struct:UParseError
  /external/webkit/Source/WebKit/mac/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
66 * this is the offset from the start of the text. If the parser
70 int32_t offset; member in struct:UParseError
  /frameworks/base/core/java/android/speech/tts/
SynthesisCallback.java 61 * @param offset The offset into {@code buffer} where the audio data starts.
66 public int audioAvailable(byte[] buffer, int offset, int length);
  /frameworks/base/drm/common/
DrmConvertedStatus.cpp 25 offset(_offset) {
  /frameworks/base/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/base/media/libstagefright/
FileSource.cpp 40 FileSource::FileSource(int fd, int64_t offset, int64_t length)
42 mOffset(offset),
49 CHECK(offset >= 0);
81 ssize_t FileSource::readAt(off64_t offset, void *data, size_t size) {
89 if (offset >= mLength) {
92 int64_t numAvailable = mLength - offset;
100 return readAtDRM(offset, data, size);
102 off64_t result = lseek64(mFd, offset + mOffset, SEEK_SET);
104 LOGE("seek to %lld failed", offset + mOffset);
158 ssize_t FileSource::readAtDRM(off64_t offset, void *data, size_t size)
    [all...]
  /frameworks/base/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/base/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);
  /libcore/luni/src/main/java/java/io/
FilterWriter.java 78 * starting at position {@code offset} to the target writer.
82 * @param offset
90 public void write(char[] buffer, int offset, int count) throws IOException {
92 out.write(buffer, offset, count);
119 * @param offset
127 public void write(String str, int offset, int count) throws IOException {
129 out.write(str, offset, count);
  /libcore/luni/src/main/java/java/nio/
ReadWriteDirectByteBuffer.java 37 new ReadWriteDirectByteBuffer(other.block, other.capacity(), other.offset);
54 ReadWriteDirectByteBuffer(MemoryBlock block, int capacity, int offset) {
55 super(block, capacity, offset);
87 this.block.pokeByte(offset + position++, value);
94 this.block.pokeByte(offset + index, value);
101 this.block.pokeByteArray(offset + position, src, srcOffset, byteCount);
108 this.block.pokeCharArray(offset + position, src, srcOffset, charCount, order.needsSwap);
114 this.block.pokeDoubleArray(offset + position, src, srcOffset, doubleCount, order.needsSwap);
120 this.block.pokeFloatArray(offset + position, src, srcOffset, floatCount, order.needsSwap);
126 this.block.pokeIntArray(offset + position, src, srcOffset, intCount, order.needsSwap)
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
Deflater.java 211 public synchronized int deflate(byte[] buf, int offset, int byteCount) {
212 return deflateImpl(buf, offset, byteCount, flushParm);
228 public synchronized int deflate(byte[] buf, int offset, int byteCount, int flush) {
232 return deflateImpl(buf, offset, byteCount, flush);
235 private synchronized int deflateImpl(byte[] buf, int offset, int byteCount, int flush) {
237 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
241 return deflateImpl(buf, offset, byteCount, streamHandle, flush);
244 private native int deflateImpl(byte[] buf, int offset, int byteCount, long handle, int flushParm);
380 public synchronized void setDictionary(byte[] buf, int offset, int byteCount) {
382 Arrays.checkOffsetAndCount(buf.length, offset, byteCount)
    [all...]
  /libcore/luni/src/main/java/javax/crypto/spec/
IvParameterSpec.java 54 * <code>offset</code>.
57 * if the specified buffer is null or <code>offset</code> and
61 * if <code>offset</code> or <code>byteCount</code> are negative.
63 public IvParameterSpec(byte[] iv, int offset, int byteCount) {
64 if ((iv == null) || (iv.length - offset < byteCount)) {
67 Arrays.checkOffsetAndCount(iv.length, offset, byteCount);
69 System.arraycopy(iv, offset, this.iv, 0, byteCount);
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 27 * Seeks to the absolute position {@code offset}, measured in bytes from the start.
29 public abstract void seek(int offset);
  /libcore/luni/src/main/java/libcore/net/http/
UnknownLengthHttpInputStream.java 35 @Override public int read(byte[] buffer, int offset, int count) throws IOException {
36 Arrays.checkOffsetAndCount(buffer.length, offset, count);
41 int read = in.read(buffer, offset, count);
47 cacheWrite(buffer, offset, read);
  /libcore/luni/src/main/java/org/w3c/dom/
Text.java 42 * Breaks this node into two nodes at the specified <code>offset</code>,
44 * will contain all the content up to the <code>offset</code> point. A
46 * after the <code>offset</code> point, is returned. If the original
48 * of the original node. When the <code>offset</code> is equal to the
50 * @param offset The 16-bit unit offset at which to split, starting from
54 * INDEX_SIZE_ERR: Raised if the specified offset is negative or greater
58 public Text splitText(int offset)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AssetFileAddress.java 25 * also the offset in the file and the length of this data. This class encapsulates these three.
32 public AssetFileAddress(final String filename, final long offset, final long length) {
34 mOffset = offset;
46 final long offset, final long length) {
50 return new AssetFileAddress(filename, offset, length);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);

Completed in 1640 milliseconds

1 2 3 4 5 6 7 8 91011>>