Searched defs:offset (Results 126 - 150 of 1540) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/gtk/tabs/
H A Ddragged_tab_gtk.h36 // Sets the offset of the mouse from the upper left corner of the tab.
37 void set_mouse_tab_offset(const gfx::Point& offset) { argument
38 mouse_tab_offset_ = offset;
121 // The unscaled offset of the mouse from the top left of the dragged tab.
122 // This is used to maintain an appropriate offset for the mouse pointer when
/external/chromium/chrome/browser/ui/touch/tabs/
H A Dtouch_tab.h31 // Set the background offset used to match the image in the inactive tab
33 void set_background_offset(const gfx::Point& offset) { argument
34 background_offset_ = offset;
74 // The offset used to paint the inactive background image.
/external/chromium/chrome/browser/ui/views/infobars/
H A Dlink_infobar.cc52 size_t offset; local
53 string16 message_text = delegate->GetMessageTextWithOffset(&offset);
54 DCHECK_NE(string16::npos, offset);
55 label_1_ = CreateLabel(message_text.substr(0, offset));
62 label_2_ = CreateLabel(message_text.substr(offset));
/external/chromium/net/ftp/
H A Dftp_directory_listing_parser_ls.cc72 size_t* offset,
74 // The column offset can be arbitrarily large if some fields
96 *offset = i;
103 // sure no column offset works above (this is a more strict way).
110 *offset = i;
70 DetectColumnOffsetAndModificationTime(const std::vector<string16>& columns, const base::Time& current_time, size_t* offset, base::Time* modification_time) argument
/external/clang/test/Analysis/
H A Dfree.c68 void t15 (char **x, int offset) { argument
70 free(x[offset]); // no-warning
/external/collada/src/dae/
H A DdaeMetaAny.cpp21 daeElement *daeMetaAny::placeElement( daeElement *parent, daeElement *child, daeUInt &ordinal, daeInt offset, daeElement* before, daeElement *after ) { argument
23 (void)offset;
H A DdaeMetaSequence.cpp19 daeElement *daeMetaSequence::placeElement( daeElement *parent, daeElement *child, daeUInt &ordinal, daeInt offset, daeElement* before, daeElement *after ) { argument
20 (void)offset;
/external/e2fsprogs/lib/ext2fs/
H A Ddblist_dir.c32 int offset,
26 ext2fs_dblist_dir_iterate(ext2_dblist dblist, int flags, char *block_buf, int (*func)(ext2_ino_t dir, int entry, struct ext2_dir_entry *dirent, int offset, int blocksize, char *buf, void *priv_data), void *priv_data) argument
H A Dunlink.c34 int offset,
59 if (offset)
33 unlink_proc(struct ext2_dir_entry *dirent, int offset, int blocksize EXT2FS_ATTR((unused)), char *buf EXT2FS_ATTR((unused)), void *priv_data) argument
/external/elfutils/libdw/
H A Ddwarf_getaranges.c71 3. A 4-byte or 8-byte offset into the .debug_info section. [...]
74 an address (or the offset portion of an address for segmented
95 Dwarf_Word offset; local
97 offset = read_4ubyte_unaligned_inc (dbg, readp);
99 offset = read_8ubyte_unaligned_inc (dbg, readp);
113 //arange_info->offset = offset;
141 /* We store the actual CU DIE offset, not the CU header offset. */
143 + offset);
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIAttributeCollection.java30 * Returns the attribute descriptor at a given offset.
32 * @param offset attribute offset [must be in [0, size()) range; input not checked]
35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
37 Attribute_info get (int offset); argument
74 * Replaces the Attribute_info descriptor at a given offset. No duplicate
79 * @param offset attribute offset [must be in [0, size()) range; input not checked]
81 * @return previous attribute descriptor at this offset [never null]
83 * @throws IndexOutOfBoundsException if 'offset' i
85 set(int offset, Attribute_info attribute) argument
95 remove(int offset) argument
[all...]
H A DIFieldCollection.java30 * Returns {@link Field_info} descriptor at a given offset.
32 * @param offset field offset [must be in [0, size()) range; input not checked]
35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
37 Field_info get (int offset); argument
75 * @return new field's offset
80 * Replaces the Field_info descriptor at a given offset. No duplicate
85 * @param offset field offset [must be in [0, size()) range; input not checked]
87 * @return previous field descriptor at this offset [neve
91 set(int offset, Field_info field) argument
[all...]
H A DIMethodCollection.java30 * Returns {@link Method_info} descriptor at a given offset.
32 * @param offset method offset [must be in [0, size()) range; input not checked]
35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
37 Method_info get (int offset); argument
77 * Replaces the Method_info descriptor at a given offset. No duplicate
82 * @param offset method offset [must be in [0, size()) range; input not checked]
84 * @return previous method descriptor at this offset [never null]
86 * @throws IndexOutOfBoundsException if 'offset' i
88 set(int offset, Method_info method) argument
101 remove(int offset) argument
[all...]
H A DInterfaceCollection.java26 public int get (final int offset) argument
28 return m_interfaces.get (offset);
89 public int set (final int offset, final int interface_index) argument
91 return m_interfaces.set (offset, interface_index);
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DDeclaredExceptionTable.java26 public int get (final int offset) argument
28 return m_exceptions.get (offset);
87 public int set (final int offset, final int exception_index) argument
89 return m_exceptions.set (offset, exception_index);
H A DExceptionHandlerTable.java27 public Exception_info get (final int offset) argument
29 return (Exception_info) m_exceptions.get (offset);
93 public Exception_info set (final int offset, final Exception_info exception) argument
95 return (Exception_info) m_exceptions.set (offset, exception);
/external/emma/core/java12/com/vladium/util/
H A DByteArrayIStream.java53 public final int read (final byte [] buf, final int offset, int length) argument
56 $assert.ASSERT ((offset >= 0) && (offset <= buf.length) &&
57 (length >= 0) && ((offset + length) <= buf.length),
58 "invalid input (" + buf.length + ", " + offset + ", " + length + ")");
70 for (int i = 0; i < length; ++ i) buf [offset + i] = mbuf [pos + i];
72 System.arraycopy (mbuf, pos, buf, offset, length);
/external/freetype/src/psnames/
H A Dpstables.h4073 int offset = ( (int)p[0] << 8 ) | p[1]; local
4074 const unsigned char* q = ft_adobe_glyph_list + offset;
/external/guava/src/com/google/common/collect/
H A DImmutableSortedAsList.java31 ImmutableSortedAsList(Object[] array, int offset, int size, argument
33 super(array, offset, size);
60 offset() + fromIndex, offset() + toIndex).asList();
/external/icu4c/layout/
H A DKhmerLayoutEngine.cpp44 le_int32 KhmerOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
51 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
75 le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
H A DOpenTypeTables.h33 Offset offset; member in struct:TagAndOffsetRecord
H A DThaiLayoutEngine.cpp59 le_int32 ThaiLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
65 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
90 glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStorage);
100 void ThaiLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument
107 if (chars == NULL || offset < 0 || count < 0) {
H A DTibetanLayoutEngine.cpp50 le_int32 TibetanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
57 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
81 le_int32 outCharCount = TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
/external/iproute2/tc/
H A Dem_nbyte.c45 unsigned long offset = 0, layer = TCF_LAYER_NETWORK; local
66 offset = bstrtoul(a);
67 if (offset == ULONG_MAX)
68 return PARSE_ERR(a, "nbyte: invalid offset, " \
93 return PARSE_ERR(a, "nbyte: offset required");
97 nb.off = (__u16) offset;
H A Dem_u32.c41 unsigned long key, mask, offmask = 0, offset; local
83 return PARSE_ERR(a, "u32: missing offset");
90 offset = strtoul(buf, NULL, 0);
94 return PARSE_ERR(a, "u32: missing offset");
95 offset = bstrtoul(a);
97 offset = bstrtoul(a);
99 if (offset == ULONG_MAX)
100 return PARSE_ERR(a, "u32: invalid offset");
112 key <<= 24 - ((offset & 3) * 8);
113 mask <<= 24 - ((offset
[all...]

Completed in 805 milliseconds

1234567891011>>