Searched defs:offset (Results 101 - 125 of 1540) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/html/canvas/
H A DUint16Array.h43 void set(TypedArrayBase<unsigned short>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned short>::set(array, offset, ec); } argument
H A DUint32Array.h43 void set(TypedArrayBase<unsigned int>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned int>::set(array, offset, ec); } argument
H A DUint8Array.h43 void set(TypedArrayBase<unsigned char>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned char>::set(array, offset, ec); } argument
/external/webkit/Source/WebCore/html/parser/
H A DCSSPreloadScanner.cpp151 size_t offset = 0; local
154 while (reducedLength && isHTMLSpace(characters[offset])) {
155 ++offset;
158 while (reducedLength && isHTMLSpace(characters[offset + reducedLength - 1]))
162 && (characters[offset] == 'u' || characters[offset] == 'U')
163 && (characters[offset + 1] == 'r' || characters[offset + 1] == 'R')
164 && (characters[offset + 2] == 'l' || characters[offset
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DStringTruncator.cpp45 static inline int textBreakAtOrPreceding(TextBreakIterator* it, int offset) argument
47 if (isTextBreak(it, offset))
48 return offset;
50 int result = textBreakPreceding(it, offset);
54 static inline int boundedTextBreakFollowing(TextBreakIterator* it, int offset, int length) argument
56 int result = textBreakFollowing(it, offset);
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DGlyphPageTreeNodeHaiku.cpp41 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* characterBuffer, unsigned bufferLength, const SimpleFontData* fontData) argument
57 setGlyphDataForIndex(offset + i, 0, 0);
60 setGlyphDataForIndex(offset + i, character, fontData);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DTransparencyLayer.h54 offset = rect.topLeft();
58 painter.translate(-offset);
71 QPoint offset; member in struct:WebCore::TransparencyLayer
/external/webkit/Source/WebCore/platform/graphics/win/
H A DGlyphPageTreeNodeCairoWin.cpp36 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) argument
59 setGlyphDataForIndex(offset + i, 0, 0);
61 setGlyphDataForIndex(offset + i, glyph, fontData);
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGlyphPageTreeNodeWinCE.cpp36 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) argument
49 setGlyphDataForIndex(offset + i, buffer[i], fontData);
51 setGlyphDataForIndex(offset + i, buffer[i], 0);
63 setGlyphDataForIndex(offset + i, buffer[i], fontData);
65 setGlyphDataForIndex(offset + i, buffer[i], 0);
73 setGlyphDataForIndex(offset + i, buffer[i], fontData);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DGlyphMapWx.cpp38 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) argument
53 setGlyphDataForIndex(offset + i, character, fontData);
/external/webkit/Source/WebCore/rendering/style/
H A DStyleDashboardRegion.h38 LengthBox offset; member in struct:WebCore::StyleDashboardRegion
49 return type == o.type && offset == o.offset && label == o.label;
H A DStyleSurroundData.h46 LengthBox offset; member in class:WebCore::StyleSurroundData
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapeDeprecatedFunctions.c30 OSErr WebGetDiskFragment(const FSSpec *fileSpec, UInt32 offset, UInt32 length, ConstStr63Param fragName, CFragLoadOptions options, CFragConnectionID *connID, Ptr *mainAddr, Str255 errMessage) argument
32 return GetDiskFragment(fileSpec, offset, length, fragName, options, connID, mainAddr, errMessage);
/external/zlib/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs39 public int Put(byte[] source, int offset, int count) argument
44 _buffer[(_tail+i) % _capacity] = source[offset+i];
61 public int Get(byte[] destination, int offset, int count) argument
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
H A DInflater.cs51 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
54 public override void Add(byte[] data, int offset, int count) argument
57 if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException();
58 if ((offset+count) > data.Length) throw new ArgumentException();
61 int inputIndex = offset;
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
H A DMacSpiTest.java143 protected void engineUpdate(byte[] input, int offset, int len) { argument
/external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
H A DMyKeyAgreementSpi.java58 protected int engineGenerateSecret(byte[] sharedSecret, int offset) argument
H A DMyMacSpi.java60 protected void engineUpdate(byte[] input, int offset, int len) { argument
61 if (offset >= 0 && len >= 0) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DScannerParseLargeFileBenchmarkTest.java58 public int read(char[] buf, int offset, int length) { argument
66 for (int i = offset; i < length; i++) {
73 return length - offset;
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringReader.java132 * stores them at <code>offset</code> in the character array
138 * @param offset
139 * offset in buf to store the read characters
148 public int read(char buf[], int offset, int count) throws IOException { argument
150 if (0 <= offset && offset <= buf.length && 0 <= count
151 && count <= buf.length - offset) {
159 str.getChars(pos, end, buf, offset);
/external/bluetooth/bluez/tools/
H A Dcsr_h4.c89 int len, offset = 3; local
133 len = read(fd, rp + offset, sizeof(rp) - offset);
134 offset += len;
135 } while (offset < rp[2] + 3);
/external/bluetooth/glib/gio/
H A Dgseekable.c86 * Returns: the offset from the beginning of the buffer.
123 * @offset: a #goffset.
129 * Seeks in the stream by the given @offset, modified by @type.
141 goffset offset,
152 return (* iface->seek) (seekable, offset, type, cancellable, error);
178 * @offset: a #goffset.
183 * Truncates a stream with a given #offset.
197 goffset offset,
207 return (* iface->truncate_fn) (seekable, offset, cancellable, error);
140 g_seekable_seek(GSeekable *seekable, goffset offset, GSeekType type, GCancellable *cancellable, GError **error) argument
196 g_seekable_truncate(GSeekable *seekable, goffset offset, GCancellable *cancellable, GError **error) argument
/external/bluetooth/glib/tests/
H A Dutf8-validate.c35 gint offset; member in struct:__anon722
281 gint offset,
289 if (result != valid || end - text != offset)
303 valid ? "TRUE" : "FALSE", offset,
316 test[i].offset, test[i].valid);
278 do_test(gint index, const gchar *text, gint max_len, gint offset, gboolean valid) argument
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DJDKMessageDigest.java34 int offset,
37 digest.update(input, offset, len);
32 engineUpdate( byte[] input, int offset, int len) argument
/external/chromium/chrome/browser/extensions/
H A Dextension_omnibox_unittest.cc18 int offset, int length,
22 style->SetInteger("offset", offset);
31 EXPECT_EQ(expected[i].offset, actual[i].offset) << "Index:" << i;
98 // Try moving the "dim/match" style pair at offset 9. Output should be the
17 AppendStyle(const std::string& type, int offset, int length, ListValue* styles) argument

Completed in 2902 milliseconds

1234567891011>>