HomeSort by relevance Sort by last modified time
    Searched refs:end (Results 176 - 200 of 11955) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mesa3d/src/glsl/
strtod.c 45 glsl_strtod(const char *s, char **end)
52 return strtod_l(s, end, loc);
54 return strtod(s, end);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArrayOutput.java 128 * bytes at the end).
156 int end = writeAt + 1; local
159 ensureCapacity(end);
160 } else if (end > data.length) {
166 cursor = end;
172 int end = writeAt + 2; local
175 ensureCapacity(end);
176 } else if (end > data.length) {
183 cursor = end;
189 int end = writeAt + 4 local
208 int end = writeAt + 8; local
253 int end = ((value & Integer.MIN_VALUE) == 0) ? 0 : -1; local
272 int end = writeAt + blen; local
288 int end = writeAt + length; local
320 int end = cursor + count; local
339 int end = AlignmentUtils.alignOffset(cursor, alignment); local
501 private int end; field in class:ByteArrayOutput.Annotation
    [all...]
ByteArrayAnnotatedOutput.java 133 * bytes at the end).
161 int end = writeAt + 1; local
164 ensureCapacity(end);
165 } else if (end > data.length) {
171 cursor = end;
177 int end = writeAt + 2; local
180 ensureCapacity(end);
181 } else if (end > data.length) {
188 cursor = end;
194 int end = writeAt + 4 local
213 int end = writeAt + 8; local
259 int end = ((value & Integer.MIN_VALUE) == 0) ? 0 : -1; local
278 int end = writeAt + blen; local
294 int end = writeAt + length; local
326 int end = cursor + count; local
351 int end = (cursor + mask) & ~mask; local
525 int end; local
594 private int end; field in class:ByteArrayAnnotatedOutput.Annotation
    [all...]
  /external/webkit/Source/WebCore/fileapi/
Blob.cpp 66 PassRefPtr<Blob> Blob::webkitSlice(long long start, long long end, const String& contentType) const
80 // Convert the negative value that is used to select from the end.
83 if (end < 0)
84 end = end + size;
89 if (end < 0)
90 end = 0;
93 end = 0;
94 } else if (end < start)
95 end = start
    [all...]
  /external/webkit/Source/WebKit/mac/DOM/
WebDOMOperations.h 44 @end
63 @end
79 @end
89 @end
99 @end
111 @end
  /external/icu4c/samples/break/
ubreak.c 17 void printTextRange(UChar* str, int32_t start, int32_t end)
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...]
break.cpp 26 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 = boundary.last() local
71 int32_t end = boundary.next(); local
78 int32_t end = boundary.last(); local
86 int32_t end = boundary.following(pos); local
    [all...]
  /external/openssl/crypto/bn/
