Home
last modified time | relevance | path

Searched refs:end (Results 576 - 600 of 10887) sorted by relevance

1...<<21222324252627282930>>...436

/third_party/libabigail/include/
H A Dabg-diff-utils.h218 };// end point
230 /// The end point of the non-diagonal edge is the intermediate point
235 /// The end point of the first diagonal edge is given by the
238 /// The end point of the last diagonal edge is given by the
239 /// snake::end() method. Note that when the snake contains no
240 /// diagonal edge, snake::intermediate(), and snake::end() return the
255 /// Constructor from the beginning, intermediate and end points.
260 /// @param i the intermediate point of the snake. That is, the end
263 /// @param e the end point of the snake. That is the end poin
348 end() const end() function in abigail::diff_utils::snake
355 end(const point& p) end() function in abigail::diff_utils::snake
849 point begin, intermediate, diag_start, end; end_of_fr_d_path_in_k() local
994 point begin, intermediate, diag_start, end; end_of_frr_d_path_in_k_plus_delta() local
1350 point end; ses_len() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
H A DesextcTessellationShaderVertexSpacing.cpp174 for (edges_iterator = result.begin(); edges_iterator != result.end(); edges_iterator++) in getEdgesForIsolinesTessellation()
188 if (edges_iterator == result.end()) in getEdgesForIsolinesTessellation()
204 for (_tess_edges_iterator edges_iterator = result.begin(); edges_iterator != result.end(); ++edges_iterator) in getEdgesForIsolinesTessellation()
208 std::sort(edge_points.begin(), edge_points.end(), compareEdgeByX); in getEdgesForIsolinesTessellation()
277 coordinate_iterator != coordinates.end(); coordinate_iterator++) in getEdgesForQuadsTessellation()
340 std::find(coordinates.begin(), coordinates.end(), corner_coordinate); in getEdgesForQuadsTessellation()
344 if (iterator != coordinates.end()) in getEdgesForQuadsTessellation()
434 /* Retrieve edge's start & end points */ in getEdgesForQuadsTessellation()
440 iterator != coordinates.end(); iterator++) in getEdgesForQuadsTessellation()
450 if (std::find_if(edge.points.begin(), edge.points.end(), in getEdgesForQuadsTessellation()
[all...]
/third_party/gn/src/base/strings/
H A Dstring_number_conversions.cc42 CHR* end = outbuf + kOutputBufSize; in IntToString() local
43 CHR* i = end; in IntToString()
55 return STR(i, end); in IntToString()
141 const_iterator end, in Invoke()
145 while (begin != end && LocalIsWhitespace(*begin)) { in Invoke()
150 if (begin != end && *begin == '-') { in Invoke()
154 } else if (!Negative::Invoke(begin + 1, end, output)) { in Invoke()
158 if (begin != end && *begin == '+') { in Invoke()
161 if (!Positive::Invoke(begin, end, output)) { in Invoke()
179 const_iterator end, in Invoke()
140 Invoke(const_iterator begin, const_iterator end, value_type* output) Invoke() argument
178 Invoke(const_iterator begin, const_iterator end, typename traits::value_type* output) Invoke() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DListFormatter.java237 public CharSequence subSequence(int start, int end) { in subSequence() argument
238 return string.subString(start, end); in subSequence()
282 * @param end
283 * string for the end of a list items, containing {0} for the
289 public ListFormatter(String two, String start, String middle, String end) { in ListFormatter() argument
294 compilePattern(end, new StringBuilder()), in ListFormatter()
298 private ListFormatter(String two, String start, String middle, String end, ULocale locale) { in ListFormatter() argument
302 this.patternHandler = createPatternHandler(two, end); in ListFormatter()
451 StaticHandler(String two, String end) { in StaticHandler() argument
453 endPattern = end; in StaticHandler()
534 createPatternHandler(String two, String end) createPatternHandler() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DListFormatter.java301 public CharSequence subSequence(int start, int end) { in subSequence() argument
302 return string.subString(start, end); in subSequence()
346 * @param end
347 * string for the end of a list items, containing {0} for the
353 public ListFormatter(String two, String start, String middle, String end) { in ListFormatter() argument
358 compilePattern(end, new StringBuilder()), in ListFormatter()
362 private ListFormatter(String two, String start, String middle, String end, ULocale locale) { in ListFormatter() argument
366 this.patternHandler = createPatternHandler(two, end); in ListFormatter()
524 StaticHandler(String two, String end) { in StaticHandler() argument
526 endPattern = end; in StaticHandler()
607 createPatternHandler(String two, String end) createPatternHandler() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Diterator.h102 // Returns a valid end iterator for the underlying container.
104 return UptrVectorIterator(container_, container_->end()); in End()
112 // Handy class for a (begin, end) iterator pair.
122 IteratorType end() const { return end_; } in end() function in spvtools::opt::IteratorRange
132 // Returns a (begin, end) iterator pair for the given iterators.
136 const IteratorType& end) { in make_range()
137 return {begin, end}; in make_range()
140 // Returns a (begin, end) iterator pair for the given iterators.
144 IteratorType&& end) { in make_range()
145 return {std::forward<IteratorType>(begin), std::forward<IteratorType>(end)}; in make_range()
135 make_range(const IteratorType& begin, const IteratorType& end) make_range() argument
143 make_range(IteratorType&& begin, IteratorType&& end) make_range() argument
194 FilterIterator(const SubIterator& end, Predicate predicate) FilterIterator() argument
248 MakeFilterIterator( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIterator() argument
254 MakeFilterIteratorRange( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIteratorRange() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Diterator.h102 // Returns a valid end iterator for the underlying container.
104 return UptrVectorIterator(container_, container_->end()); in End()
112 // Handy class for a (begin, end) iterator pair.
122 IteratorType end() const { return end_; } in end() function in spvtools::opt::IteratorRange
132 // Returns a (begin, end) iterator pair for the given iterators.
136 const IteratorType& end) { in make_range()
137 return {begin, end}; in make_range()
140 // Returns a (begin, end) iterator pair for the given iterators.
144 IteratorType&& end) { in make_range()
145 return {std::forward<IteratorType>(begin), std::forward<IteratorType>(end)}; in make_range()
135 make_range(const IteratorType& begin, const IteratorType& end) make_range() argument
143 make_range(IteratorType&& begin, IteratorType&& end) make_range() argument
194 FilterIterator(const SubIterator& end, Predicate predicate) FilterIterator() argument
248 MakeFilterIterator( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIterator() argument
254 MakeFilterIteratorRange( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIteratorRange() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DArrayRef.h67 ArrayRef(const T *begin, const T *end) in ArrayRef() argument
68 : Data(begin), Length(end - begin) {} in ArrayRef()
94 : Data(Vec.begin() == Vec.end() ? (T*)nullptr : Vec.begin()), in ArrayRef()
130 iterator end() const { return Data + Length; } in end() function in llvm::ArrayRef
132 reverse_iterator rbegin() const { return reverse_iterator(end()); } in rbegin()
158 std::uninitialized_copy(begin(), end(), Buff); in copy()
166 return std::equal(begin(), end(), RHS.begin()); in equals()
194 return ArrayRef<T>(find_if_not(*this, Pred), end()); in drop_while()
200 return ArrayRef<T>(find_if(*this, Pred), end()); in drop_until()
303 MutableArrayRef(T *begin, T *end)
452 makeArrayRef(const T *begin, const T *end) makeArrayRef() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DArrayRef.h74 ArrayRef(const T *begin, const T *end) in ArrayRef() argument
75 : Data(begin), Length(end - begin) {} in ArrayRef()
108 : Data(Vec.begin() == Vec.end() ? (T*)nullptr : Vec.begin()), in ArrayRef()
147 iterator end() const { return Data + Length; } in end() function in llvm::ArrayRef
149 reverse_iterator rbegin() const { return reverse_iterator(end()); } in rbegin()
175 std::uninitialized_copy(begin(), end(), Buff); in copy()
183 return std::equal(begin(), end(), RHS.begin()); in equals()
211 return ArrayRef<T>(find_if_not(*this, Pred), end()); in drop_while()
217 return ArrayRef<T>(find_if(*this, Pred), end()); in drop_until()
319 MutableArrayRef(T *begin, T *end)
472 makeArrayRef(const T *begin, const T *end) makeArrayRef() argument
[all...]
/third_party/spirv-tools/source/opt/
H A Diterator.h102 // Returns a valid end iterator for the underlying container.
104 return UptrVectorIterator(container_, container_->end()); in End()
112 // Handy class for a (begin, end) iterator pair.
122 IteratorType end() const { return end_; } in end() function in spvtools::opt::IteratorRange
132 // Returns a (begin, end) iterator pair for the given iterators.
136 const IteratorType& end) { in make_range()
137 return {begin, end}; in make_range()
140 // Returns a (begin, end) iterator pair for the given iterators.
144 IteratorType&& end) { in make_range()
145 return {std::forward<IteratorType>(begin), std::forward<IteratorType>(end)}; in make_range()
135 make_range(const IteratorType& begin, const IteratorType& end) make_range() argument
143 make_range(IteratorType&& begin, IteratorType&& end) make_range() argument
194 FilterIterator(const SubIterator& end, Predicate predicate) FilterIterator() argument
248 MakeFilterIterator( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIterator() argument
254 MakeFilterIteratorRange( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIteratorRange() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Djson.c21 char *end = txt + maxlen; in json_escape_string() local
25 if (txt + 4 >= end) in json_escape_string()
53 txt += os_snprintf(txt, end - txt, "\\u%04x", in json_escape_string()
64 static char * json_parse_string(const char **json_pos, const char *end) in json_parse_string() argument
73 max_len = end - pos + 1; in json_parse_string()
81 for (; pos < end; pos++) { in json_parse_string()
99 case '\"': /* end string */ in json_parse_string()
106 if (pos >= end) { in json_parse_string()
127 if (end - pos < 5 || in json_parse_string()
160 static int json_parse_number(const char **json_pos, const char *end, in json_parse_number() argument
223 const char *pos, *end; json_parse() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Djson.c21 char *end = txt + maxlen; in json_escape_string() local
25 if (txt + 4 >= end) in json_escape_string()
53 txt += os_snprintf(txt, end - txt, "\\u%04x", in json_escape_string()
64 static char * json_parse_string(const char **json_pos, const char *end) in json_parse_string() argument
73 max_len = end - pos + 1; in json_parse_string()
81 for (; pos < end; pos++) { in json_parse_string()
99 case '\"': /* end string */ in json_parse_string()
106 if (pos >= end) { in json_parse_string()
127 if (end - pos < 5 || in json_parse_string()
160 static int json_parse_number(const char **json_pos, const char *end, in json_parse_number() argument
223 const char *pos, *end; json_parse() local
[all...]
/third_party/ltp/lib/
H A Dget_path.c57 const char *end; in tst_get_path() local
64 end = strchr(start, ':'); in tst_get_path()
66 if (end != NULL) in tst_get_path()
67 snprintf(buf, MIN(buf_len, (size_t) (end - start + 1)), in tst_get_path()
84 * If there is no '/' ad the end of path from $PATH add it. in tst_get_path()
98 start = end + 1; in tst_get_path()
100 } while (end != NULL); in tst_get_path()
/third_party/node/test/parallel/
H A Dtest-http-response-splitting.js53 res.end('ok');
56 const end = 'HTTP/1.1\r\n\r\n';
58 client.write(`GET ${str} ${end}`);
59 client.write(`GET / ${end}`);
60 client.write(`GET / ${end}`);
61 client.end();
/third_party/ninja/src/
H A Ddepfile_parser.in.cc33 // How do you end a line with a backslash? The netbsd Make docs suggest
41 // the end of a filename.
49 // end: end of input. in Parse()
52 char* end = in + content->size(); in Parse() local
57 while (in < end) { in Parse()
71 re2c:define:YYLIMIT = end; in Parse()
93 // 2N backslashes plus space -> 2N backslashes, end of filename. in Parse()
124 // nor EOF follows. In that case it'd be the : at the end of a target in Parse()
178 std::vector<StringPiece>::iterator pos = std::find(ins_.begin(), ins_.end(), piec in Parse()
[all...]
/third_party/node/benchmark/es/
H A Dstring-concatenations.js30 bench.end(n);
36 bench.end(n);
42 bench.end(n);
48 bench.end(n);
54 bench.end(n);
60 bench.end(n);
/third_party/ltp/testcases/kernel/mce-test/hwpoison/
H A Dtring.c17 unsigned short end; member
26 return r->start == r->end; in mce_ring_empty()
33 if (r->start == r->end) in mce_ring_get()
45 next = (r->end + 1) % MCE_RING_SIZE; in mce_ring_add()
48 r->ring[r->end] = pfn; in mce_ring_add()
50 r->end = next; in mce_ring_add()
/third_party/ltp/testcases/kernel/mce-test/tsrc/
H A Dtring.c17 unsigned short end; member
26 return r->start == r->end; in mce_ring_empty()
33 if (r->start == r->end) in mce_ring_get()
45 next = (r->end + 1) % MCE_RING_SIZE; in mce_ring_add()
48 r->ring[r->end] = pfn; in mce_ring_add()
50 r->end = next; in mce_ring_add()
/third_party/node/deps/openssl/openssl/crypto/bf/
H A Dbf_skey.c26 const unsigned char *d, *end; in BF_set_key() local
35 end = &(data[len]); in BF_set_key()
38 if (d >= end) in BF_set_key()
43 if (d >= end) in BF_set_key()
48 if (d >= end) in BF_set_key()
53 if (d >= end) in BF_set_key()
/third_party/openssl/crypto/bf/
H A Dbf_skey.c26 const unsigned char *d, *end; in BF_set_key() local
35 end = &(data[len]); in BF_set_key()
38 if (d >= end) in BF_set_key()
43 if (d >= end) in BF_set_key()
48 if (d >= end) in BF_set_key()
53 if (d >= end) in BF_set_key()
/third_party/skia/third_party/externals/brotli/js/
H A Dpolyfill.js18 Array.prototype.copyWithin = function(target, start, end) {
23 var count = Math.min(Math.min(end | 0, len) - from, len - to);
42 value: function(value, start, end) {
43 end = end | 0;
46 while (k < end) {
/third_party/skia/third_party/externals/piex/src/binary_parse/
H A Dcached_paged_byte_array.cc20 // at the begining of the vector, the most recent at the end.
35 const unsigned char** end, in getPage()
42 *end = cached_pages_[cache_index].end; in getPage()
45 // Remove the page to insert it at the end of the cache later. in getPage()
50 paged_byte_array_->getPage(page_index, begin, end, page); in getPage()
58 // Cache the most recently used page to the end of the vector. in getPage()
63 cache_page.end = *end; in getPage()
33 getPage(size_t page_index, const unsigned char** begin, const unsigned char** end, PagedByteArray::PagePtr* page) const getPage() argument
/third_party/protobuf/php/src/Google/Protobuf/Internal/DescriptorProto/
H A DReservedRange.php31 * Generated from protobuf field <code>optional int32 end = 2;</code>
33 protected $end = null; variable
43 * @type int $end
91 * Generated from protobuf field <code>optional int32 end = 2;</code>
96 return isset($this->end) ? $this->end : 0;
101 return isset($this->end);
106 unset($this->end);
112 * Generated from protobuf field <code>optional int32 end = 2;</code>
119 $this->end variable
[all...]
/third_party/protobuf/php/src/Google/Protobuf/Internal/EnumDescriptorProto/
H A DEnumReservedRange.php33 * Generated from protobuf field <code>optional int32 end = 2;</code>
35 protected $end = null; variable
45 * @type int $end
93 * Generated from protobuf field <code>optional int32 end = 2;</code>
98 return isset($this->end) ? $this->end : 0;
103 return isset($this->end);
108 unset($this->end);
114 * Generated from protobuf field <code>optional int32 end = 2;</code>
121 $this->end variable
[all...]
/third_party/skia/docs/examples/
H A Dbug583299.cpp834 SkScalar end = SkDoubleToScalar(wedge.fArc1Angles[1] * 180.f / SK_ScalarPI); in REG_FIDDLE() local
835 if (end < start) { in REG_FIDDLE()
836 end += 360; in REG_FIDDLE()
838 path.arcTo(oval1, start, end - start, false); in REG_FIDDLE()
840 path.arcTo(oval2, end, start - end, false); in REG_FIDDLE()

Completed in 15 milliseconds

1...<<21222324252627282930>>...436