Searched refs:start (Results 51 - 75 of 5526) sorted by relevance

1234567891011>>

/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DDateRule.java30 * that is on or after the given start date.
32 * @param start Only occurrances on or after this date are returned.
35 * does not occur on or after the start date.
40 abstract public Date firstAfter(Date start); argument
44 * that is on or after the given start date and before the given
47 * @param start Only occurrances on or after this date are returned.
51 * does not occur between the start and end dates.
56 abstract public Date firstBetween(Date start, Date end); argument
76 abstract public boolean isBetween(Date start, Date end); argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DReplaceable.java24 * <p><code>Replaceable</code> specifies ranges using a start
26 * includes the characters at offset start..limit-1. That is, the
27 * start offset is inclusive, and the limit offset is exclusive.
40 * <li>If there is no previous character (i.e. start == 0), use the
99 * &lt;= start &lt;= limit</code>.
101 * <code>start &lt;= limit &lt;= length()</code>.
103 * @param dstStart the start offset in the destination array.
111 * <p>Subclasses must ensure that if the text between start and
118 * @param start the beginning index, inclusive; <code>0 &lt;= start
126 replace(int start, int limit, String text) argument
149 replace(int start, int limit, char[] chars, int charsStart, int charsLen) argument
175 copy(int start, int limit, int dest) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DDateRule.java29 * that is on or after the given start date.
31 * @param start Only occurrances on or after this date are returned.
34 * does not occur on or after the start date.
40 abstract public Date firstAfter(Date start); argument
44 * that is on or after the given start date and before the given
47 * @param start Only occurrances on or after this date are returned.
51 * does not occur between the start and end dates.
57 abstract public Date firstBetween(Date start, Date end); argument
79 abstract public boolean isBetween(Date start, Date end); argument
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberMatch.java28 * {@linkplain #start() start} and {@linkplain #end() end} offsets of the corresponding subsequence
45 * // start() and end() define the range of the matched subsequence.
46 * CharSequence subsequence = text.subSequence(m.start(), m.end());
55 /** The start index into the text. */
56 private final int start; field in class:PhoneNumberMatch
65 * @param start the start index into the target text
69 PhoneNumberMatch(int start, String rawString, PhoneNumber number) { argument
70 if (start <
87 public int start() { method in class:PhoneNumberMatch
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DBuilderTryBlock.java45 @Nonnull public final Label start; field in class:BuilderTryBlock
50 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable String exceptionType, argument
52 this.start = start;
57 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable TypeReference exceptionType, argument
59 this.start = start;
64 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nonnull Label handler) { argument
65 this.start = start;
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DComparisonChainTest.java42 assertEquals(0, ComparisonChain.start().result());
46 assertEquals(0, ComparisonChain.start()
52 assertEquals(0, ComparisonChain.start()
58 assertEquals(0, ComparisonChain.start()
69 assertTrue(ComparisonChain.start()
76 assertTrue(ComparisonChain.start()
83 assertTrue(ComparisonChain.start()
91 assertTrue(ComparisonChain.start().compareFalseFirst(true, true).result() == 0);
92 assertTrue(ComparisonChain.start().compareFalseFirst(true, false).result() > 0);
93 assertTrue(ComparisonChain.start()
[all...]
/external/opencv3/modules/core/misc/java/src/java/
H A Dcore+Range.java6 public int start, end; field in class:Range
9 this.start = s;
23 start = vals.length > 0 ? (int) vals[0] : 0;
26 start = 0;
33 return empty() ? 0 : end - start;
37 return end <= start;
45 Range r = new Range(Math.max(r1.start, this.start), Math.min(r1.end, this.end));
46 r.end = Math.max(r.end, r.start);
51 return new Range(start
[all...]
/external/e2fsprogs/e2fsck/
H A Dregion.c23 region_addr_t start; member in struct:region_el
59 int region_allocate(region_t region, region_addr_t start, int n) argument
64 end = start+n;
65 if ((start < region->min) || (end > region->max))
78 if (((start >= r->start) && (start < r->end)) ||
79 ((end > r->start) && (end <= r->end)) ||
80 ((start <= r->start)
175 region_addr_t start, end; local
[all...]
/external/icu/icu4c/source/samples/break/
H A Dubreak.c17 void printTextRange(UChar* str, int32_t start, int32_t end) argument
24 u_austrncpy(charBuf, str+start, sizeof(charBuf)-1);
26 printf("string[%2d..%2d] \"%s\"\n", start, end-1, charBuf);
35 int32_t start = ubrk_first(boundary); local
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end =
38 printTextRange(str, start, end );
45 int32_t start; local
47 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start,
56 int32_t start = ubrk_first(boundary); local
63 int32_t start; local
72 int32_t start; local
[all...]
H A Dbreak.cpp26 int32_t start, int32_t end )
32 printf(" %ld %ld\t", (long)start, (long)end);
33 printUnicodeString(UnicodeString(s, 0, start));
35 printUnicodeString(UnicodeString(s, start, end-start));
46 int32_t start = boundary.first(); local
49 start = end, end = boundary.next())
51 printTextRange( boundary, start, end );
59 for (int32_t start = boundary.previous();
60 start !
25 printTextRange( BreakIterator& iterator, int32_t start, int32_t end ) argument
70 int32_t start = boundary.first(); local
79 int32_t start = boundary.previous(); local
87 int32_t start = boundary.previous(); local
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
H A DSessionInfo.java23 private final long start; field in class:SessionInfo
32 * @param start
38 public SessionInfo(final String id, final long start, final long dump) { argument
43 this.start = start;
59 return start;
/external/libchrome/sandbox/win/src/sidestep/
H A Dmini_disassembler.h60 // start: Address where disassembly should start.
70 InstructionType Disassemble(unsigned char* start,
80 InstructionType ProcessPrefixes(unsigned char* start, unsigned int* size);
85 InstructionType ProcessOpcode(unsigned char* start,
99 bool ProcessModrm(unsigned char* start, unsigned int* size);
102 // start: Pointer to the SIB byte.
105 bool ProcessSib(unsigned char* start, unsigned char mod, unsigned int* size);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DTryCatchBlockNode.java44 public LabelNode start; field in class:TryCatchBlockNode
65 * @param start beginning of the exception handler's scope (inclusive).
73 final LabelNode start,
78 this.start = start;
90 mv.visitTryCatchBlock(start.getLabel(), end.getLabel(), handler == null
72 TryCatchBlockNode( final LabelNode start, final LabelNode end, final LabelNode handler, final String type) argument
/external/javassist/src/main/javassist/bytecode/analysis/
H A DSubroutine.java32 private int start; field in class:Subroutine
34 public Subroutine(int start, int caller) { argument
35 this.start = start;
43 public int start() { method in class:Subroutine
44 return start;
64 return "start = " + start + " callers = " + callers.toString();
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_render_translate.c32 unsigned *start, unsigned count)
45 *start, count, ptr);
48 *start = out_offset / 2;
58 index_offset, *start,
61 *start = out_offset / 2;
72 index_offset, *start,
75 *start = out_offset / 4;
28 r300_translate_index_buffer(struct r300_context *r300, struct pipe_index_buffer *ib, struct pipe_resource **out_buffer, unsigned *index_size, unsigned index_offset, unsigned *start, unsigned count) argument
/external/icu/icu4c/source/test/intltest/
H A Dbidiconf.cpp42 UBool parseLevels(const char *&start);
43 UBool parseOrdering(const char *start);
44 UBool parseInputStringFromBiDiClasses(const char *&start);
80 UBool BiDiConformanceTest::parseLevels(const char *&start) { argument
83 while(*start!=0 && *(start=u_skipWhitespace(start))!=0 && *start!=';') {
84 if(*start=='x') {
86 ++start;
104 parseOrdering(const char *start) argument
167 parseInputStringFromBiDiClasses(const char *&start) argument
293 const char *start=u_skipWhitespace(line); local
457 const char *start=u_skipWhitespace(line); local
[all...]
/external/v8/test/cctest/
H A Dtest-fixed-dtoa.cc49 CHECK_EQ(0, strcmp("1", buffer.start()));
53 CHECK_EQ(0, strcmp("1", buffer.start()));
57 CHECK_EQ(0, strcmp("1", buffer.start()));
61 CHECK_EQ(0, strcmp("4294967295", buffer.start()));
65 CHECK_EQ(0, strcmp("4294967296", buffer.start()));
69 CHECK_EQ(0, strcmp("1", buffer.start()));
74 CHECK_EQ(0, strcmp("999999999999999868928", buffer.start()));
79 CHECK_EQ(0, strcmp("6999999999999998951424", buffer.start()));
83 CHECK_EQ(0, strcmp("15", buffer.start()));
87 CHECK_EQ(0, strcmp("155", buffer.start()));
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_draw.h52 util_draw_arrays(struct pipe_context *pipe, uint mode, uint start, uint count) argument
58 info.start = start;
60 info.min_index = start;
61 info.max_index = start + count - 1;
68 uint mode, uint start, uint count)
75 info.start = start;
84 uint mode, uint start, uint count,
92 info.start
67 util_draw_elements(struct pipe_context *pipe, int index_bias, uint mode, uint start, uint count) argument
83 util_draw_arrays_instanced(struct pipe_context *pipe, uint mode, uint start, uint count, uint start_instance, uint instance_count) argument
103 util_draw_elements_instanced(struct pipe_context *pipe, int index_bias, uint mode, uint start, uint count, uint start_instance, uint instance_count) argument
124 util_draw_range_elements(struct pipe_context *pipe, int index_bias, uint min_index, uint max_index, uint mode, uint start, uint count) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonErrorNode.cs39 public IToken start; field in class:Antlr.Runtime.Tree.CommonErrorNode
43 public CommonErrorNode(ITokenStream input, IToken start, IToken stop, argument
45 //System.out.println("start: "+start+", stop: "+stop);
47 (stop.TokenIndex < start.TokenIndex &&
50 // in follow set. So, stop will be 1 to left to start. adjust.
51 // Also handle case where start is the first token and no token
53 stop = start;
56 this.start = start;
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonErrorNode.cs41 public IToken start; field in class:Antlr.Runtime.Tree.CommonErrorNode
45 public CommonErrorNode( ITokenStream input, IToken start, IToken stop, argument
48 //System.out.println("start: "+start+", stop: "+stop);
50 ( stop.TokenIndex < start.TokenIndex &&
54 // in follow set. So, stop will be 1 to left to start. adjust.
55 // Also handle case where start is the first token and no token
57 stop = start;
60 this.start = start;
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonErrorNode.java35 public Token start; field in class:CommonErrorNode
39 public CommonErrorNode(TokenStream input, Token start, Token stop, argument
42 //System.out.println("start: "+start+", stop: "+stop);
44 (stop.getTokenIndex() < start.getTokenIndex() &&
48 // in follow set. So, stop will be 1 to left to start. adjust.
49 // Also handle case where start is the first token and no token
51 stop = start;
54 this.start = start;
[all...]
/external/speex/libspeex/
H A Dltp_bfin.h157 void open_loop_nbest_pitch(spx_word16_t *sw, int start, int end, int len, int *pitch, spx_word16_t *gain, int N, char *stack) argument
168 ALLOC(corr, end-start+1, spx_word32_t);
169 ALLOC(energy, end-start+2, spx_word32_t);
175 pitch[i]=start;
178 energy[0]=inner_prod(sw-start, sw-start, len);
202 : : "d" (energy), "d" (&sw[-start-1]), "d" (&sw[-start+len-1]),
203 "a" (end-start)
210 pitch_xcorr(sw, sw-end, corr, len, end-start
[all...]
/external/curl/scripts/
H A Dcontributors.sh33 start=$1
35 if test -z "$start"; then
50 git log $start..HEAD | \
H A Dcontrithanks.sh29 start=$1
31 if test -z "$start"; then
38 git log $start..HEAD | \
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
H A DMethodSanitizer.java42 final String signature, final Label start, final Label end,
47 if (start.info != null && end.info != null) {
48 super.visitLocalVariable(name, desc, signature, start, end, index);
53 public void visitLineNumber(final int line, final Label start) { argument
57 if (start.info != null) {
58 super.visitLineNumber(line, start);
41 visitLocalVariable(final String name, final String desc, final String signature, final Label start, final Label end, final int index) argument

Completed in 2517 milliseconds

1234567891011>>