bn_sqrt.c 83 goto end;
103 goto end;
121 if (y == NULL) goto end;
125 if (ret == NULL) goto end;
128 if (!BN_nnmod(A, a, p, ctx)) goto end;
145 if (!BN_rshift(q, p, 2)) goto end;
147 if (!BN_add_word(q, 1)) goto end;
148 if (!BN_mod_exp(ret, A, q, p, ctx)) goto end;
182 if (!BN_mod_lshift1_quick(t, A, p)) goto end;
185 if (!BN_rshift(q, p, 3)) goto end;
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGParserUtilities.cpp 46 template <typename FloatType> static bool genericParseNumber(const UChar*& ptr, const UChar* end, FloatType& number, bool skip)
60 if (ptr < end && *ptr == '+')
62 else if (ptr < end && *ptr == '-') {
67 if (ptr == end || ((*ptr < '0' || *ptr > '9') && *ptr != '.'))
73 while (ptr < end && *ptr >= '0' && *ptr <= '9')
88 if (ptr < end && *ptr == '.') { // read the decimals
92 if (ptr >= end || *ptr < '0' || *ptr > '9')
95 while (ptr < end && *ptr >= '0' && *ptr <= '9')
100 if (ptr != start && ptr + 1 < end && (*ptr == 'e' || *ptr == 'E')
113 if (ptr >= end || *ptr < '0' || *ptr > '9'
172 const UChar* end = cur + s.length(); local
190 const UChar* end = cur + points.length(); local
224 const UChar* end = ptr + input.length(); local
258 const UChar* end = characters + length; local
321 const UChar* end = ptr + input.length(); local
348 const UChar* end = ptr + input.length(); local
    [all...]
SVGViewSpec.cpp 51 const UChar* end = c + viewBoxStr.length(); local
52 if (!parseViewBox(m_contextElement->document(), c, end, viewBox, false))
82 const UChar* end = currViewSpec + viewSpec.length(); local
84 if (currViewSpec >= end)
87 if (!skipString(currViewSpec, end, svgViewSpec, WTF_ARRAY_LENGTH(svgViewSpec)))
90 if (currViewSpec >= end || *currViewSpec != '(')
94 while (currViewSpec < end && *currViewSpec != ')') {
96 if (skipString(currViewSpec, end, viewBoxSpec, WTF_ARRAY_LENGTH(viewBoxSpec))) {
97 if (currViewSpec >= end || *currViewSpec != '(')
101 if (!parseViewBox(m_contextElement->document(), currViewSpec, end, viewBox, false)
    [all...]
SVGParserUtilities.h 35 bool parseNumber(const UChar*& ptr, const UChar* end, float& number, bool skip = true);
37 bool parseArcFlag(const UChar*& ptr, const UChar* end, bool& flag);
46 inline bool skipOptionalSpaces(const UChar*& ptr, const UChar* end)
48 while (ptr < end && isWhitespace(*ptr))
50 return ptr < end;
53 inline bool skipOptionalSpacesOrDelimiter(const UChar*& ptr, const UChar* end, UChar delimiter = ',')
55 if (ptr < end && !isWhitespace(*ptr) && *ptr != delimiter)
57 if (skipOptionalSpaces(ptr, end)) {
58 if (ptr < end && *ptr == delimiter) {
60 skipOptionalSpaces(ptr, end);
    [all...]
  /frameworks/base/core/java/android/view/
AccessibilityIterators.java 59 protected int[] getRange(int start, int end) {
60 if (start < 0 || end < 0 || start == end) {
64 mSegment[1] = end;
115 final int end = mImpl.following(start); local
116 if (end == BreakIterator.DONE) {
119 return getRange(start, end);
131 int end = offset; local
132 if (end > textLegth) {
133 end = textLegth
205 final int end = mImpl.following(start); local
221 int end = offset; local
287 int end = start + 1; local
303 int end = offset; local
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p1-cxx11.cpp 47 template<typename T> T end(T);
52 if (it1->end < it1->end) {
56 template<typename T> T *end(T*);
62 if (it1->end < it1->end) {
66 if (x->end < 7) { // expected-error{{no member named 'end' in 'PR11856::X'}}
p1.cpp 67 template<typename T> T end(T);
72 if (it1->end < it1->end) {
76 template<typename T> T *end(T*);
82 if (it1->end < it1->end) {
86 if (x->end < 7) { // expected-error{{no member named 'end' in 'PR11856::X'}}
  /external/clang/test/Index/
complete-method-decls.m 1 /* Note: the RUN lines are near the end of the file, since line/column
10 @end
14 @end
19 @end
26 @end
30 @end
39 @end
43 @end
49 @end
53 @end
    [all...]
complete-member-access.m 1 /* Note: the RUN lines are near the end of the file, since line/column
6 @end
11 @end
18 @end
31 @end
39 @end
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
range_access.h 68 end(_Container& __cont) -> decltype(__cont.end())
69 { return __cont.end(); }
78 end(const _Container& __cont) -> decltype(__cont.end())
79 { return __cont.end(); }
97 end(_Tp (&__arr)[_Nm])
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
range_access.h 68 end(_Container& __cont) -> decltype(__cont.end())
69 { return __cont.end(); }
78 end(const _Container& __cont) -> decltype(__cont.end())
79 { return __cont.end(); }
97 end(_Tp (&__arr)[_Nm])
  /external/webkit/Source/WebCore/page/
ContentSecurityPolicy.cpp 72 static bool skipExactly(const UChar*& position, const UChar* end, UChar delimiter)
74 if (position < end && *position == delimiter) {
82 static bool skipExactly(const UChar*& position, const UChar* end)
84 if (position < end && characterPredicate(*position)) {
91 static void skipUtil(const UChar*& position, const UChar* end, UChar delimiter)
93 while (position < end && *position != delimiter)
98 static void skipWhile(const UChar*& position, const UChar* end)
100 while (position < end && characterPredicate(*position))
165 void parse(const UChar* begin, const UChar* end);
167 bool parseSource(const UChar* begin, const UChar* end, String& scheme, String& host, int& port, bool& hostHasWildcard, bool& portHasWildcard)
441 const UChar* end = position + value.length(); local
547 const UChar* end = position + policy.length(); local
    [all...]
  /external/icu4c/tools/toolutil/
pkg_icu.cpp 79 char *end; local
91 end=strchr(line, '#');
92 if(end!=NULL) {
93 *end=0;
96 end=strchr(line, 0);
97 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
98 *--end=0;
112 // find whitespace after the item or the end of the lin
    [all...]
  /external/e2fsprogs/e2fsck/
region.c 9 * %End-Header%
24 region_addr_t end; member in struct:region_el
62 region_addr_t end; local
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) && (end >= r->end))
175 region_addr_t start, end, len; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
sort.h 61 parallel_sort(RandomAccessIterator begin, RandomAccessIterator end,
68 * @param end End iterator of input sequence.
74 parallel_sort(RandomAccessIterator begin, RandomAccessIterator end,
77 _GLIBCXX_CALL(end - begin)
81 (begin, end, comp, parallelism.get_num_threads());
84 (begin, end, comp, parallelism.get_num_threads());
91 * @param end End iterator of input sequence.
97 parallel_sort(RandomAccessIterator begin, RandomAccessIterator end,
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArrayAnnotatedOutput.java 122 * bytes at the end).
150 int end = writeAt + 1; local
153 ensureCapacity(end);
154 } else if (end > data.length) {
160 cursor = end;
166 int end = writeAt + 2; local
169 ensureCapacity(end);
170 } else if (end > data.length) {
177 cursor = end;
183 int end = writeAt + 4 local
202 int end = writeAt + 8; local
247 int end = ((value & Integer.MIN_VALUE) == 0) ? 0 : -1; local
266 int end = writeAt + blen; local
282 int end = writeAt + length; local
314 int end = cursor + count; local
339 int end = (cursor + mask) & ~mask; local
493 int end; local
562 private int end; field in class:ByteArrayAnnotatedOutput.Annotation
    [all...]
  /external/stlport/test/unit/
perm_test.cpp 54 __iota(v1.begin(), v1.end(), 0);
56 prev_permutation(v1.begin(), v1.end());
60 prev_permutation(v1.begin(), v1.end());
64 prev_permutation(v1.begin(), v1.end());
68 prev_permutation(v1.begin(), v1.end());
72 prev_permutation(v1.begin(), v1.end());
76 prev_permutation(v1.begin(), v1.end());
80 prev_permutation(v1.begin(), v1.end());
84 prev_permutation(v1.begin(), v1.end());
88 prev_permutation(v1.begin(), v1.end());
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
WebCoreView.m 31 @end
35 @end
44 @end
54 @end
64 @end

Completed in 318 milliseconds

1 2 3 4 5 6 78 91011>>