Searched refs:start (Results 276 - 300 of 5526) sorted by relevance

<<11121314151617181920>>

/external/parameter-framework/upstream/test/functional-tests/
H A DBasic.cpp50 CHECK_NOTHROW(start());
60 CHECK_NOTHROW(start());
77 REQUIRE_NOTHROW(pfw.start());
88 REQUIRE_NOTHROW(pfw.start());
119 CHECK_THROWS_AS(mPf->start(), Exception);
136 CHECK_THROWS_AS(mPf->start(), Exception);
142 CHECK_THROWS_AS(mPf->start(), Exception);
148 CHECK_NOTHROW(mPf->start());
160 CHECK_THROWS_AS(mPf->start(), Exception);
165 CHECK_NOTHROW(mPf->start());
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSpannableString.java28 public void setSpan(Object what, int start, int end, int flags) { argument
29 spans.put(what, new SpanHolder(start, end, flags) );
44 if ( (h.start <= queryStart && h.end >= queryStart) ||
45 (h.start <= queryEnd && h.end >= queryEnd) ||
46 (h.start >= queryStart && h.end <= queryEnd) ) {
59 return spanHolder.start;
76 public int start; field in class:ShadowSpannableString.SpanHolder
80 public SpanHolder(int start, int end, int flags) { argument
81 this.start = start;
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBidiLine.java72 * setTrailingWSStart() sets the start index for a trailing
88 int start = bidi.length;
97 if (dirProps[start - 1] == Bidi.B) {
98 bidi.trailingWSStart = start; /* currently == bidi.length */
102 while (start > 0 &&
103 (Bidi.DirPropFlag(dirProps[start - 1]) & Bidi.MASK_WS) != 0) {
104 --start;
108 while (start > 0 && levels[start - 1] == paraLevel) {
109 --start;
115 setLine(Bidi paraBidi, int start, int limit) argument
[all...]
H A DStringPrepParseException.java186 int start = (pos <= PARSE_CONTEXT_LEN)? 0 : (pos - (PARSE_CONTEXT_LEN-1));
187 int len = (start <= PARSE_CONTEXT_LEN)? start : PARSE_CONTEXT_LEN;
188 preContext.append(str,start,len);
197 int start = pos;
198 int len = str.length - start;
199 postContext.append(str,start,len);
H A DMessagePatternUtil.java422 private static MessageNode buildMessageNode(MessagePattern pattern, int start, int limit) { argument
423 int prevPatternIndex = pattern.getPart(start).getLimit();
425 for (int i = start + 1;; ++i) {
451 private static ArgNode buildArgNode(MessagePattern pattern, int start, int limit) { argument
453 MessagePattern.Part part = pattern.getPart(start);
455 part = pattern.getPart(++start); // ARG_NAME or ARG_NUMBER
460 ++start;
464 node.typeName = pattern.getSubstring(pattern.getPart(start++));
465 if (start < limit) {
467 node.style = pattern.getSubstring(pattern.getPart(start));
493 buildChoiceStyleNode(MessagePattern pattern, int start, int limit) argument
512 buildPluralStyleNode(MessagePattern pattern, int start, int limit, MessagePattern.ArgType argType) argument
541 buildSelectStyleNode(MessagePattern pattern, int start, int limit) argument
[all...]
H A DArabicShaping.java68 * @param sourceStart The start of the range of text to convert
72 * @param destStart The start of the range of the destination buffer to use.
92 throw new IllegalArgumentException("bad source start (" + sourceStart +
101 throw new IllegalArgumentException("bad dest start (" + destStart +
138 * @param start The start of the range of text to convert
142 public void shape(char[] source, int start, int length) throws ArabicShapingException { argument
146 shape(source, start, length, source, start, length);
284 * 1. BEGIN always refers to the start addres
825 shapeToArabicDigitsWithContext(char[] dest, int start, int length, char digitBase, boolean lastStrongWasAL) argument
860 invertBuffer(char[] buffer, int start, int length) argument
937 countSpacesLeft(char[] dest, int start, int count) argument
948 countSpacesRight(char[] dest, int start, int count) argument
1160 shiftArray(char [] dest,int start, int e, char subChar) argument
1178 flipArray(char [] dest, int start, int e, int w) argument
1234 handleGeneratedSpaces(char[] dest, int start, int length) argument
1353 expandCompositCharAtBegin(char[] dest,int start, int length, int lacount) argument
1383 expandCompositCharAtEnd(char[] dest,int start, int length, int lacount) argument
1410 expandCompositCharAtNear(char[] dest,int start, int length, int yehHamzaOption, int seenTailOption, int lamAlefOption) argument
1465 expandCompositChar(char[] dest, int start, int length, int lacount, int shapingMode) argument
1559 normalize(char[] dest, int start, int length) argument
1582 deshapeNormalize(char[] dest, int start, int length) argument
1616 shapeUnicode(char[] dest, int start, int length, int destSize, int tashkeelFlag) argument
1769 deShapeUnicode(char[] dest, int start, int length, int destSize) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiLine.java71 * setTrailingWSStart() sets the start index for a trailing
87 int start = bidi.length;
96 if (dirProps[start - 1] == Bidi.B) {
97 bidi.trailingWSStart = start; /* currently == bidi.length */
101 while (start > 0 &&
102 (Bidi.DirPropFlag(dirProps[start - 1]) & Bidi.MASK_WS) != 0) {
103 --start;
107 while (start > 0 && levels[start - 1] == paraLevel) {
108 --start;
114 setLine(Bidi paraBidi, int start, int limit) argument
[all...]
H A DMessagePatternUtil.java458 private static MessageNode buildMessageNode(MessagePattern pattern, int start, int limit) { argument
459 int prevPatternIndex = pattern.getPart(start).getLimit();
461 for (int i = start + 1;; ++i) {
487 private static ArgNode buildArgNode(MessagePattern pattern, int start, int limit) { argument
489 MessagePattern.Part part = pattern.getPart(start);
491 part = pattern.getPart(++start); // ARG_NAME or ARG_NUMBER
496 ++start;
500 node.typeName = pattern.getSubstring(pattern.getPart(start++));
501 if (start < limit) {
503 node.style = pattern.getSubstring(pattern.getPart(start));
529 buildChoiceStyleNode(MessagePattern pattern, int start, int limit) argument
548 buildPluralStyleNode(MessagePattern pattern, int start, int limit, MessagePattern.ArgType argType) argument
577 buildSelectStyleNode(MessagePattern pattern, int start, int limit) argument
[all...]
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_dmatmp.h56 #define EMIT_INDEXED_VERTS( ctx, start, count )
97 static __inline void *TAG(emit_verts)( struct gl_context *ctx, GLuint start, argument
100 return EMIT_VERTS(ctx, start, count, buf);
108 GLuint start,
124 for (j = start; j < count; j += nr ) {
137 GLuint start,
151 count -= (count-start) & 1;
159 for (j = start; j < count; j += nr ) {
173 GLuint start,
189 for (j = start;
107 render_points_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
136 render_lines_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
172 render_line_strip_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
204 render_line_loop_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
270 render_triangles_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
301 render_tri_strip_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
339 render_tri_fan_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
379 render_poly_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
417 render_quad_strip_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
543 render_quads_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
652 render_noop( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
683 render_points_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
715 render_lines_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
752 render_line_strip_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
786 render_line_loop_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
858 render_triangles_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
892 render_tri_strip_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
930 render_tri_fan_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
968 render_poly_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
1006 render_quad_strip_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
1074 render_quads_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
[all...]
/external/harfbuzz_ng/src/
H A Dgen-indic-table.py29 start = int (uu[0], 16) variable
31 end = start
37 for u in range (start, end + 1):
39 values[i][t] = values[i].get (t, 0) + end - start + 1
136 def print_block (block, start, end, data):
143 assert start % 8 == 0
145 for u in range (start, end+1):
154 total += end - start + 1
173 start = u//8*8 variable
174 end = start
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DIntTrieBuilder.java388 * Set a value in a range of code points [start..limit].
389 * All code points c with start &lt;= c &lt; limit will get the value if
391 * @param start the first code point to get the value
399 public boolean setRange(int start, int limit, int value, argument
402 // repeat value in [start..limit[
407 if (m_isCompacted_ || start < UCharacter.MIN_VALUE
408 || start > UCharacter.MAX_VALUE || limit < UCharacter.MIN_VALUE
409 || limit > (UCharacter.MAX_VALUE + 1) || start > limit) {
413 if (start == limit) {
417 if ((start
774 fillBlock(int block, int start, int limit, int value, boolean overwrite) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DIntTrieBuilder.java386 * Set a value in a range of code points [start..limit].
387 * All code points c with start &lt;= c &lt; limit will get the value if
389 * @param start the first code point to get the value
397 public boolean setRange(int start, int limit, int value, argument
400 // repeat value in [start..limit[
405 if (m_isCompacted_ || start < UCharacter.MIN_VALUE
406 || start > UCharacter.MAX_VALUE || limit < UCharacter.MIN_VALUE
407 || limit > (UCharacter.MAX_VALUE + 1) || start > limit) {
411 if (start == limit) {
415 if ((start
772 fillBlock(int block, int start, int limit, int value, boolean overwrite) argument
[all...]
/external/v8/test/unittests/compiler/
H A Djs-context-relaxation-unittest.cc48 return graph()->NewNode(op, graph()->start(), graph()->start(),
49 graph()->start(), outer_context, graph()->start(),
50 graph()->start());
64 return graph()->NewNode(op, graph()->start(), graph()->start(),
65 graph()->start(), graph()->start(),
66 graph()->start(), shallow_frame_stat
[all...]
/external/bison/build-aux/
H A Dupdate-b4-copyright54 my $start = pos() - length ($1);
116 pos () = $start + length ("$b4_copyright_line$year_lines_new");
122 my $start = pos () - length ($1);
125 pos () = $start;
129 my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1;
138 my $start = pos () - length ($1);
146 my $line = (substr ($_, 0, $start) =~ s/\n/\n/g) + 1;
/external/dbus/dbus/
H A Ddbus-string.c460 * string, not at start + len.
463 * @param start byte offset to return
469 int start,
473 _dbus_assert (start >= 0);
475 _dbus_assert (start <= real->len);
476 _dbus_assert (len <= real->len - start);
478 return (char*) real->str + start;
487 * @param start byte offset to return
493 int start,
497 _dbus_assert (start >
468 _dbus_string_get_data_len(DBusString *str, int start, int len) argument
492 _dbus_string_get_const_data_len(const DBusString *str, int start, int len) argument
540 _dbus_string_get_byte(const DBusString *str, int start) argument
1168 delete(DBusRealString *real, int start, int len) argument
1190 _dbus_string_delete(DBusString *str, int start, int len) argument
1204 copy(DBusRealString *source, int start, int len, DBusRealString *dest, int insert_at) argument
1256 _dbus_string_move(DBusString *source, int start, DBusString *dest, int insert_at) argument
1280 _dbus_string_copy(const DBusString *source, int start, DBusString *dest, int insert_at) argument
1305 _dbus_string_move_len(DBusString *source, int start, int len, DBusString *dest, int insert_at) argument
1372 _dbus_string_copy_len(const DBusString *source, int start, int len, DBusString *dest, int insert_at) argument
1401 _dbus_string_replace_len(const DBusString *source, int start, int len, DBusString *dest, int replace_at, int replace_len) argument
1609 _dbus_string_find(const DBusString *str, int start, const char *substr, int *found) argument
1632 _dbus_string_find_eol(const DBusString *str, int start, int *found, int *found_len) argument
1702 _dbus_string_find_to(const DBusString *str, int start, int end, const char *substr, int *found) argument
1770 _dbus_string_find_blank(const DBusString *str, int start, int *found) argument
1808 _dbus_string_skip_blank(const DBusString *str, int start, int *end) argument
1842 _dbus_string_skip_white(const DBusString *str, int start, int *end) argument
1875 _dbus_string_skip_white_reverse(const DBusString *str, int end, int *start) argument
2264 _dbus_string_hex_encode(const DBusString *source, int start, DBusString *dest, int insert_at) argument
2314 _dbus_string_hex_decode(const DBusString *source, int start, int *end_return, DBusString *dest, int insert_at) argument
2455 _dbus_string_validate_ascii(const DBusString *str, int start, int len) argument
2490 _dbus_string_tolower_ascii(const DBusString *str, int start, int len) argument
2521 _dbus_string_toupper_ascii(const DBusString *str, int start, int len) argument
2560 _dbus_string_validate_utf8(const DBusString *str, int start, int len) argument
2658 _dbus_string_validate_nul(const DBusString *str, int start, int len) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dgen_bitmap.c33 __u32 start, end; member in struct:ext2fs_struct_generic_bitmap
77 __u32 start, __u32 end, __u32 real_end,
92 bitmap->start = start;
115 size = (size_t) (((bitmap->real_end - bitmap->start) / 8) + 1);
133 errcode_t ext2fs_allocate_generic_bitmap(__u32 start, argument
140 start, end, real_end, descr, 0, ret);
147 src->start, src->end,
185 if ((bitno < bitmap->start) || (bitno > bitmap->end)) {
189 return ext2fs_test_bit(bitno - bitmap->start, bitma
76 ext2fs_make_generic_bitmap(errcode_t magic, ext2_filsys fs, __u32 start, __u32 end, __u32 real_end, const char *descr, char *init_map, ext2fs_generic_bitmap *ret) argument
381 ext2fs_get_generic_bitmap_range(ext2fs_generic_bitmap bmap, errcode_t magic, __u32 start, __u32 num, void *out) argument
396 ext2fs_set_generic_bitmap_range(ext2fs_generic_bitmap bmap, errcode_t magic, __u32 start, __u32 num, void *in) argument
434 ext2fs_test_clear_generic_bitmap_range(ext2fs_generic_bitmap bitmap, unsigned int start, unsigned int len) argument
506 ext2fs_find_first_zero_generic_bitmap(ext2fs_generic_bitmap bitmap, __u32 start, __u32 end, __u32 *out) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dproperties.rb24 @properties << [$text, $type, $line, $pos, $index, $channel, $start, $stop]
35 text, type, line, pos, index, channel, start, stop = lexer.properties[ 0 ]
42 start.should == 0
45 text, type, line, pos, index, channel, start, stop = lexer.properties[ 1 ]
52 start.should == 7
56 text, type, line, pos, index, channel, start, stop = lexer.properties[ 2 ]
63 start.should == 15
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
H A DDemoTextBox.java57 int start = iter.first();
58 int end = start;
63 int w = metrics.charsWidth(chars, start, pos - start);
67 if (end > start) {
70 start = end;
76 start = end = pos;
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_heap.c30 unsigned start, unsigned size)
38 r->start = start;
68 r->start = (heap->start + heap->size) - size;
110 new->start = r->start;
29 nouveau_heap_init(struct nouveau_heap **heap, unsigned start, unsigned size) argument
/external/opencv/cvaux/src/
H A Dcvlines.cpp46 uchar * dst, int *dst_num, CvSize src_size, CvPoint start, CvPoint end )
49 int dx = end.x - start.x, dy = end.y - start.y;
54 (unsigned) start.x >= (unsigned) src_size.width ||
55 (unsigned) start.y >= (unsigned) src_size.height ||
64 start.x = end.x;
65 start.y = end.y;
68 src += start.y * src_step + start.x * 3;
125 uchar * dst, int dst_step, CvSize dst_size, CvPoint start, CvPoin
205 CvPoint start; local
251 CvPoint start; local
[all...]
/external/v8/test/cctest/
H A Dtest-dtoa.cc47 int len = StrLength(representation.start());
67 CHECK_EQ(0, strcmp("0", buffer.start()));
72 CHECK_EQ(0, strcmp("0", buffer.start()));
77 CHECK_EQ(0, strcmp("0", buffer.start()));
81 CHECK_EQ(0, strcmp("1", buffer.start()));
87 CHECK_EQ(0, strcmp("1", buffer.start()));
93 CHECK_EQ(0, strcmp("1", buffer.start()));
97 CHECK_EQ(0, strcmp("15", buffer.start()));
103 CHECK_EQ(0, strcmp("15", buffer.start()));
109 CHECK_EQ(0, strcmp("15", buffer.start()));
[all...]
/external/icu/icu4c/source/common/
H A Duarrsort.c66 int32_t start=0; local
70 while((limit-start)>=MIN_QSORT) {
71 int32_t i=(start+limit)/2;
86 start=i+1;
90 start=i;
95 while(start<limit) {
96 int32_t diff=cmp(context, item, array+start*itemSize);
102 ++start;
104 return found ? (start-1) : ~start;
168 subQuickSort(char *array, int32_t start, int32_t limit, int32_t itemSize, UComparator *cmp, const void *context, void *px, void *pw) argument
[all...]
H A Dubidiln.c78 * setTrailingWSStart() sets the start index for a trailing
95 int32_t start=pBiDi->length; local
104 if(dirProps[start-1]==B) {
105 pBiDi->trailingWSStart=start; /* currently == pBiDi->length */
109 while(start>0 && DIRPROP_FLAG(dirProps[start-1])&MASK_WS) {
110 --start;
114 while(start>0 && levels[start-1]==paraLevel) {
115 --start;
124 ubidi_setLine(const UBiDi *pParaBiDi, int32_t start, int32_t limit, UBiDi *pLineBiDi, UErrorCode *pErrorCode) argument
262 int32_t start, length; local
364 int32_t start; local
599 int32_t runIndex, start; local
685 Point *point, *start=pBiDi->insertPoints.points, local
697 const UChar *start=pBiDi->text, *limit=start+pBiDi->length, *pu; local
713 int32_t start; local
751 int32_t start, limit, sumOfSosEos; local
814 int32_t start, end, limit, temp; local
942 int32_t i, j, start, limit, length, insertRemove; local
987 int32_t i, runCount, start; local
[all...]
/external/jsmn/
H A Djsmn.c15 tok->start = tok->end = -1;
27 int start, int end) {
29 token->start = start;
40 int start; local
42 start = parser->pos;
55 parser->pos = start;
61 parser->pos = start;
72 parser->pos = start;
75 jsmn_fill_token(token, JSMN_PRIMITIVE, start, parse
26 jsmn_fill_token(jsmntok_t *token, jsmntype_t type, int start, int end) argument
90 int start = parser->pos; local
[all...]
/external/strace/
H A Duid.c163 const unsigned long start = tcp->u_arg[1]; local
165 const unsigned long end = start + size;
172 if (!start || !verbose(tcp) ||
173 size / sizeof(gid) != len || end < start) {
174 printaddr(start);
178 abbrev_end = start + max_strlen * sizeof(gid);
179 if (abbrev_end < start)
185 for (cur = start; cur < end; cur += sizeof(gid)) {
186 if (cur > start)
202 printaddr(start);
218 const unsigned long start = tcp->u_arg[1]; local
[all...]

Completed in 1111 milliseconds

<<11121314151617181920>>