Searched defs:end (Results 201 - 225 of 3317) sorted by relevance

1234567891011>>

/external/e2fsprogs/lib/et/test_cases/
H A Dcontinuation.c40 struct et_list *et, **end; local
42 for (end = list, et = *list; et; end = &et->next, et = et->next)
54 *end = et;
H A Dheimdal.c121 struct et_list *et, **end; local
123 for (end = list, et = *list; et; end = &et->next, et = et->next)
135 *end = et;
H A Dheimdal2.c107 struct et_list *et, **end; local
109 for (end = list, et = *list; et; end = &et->next, et = et->next)
121 *end = et;
H A Dheimdal3.c41 struct et_list *et, **end; local
43 for (end = list, et = *list; et; end = &et->next, et = et->next)
55 *end = et;
H A Dimap_err.c69 struct et_list *et, **end; local
71 for (end = list, et = *list; et; end = &et->next, et = et->next)
83 *end = et;
H A Dsimple.c61 struct et_list *et, **end; local
63 for (end = list, et = *list; et; end = &et->next, et = et->next)
75 *end = et;
/external/e2fsprogs/lib/ext2fs/
H A Dext2_err.c62 N_( "Attempt to fudge end of block bitmap past the real end"),
63 N_( "Attempt to fudge end of inode bitmap past the real end"),
195 struct et_list *et, **end; local
197 for (end = list, et = *list; et; end = &et->next, et = et->next)
209 *end = et;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/
H A DbuildAll.bat49 goto end
54 :end label
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/
H A Druntests.bat86 goto end
88 :end label
/external/elfutils/0.153/libasm/
H A Ddisasm_str.c59 disasm_str (DisasmCtx_t *ctx, const uint8_t **startp, const uint8_t *end, argument
65 int res = INTUSE(disasm_cb) (ctx, startp, end, addr, fmt, buffer_cb, &buffer,
/external/expat/examples/
H A Doutline.c67 end(void *data, const char *el) function
81 XML_SetElementHandler(p, start, end);
/external/freetype/src/base/
H A Dftadvanc.c114 FT_UInt num, end, nn; local
122 end = start + count;
123 if ( start >= num || end < start || end > num )
/external/guava/guava/src/com/google/common/collect/
H A DDiscreteDomain.java70 * {@code end} starting from {@code start}. For example, if {@code end =
71 * next(next(next(start)))}, then {@code distance(start, end) == 3} and {@code
72 * distance(end, start) == -3}. As well, {@code distance(a, a)} is always
82 public abstract long distance(C start, C end); argument
/external/guava/guava/src/com/google/common/io/
H A DLineBuffer.java28 * to pass character data, and call {@link #finish} at the end of stream.
60 for (int end = off + len; pos < end; pos++) {
65 if (pos + 1 < end) {
111 * @param end the line separator; one of {@code "\r"}, {@code "\n"},
115 protected abstract void handleLine(String line, String end) argument
/external/hamcrest/src/org/hamcrest/
H A DDescription.java29 <T> Description appendValueList(String start, String separator, String end, argument
35 <T> Description appendValueList(String start, String separator, String end, argument
42 Description appendList(String start, String separator, String end, argument
/external/harfbuzz_ng/src/
H A Dhb-shaper.cc75 char *end, *p = env; local
77 end = strchr (p, ',');
78 if (!end)
79 end = p + strlen (p);
82 if (end - p == (int) strlen (shapers[j].name) &&
83 0 == strncmp (shapers[j].name, p, end - p))
92 if (!*end)
95 p = end + 1;
H A Dhb-utf-private.hh42 const uint8_t *end,
57 if (likely (text < end &&
69 if (likely (1 < end - text &&
84 if (likely (2 < end - text &&
115 const uint8_t *end = text--; local
116 while (start < text && (*text & 0xc0) == 0x80 && end - text < 4)
119 if (likely (next (text, end, unicode, replacement) == end))
123 return end - 1;
141 const uint16_t *end,
41 next(const uint8_t *text, const uint8_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
140 next(const uint16_t *text, const uint16_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
177 const uint16_t *end = text--; local
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dlistformatter.h41 ListFormatData(const UnicodeString& two, const UnicodeString& start, const UnicodeString& middle, const UnicodeString& end) : argument
42 twoPattern(two), startPattern(start), middlePattern(middle), endPattern(end) {}
/external/icu/icu4c/source/samples/break/
H A Dbreak.cpp26 int32_t start, int32_t end )
32 printf(" %ld %ld\t", (long)start, (long)end);
35 printUnicodeString(UnicodeString(s, start, end-start));
37 printUnicodeString(UnicodeString(s, end));
47 for (int32_t end = boundary.next();
48 end != BreakIterator::DONE;
49 start = end, end = boundary.next())
51 printTextRange( boundary, start, end );
58 int32_t end local
71 int32_t end = boundary.next(); local
78 int32_t end = boundary.last(); local
86 int32_t end = boundary.following(pos); local
[all...]
H A Dubreak.c17 void printTextRange(UChar* str, int32_t start, int32_t end) argument
22 savedEndChar = str[end];
23 str[end] = 0;
26 printf("string[%2d..%2d] \"%s\"\n", start, end-1, charBuf);
27 str[end] = savedEndChar;
34 int32_t end; local
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end
46 int32_t end = ubrk_last(boundary); local
55 int32_t end; local
64 int32_t end = ubrk_last(boundary); local
73 int32_t end = ubrk_following(boundary, pos); local
[all...]
/external/iproute2/ip/
H A Drtm_map.c61 char *end; local
88 res = strtoul(arg, &end, 0);
89 if (!end || end == arg || *end || res > 255)
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DSyncEvent.h110 ** Function: end
117 void end () function in class:SyncEvent
136 ** Description: Automatically start and end a synchronization event.
169 mEvent.end (); //automatically end operation
/external/libphonenumber/java/src/com/android/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());
91 /** Returns the exclusive end index of the matched phone number within the searched text. */
92 public int end() { method in class:PhoneNumberMatch
121 return "PhoneNumberMatch [" + start() + "," + end() + ") " + rawString;
/external/libvpx/libvpx/vpx_ports/
H A Dvpx_timer.h49 LARGE_INTEGER begin, end; member in struct:vpx_usec_timer
51 struct timeval begin, end;
69 QueryPerformanceCounter(&t->end);
71 gettimeofday(&t->end, NULL);
81 diff.QuadPart = t->end.QuadPart - t->begin.QuadPart;
88 timersub(&t->end, &t->begin, &diff);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.cpp31 collection::const_iterator pos, end = m_collection.end(); local
32 for (pos = m_collection.begin(); pos != end; ++pos)

Completed in 6642 milliseconds

1234567891011>>