Searched refs:end (Results 176 - 200 of 13805) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGZoomAndPan.cpp53 static bool parseZoomAndPanInternal(const CharType*& start, const CharType* end, SVGZoomAndPanType& zoomAndPan) argument
55 if (skipString(start, end, disable, WTF_ARRAY_LENGTH(disable))) {
59 if (skipString(start, end, magnify, WTF_ARRAY_LENGTH(magnify))) {
66 bool SVGZoomAndPan::parseZoomAndPan(const LChar*& start, const LChar* end) argument
68 return parseZoomAndPanInternal(start, end, m_zoomAndPan);
71 bool SVGZoomAndPan::parseZoomAndPan(const UChar*& start, const UChar* end) argument
73 return parseZoomAndPanInternal(start, end, m_zoomAndPan);
H A DSVGParserUtilities.cpp46 static bool genericParseNumber(const CharType*& ptr, const CharType* end, FloatType& number, WhitespaceMode mode) argument
60 skipOptionalSVGSpaces(ptr, end);
63 if (ptr < end && *ptr == '+')
65 else if (ptr < end && *ptr == '-') {
70 if (ptr == end || ((*ptr < '0' || *ptr > '9') && *ptr != '.'))
76 while (ptr < end && *ptr >= '0' && *ptr <= '9')
91 if (ptr < end && *ptr == '.') { // read the decimals
95 if (ptr >= end || *ptr < '0' || *ptr > '9')
98 while (ptr < end && *ptr >= '0' && *ptr <= '9')
103 if (ptr != start && ptr + 1 < end
148 parseNumber(const LChar*& ptr, const LChar* end, float& number, WhitespaceMode mode) argument
153 parseNumber(const UChar*& ptr, const UChar* end, float& number, WhitespaceMode mode) argument
161 genericParseArcFlag(const CharType*& ptr, const CharType* end, bool& flag) argument
178 parseArcFlag(const LChar*& ptr, const LChar* end, bool& flag) argument
183 parseArcFlag(const UChar*& ptr, const UChar* end, bool& flag) argument
189 genericParseNumberOptionalNumber(const CharType*& ptr, const CharType* end, float& x, float& y) argument
209 const LChar* end = ptr + string.length(); local
213 const UChar* end = ptr + string.length(); local
218 genericParseNumberOrPercentage(const CharType*& ptr, const CharType* end, float& number) argument
246 const LChar* end = ptr + string.length(); local
250 const UChar* end = ptr + string.length(); local
256 parseGlyphName(const CharType*& ptr, const CharType* end, HashSet<String>& values) argument
289 const LChar* end = ptr + input.length(); local
293 const UChar* end = ptr + input.length(); local
308 const CharType* end = characters + length; local
368 genericParseKerningUnicodeString(const CharType*& ptr, const CharType* end, UnicodeRanges& rangeList, HashSet<String>& stringList) argument
397 const LChar* end = ptr + input.length(); local
401 const UChar* end = ptr + input.length(); local
406 genericParseDelimitedString(const CharType*& ptr, const CharType* end, const char seperator) argument
439 const LChar* end = ptr + input.length(); local
443 const UChar* end = ptr + input.length(); local
449 parseFloatPoint(const CharType*& current, const CharType* end, FloatPoint& point) argument
464 parseFloatPoint2(const CharType*& current, const CharType* end, FloatPoint& point1, FloatPoint& point2) argument
484 parseFloatPoint3(const CharType*& current, const CharType* end, FloatPoint& point1, FloatPoint& point2, FloatPoint& point3) argument
516 parseAndSkipTransformType(const CharType*& ptr, const CharType* end, SVGTransformType& type) argument
552 const LChar* end = ptr + string.length(); local
556 const UChar* end = ptr + string.length(); local
[all...]
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
H A Dp1-cxx11.cpp47 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'}}
H A Dp1.cpp67 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/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_icu.cpp81 char *end; local
93 end=strchr(line, '#');
94 if(end!=NULL) {
95 *end=0;
98 end=strchr(line, 0);
99 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
100 *--end=0;
114 // find whitespace after the item or the end o
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Dpkg_icu.cpp81 char *end; local
93 end=strchr(line, '#');
94 if(end!=NULL) {
95 *end=0;
98 end=strchr(line, 0);
99 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
100 *--end=0;
114 // find whitespace after the item or the end o
[all...]
/external/e2fsprogs/e2fsck/
H A Dregion.c24 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; local
[all...]
/external/chromium_org/third_party/icu/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...]
/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...]
/external/chromium_org/components/enhanced_bookmarks/
H A Denhanced_bookmark_utils_unittest.cc50 CHECK(std::find(result.begin(), result.end(), node1) != result.end());
51 CHECK(std::find(result.begin(), result.end(), node2) != result.end());
52 CHECK(std::find(result.begin(), result.end(), node4) != result.end());
54 CHECK(std::find(result.begin(), result.end(), node3) == result.end());
55 CHECK(std::find(result.begin(), result.end(), node5) == result.end());
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DParsingUtilities.h35 bool skipExactly(const CharType*& position, const CharType* end, CharType delimiter) argument
37 if (position < end && *position == delimiter) {
45 bool skipExactly(const CharType*& position, const CharType* end) argument
47 if (position < end && characterPredicate(*position)) {
55 void skipUntil(const CharType*& position, const CharType* end, CharType delimiter) argument
57 while (position < end && *position != delimiter)
62 void skipUntil(const CharType*& position, const CharType* end) argument
64 while (position < end && !characterPredicate(*position))
69 void skipWhile(const CharType*& position, const CharType* end) argument
71 while (position < end
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dfree_list.cc72 // |start| will point to the first node of the range, |end| will point
75 void FL_PopRange(void **head, int n, void **start, void **end) { argument
78 *end = NULL;
84 for (int i = 1; i < n; ++i) { // Find end of range.
87 *end = tmp; // |end| now set to point to last node in range.
88 *head = FL_Next(*end);
89 FL_SetNext(*end, NULL); // Unlink range from list.
97 // is |end| into the linked list at |*head|. |*head| is updated to
99 void FL_PushRange(void **head, void *start, void *end) { argument
[all...]
/external/clang/test/Index/
H A Dcomplete-member-access.m1 /* Note: the RUN lines are near the end of the file, since line/column
6 @end
11 @end
18 @end
31 @end
39 @end
/external/stlport/test/unit/
H A Dperm_test.cpp54 __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/qemu/android/utils/
H A Dbufprint.c51 bufprint(char* buffer, char* end, const char* fmt, ... ) argument
57 result = vbufprint(buffer, end, fmt, args);
77 bufprint_app_dir(char* buff, char* end) argument
91 return bufprint(buff, end, "%s", path);
95 return end;
110 bufprint_app_dir(char* buff, char* end) argument
127 return bufprint(buff, end, "%s", s);
131 return end;
135 bufprint_app_dir(char* buff, char* end) argument
155 return bufprint(buff, end, "
159 bufprint_app_dir(char* buff, char* end) argument
168 bufprint_config_path(char* buff, char* end) argument
193 bufprint_config_file(char* buff, char* end, const char* suffix) argument
202 bufprint_temp_dir(char* buff, char* end) argument
234 bufprint_temp_file(char* buff, char* end, const char* suffix) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java131 * bytes at the end).
159 int end = writeAt + 1;
162 ensureCapacity(end);
163 } else if (end > data.length) {
169 cursor = end;
175 int end = writeAt + 2;
178 ensureCapacity(end);
179 } else if (end > data.length) {
186 cursor = end;
192 int end
555 private int end; field in class:ByteArrayAnnotatedOutput.Annotation
568 Annotation(int start, int end, String text) argument
590 setEndIfUnset(int end) argument
601 setEnd(int end) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Duchriter.cpp82 && end == realThat.end;
87 return ustr_hashUCharsN(text, textLength) ^ pos ^ begin ^ end;
98 if(pos < end) {
108 if(pos < end) {
117 pos = end;
129 } else if(position > end) {
130 pos = end;
134 if(pos < end) {
143 if (pos >= begin && pos < end) {
[all...]
/external/icu/icu4c/source/common/
H A Duchriter.cpp82 && end == realThat.end;
87 return ustr_hashUCharsN(text, textLength) ^ pos ^ begin ^ end;
98 if(pos < end) {
108 if(pos < end) {
117 pos = end;
129 } else if(position > end) {
130 pos = end;
134 if(pos < end) {
143 if (pos >= begin && pos < end) {
[all...]
/external/openfst/src/include/fst/
H A Dinterval-set.h41 T end; member in struct:fst::IntervalSet::Interval
43 Interval() : begin(-1), end(-1) {}
45 Interval(T b, T e) : begin(b), end(e) {}
48 return begin < i.begin || (begin == i.begin && end > i.end);
52 return begin == i.begin && end == i.end;
56 return begin != i.begin || end != i.end;
64 end
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJSONParser.cpp63 bool parseConstToken(const CharType* start, const CharType* end, const CharType** tokenEnd, const char* token) argument
65 while (start < end && *token != '\0' && *start++ == *token++) { }
73 bool readInt(const CharType* start, const CharType* end, const CharType** tokenEnd, bool canHaveLeadingZeros) argument
75 if (start == end)
79 while (start < end && '0' <= *start && *start <= '9') {
92 bool parseNumberToken(const CharType* start, const CharType* end, const CharType** tokenEnd) argument
96 if (start == end)
102 if (!readInt(start, end, &start, false))
104 if (start == end) {
113 if (!readInt(start, end,
142 readHexDigits(const CharType* start, const CharType* end, const CharType** tokenEnd, int digits) argument
156 parseStringToken(const CharType* start, const CharType* end, const CharType** tokenEnd) argument
194 parseToken(const CharType* start, const CharType* end, const CharType** tokenStart, const CharType** tokenEnd) argument
271 decodeString(const CharType* start, const CharType* end, StringBuilder* output) argument
324 decodeString(const CharType* start, const CharType* end, String* output) argument
341 buildValue(const CharType* start, const CharType* end, const CharType** valueTokenEnd, int depth) argument
459 const CharType* end = start + length; local
[all...]
/external/ceres-solver/internal/ceres/
H A Dstl_util.h50 ForwardIterator end) {
51 while (begin != end) {
62 ForwardIterator end) {
63 sort(begin, end);
64 ForwardIterator new_end = unique(begin, end);
74 // hash_set, or any other STL container which defines sensible begin(), end(),
85 STLDeleteContainerPointers(container->begin(), container->end());
49 STLDeleteContainerPointers(ForwardIterator begin, ForwardIterator end) argument
61 STLDeleteUniqueContainerPointers(ForwardIterator begin, ForwardIterator end) argument
/external/chromium_org/base/win/
H A Di18n_unittest.cc23 end = languages.end(); scan != end; ++scan) {
35 end = languages.end(); scan != end; ++scan) {
/external/chromium_org/chrome/browser/android/banners/
H A Dapp_banner_utilities.cc20 DCHECK(std::find(codes.begin(), codes.end(), event) != codes.end());
29 DCHECK(std::find(codes.begin(), codes.end(), event) != codes.end());
38 DCHECK(std::find(codes.begin(), codes.end(), event) != codes.end());
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DParserUtilities.h30 inline bool skipString(const CharType*& ptr, const CharType* end, const CharType* name, int length) argument
32 if (end - ptr < length)
40 inline bool skipString(const UChar*& ptr, const UChar* end, const LChar* name, int length) argument
42 if (end - ptr < length)
53 inline bool skipString(const CharType*& ptr, const CharType* end, const char* str) argument
56 if (end - ptr < length)
/external/clang/test/Analysis/inlining/
H A DInlineObjCInstanceMethod.h11 @protocol NSObject - (BOOL)isEqual:(id)object; @end
20 @end
34 @end
37 @end
41 @end
45 @end

Completed in 624 milliseconds

1234567891011>>