/third_party/icu/icu4c/source/test/intltest/ |
H A D | bidiconf.cpp | 44 UBool parseLevels(const char *&start); 45 UBool parseOrdering(const char *start); 46 UBool parseInputStringFromBiDiClasses(const char *&start); 82 UBool BiDiConformanceTest::parseLevels(const char *&start) { in parseLevels() argument 85 while(*start!=0 && *(start=u_skipWhitespace(start))!=0 && *start!=';') { in parseLevels() 86 if(*start=='x') { in parseLevels() 88 ++start; in parseLevels() 106 parseOrdering(const char *start) parseOrdering() argument 169 parseInputStringFromBiDiClasses(const char *&start) parseInputStringFromBiDiClasses() argument 295 const char *start=u_skipWhitespace(line); TestBidiTest() local 459 const char *start=u_skipWhitespace(line); TestBidiCharacterTest() local [all...] |
/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | reader.js | 19 * @param {number} start Start of the data. 23 function readBool(bufferDecoder, start) { 24 const {lowBits, highBits} = bufferDecoder.getVarint(start); 31 * @param {number} start Start of the data. 35 function readBytes(bufferDecoder, start) { 36 return readDelimited(bufferDecoder, start).asByteString(); 42 * @param {number} start Start of the data. 46 function readInt32(bufferDecoder, start) { 50 return bufferDecoder.getUnsignedVarint32At(start) | 0; 56 * @param {number} start Star [all...] |
/third_party/mesa3d/src/imagination/rogue/ |
H A D | rogue_encode.c | 132 { .start = 47, .num = 1, }, 152 { .start = 100, .num = 1, }, 164 { .start = 43, .num = 2, }, /* SB3(2..1) */ 165 { .start = 54, .num = 1, }, /* SB3(0) */ 166 { .start = 34, .num = 3, }, /* S3(10..8) */ 167 { .start = 41, .num = 2, }, /* S3(7..6) */ 168 { .start = 53, .num = 6, }, /* S3(5..0) */ 179 { .start = 59, .num = 1, }, 190 { .start = 59, .num = 1, }, /* SB0(2) */ 191 { .start [all...] |
/third_party/node/test/fixtures/wpt/FileAPI/blob/ |
H A D | Blob-slice.any.js | 66 [{start: -6, contents: "STRING"}, 67 {start: -12, contents: "PASSSTRING"}, 68 {start: 4, contents: "STRING"}, 69 {start: 12, contents: ""}, 70 {start: 0, end: -6, contents: "PASS"}, 71 {start: 0, end: -12, contents: ""}, 72 {start: 0, end: 4, contents: "PASS"}, 73 {start: 0, end: 12, contents: "PASSSTRING"}, 74 {start: 7, end: 4, contents: ""}] 80 [{start [all...] |
/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
H A D | test-fixed-dtoa.cc | 48 CHECK_EQ("1", buffer.start()); in TEST() 52 CHECK_EQ("1", buffer.start()); in TEST() 56 CHECK_EQ("1", buffer.start()); in TEST() 60 CHECK_EQ("4294967295", buffer.start()); in TEST() 64 CHECK_EQ("4294967296", buffer.start()); in TEST() 68 CHECK_EQ("1", buffer.start()); in TEST() 73 CHECK_EQ("999999999999999868928", buffer.start()); in TEST() 78 CHECK_EQ("6999999999999998951424", buffer.start()); in TEST() 82 CHECK_EQ("15", buffer.start()); in TEST() 86 CHECK_EQ("155", buffer.start()); in TEST() [all...] |
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
H A D | json.cc | 406 void Parse(const Char* start, size_t length) { in Parse() argument 407 start_pos_ = start; in Parse() 408 const Char* end = start + length; in Parse() 410 ParseValue(start, end, &tokenEnd, 0); in Parse() 436 static bool ParseConstToken(const Char* start, in ParseConstToken() argument 441 while (start < end && *token != '\0' && *start++ == *token++) { in ParseConstToken() 445 *token_end = start; in ParseConstToken() 449 static bool ReadInt(const Char* start, in ReadInt() argument 453 if (start in ReadInt() 469 ParseNumberToken(const Char* start, const Char* end, const Char** token_end) ParseNumberToken() argument 519 ReadHexDigits(const Char* start, const Char* end, const Char** token_end, int digits) ReadHexDigits() argument 535 ParseStringToken(const Char* start, const Char* end, const Char** token_end) ParseStringToken() argument 575 SkipComment(const Char* start, const Char* end, const Char** comment_end) SkipComment() argument 620 SkipWhitespaceAndComments(const Char* start, const Char* end, const Char** whitespace_end) SkipWhitespaceAndComments() argument 638 ParseToken(const Char* start, const Char* end, const Char** tokenStart, const Char** token_end) ParseToken() argument 712 DecodeString(const Char* start, const Char* end, std::vector<uint16_t>* output) DecodeString() argument 831 ParseValue(const Char* start, const Char* end, const Char** value_token_end, int depth) ParseValue() argument [all...] |
/third_party/mesa3d/src/broadcom/cle/ |
H A D | v3d_packet_helpers.h | 63 __gen_mbo(uint32_t start, uint32_t end) in __gen_mbo() argument 65 return (~0ull >> (64 - (end - start + 1))) << start; in __gen_mbo() 69 __gen_uint(uint64_t v, uint32_t start, uint32_t end) in __gen_uint() argument 74 const int width = end - start + 1; in __gen_uint() 81 return v << start; in __gen_uint() 85 __gen_sint(int64_t v, uint32_t start, uint32_t end) in __gen_sint() argument 87 const int width = end - start + 1; in __gen_sint() 101 return (v & mask) << start; in __gen_sint() 105 __gen_offset(uint64_t v, uint32_t start, uint32_ argument 125 __gen_sfixed(float v, uint32_t start, uint32_t end, uint32_t fract_bits) __gen_sfixed() argument 144 __gen_ufixed(float v, uint32_t start, uint32_t end, uint32_t fract_bits) __gen_ufixed() argument 162 __gen_unpack_uint(const uint8_t *restrict cl, uint32_t start, uint32_t end) __gen_unpack_uint() argument 176 __gen_unpack_sint(const uint8_t *restrict cl, uint32_t start, uint32_t end) __gen_unpack_sint() argument 186 __gen_unpack_sfixed(const uint8_t *restrict cl, uint32_t start, uint32_t end, uint32_t fractional_size) __gen_unpack_sfixed() argument 194 __gen_unpack_ufixed(const uint8_t *restrict cl, uint32_t start, uint32_t end, uint32_t fractional_size) __gen_unpack_ufixed() argument 202 __gen_unpack_float(const uint8_t *restrict cl, uint32_t start, uint32_t end) __gen_unpack_float() argument 213 __gen_unpack_f187(const uint8_t *restrict cl, uint32_t start, uint32_t end) __gen_unpack_f187() argument [all...] |
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | trietest.c | 40 UChar32 start, limit; member 57 _testFoldedValue32(UNewTrie *trie, UChar32 start, int32_t offset) { in _testFoldedValue32() argument 64 limit=start+0x400; in _testFoldedValue32() 65 while(start<limit) { in _testFoldedValue32() 66 value=utrie_get32(trie, start, &inBlockZero); in _testFoldedValue32() 68 start+=UTRIE_DATA_BLOCK_LENGTH; in _testFoldedValue32() 71 ++start; in _testFoldedValue32() 88 _testFoldedValue16(UNewTrie *trie, UChar32 start, int32_t offset) { in _testFoldedValue16() argument 95 limit=start+0x400; in _testFoldedValue16() 96 while(start<limi in _testFoldedValue16() 129 _testEnumRange(const void *context, UChar32 start, UChar32 limit, uint32_t value) _testEnumRange() argument 267 UChar32 start, limit; testTrieRangesWithMalloc() local 461 UChar32 start, limit; testTrieRanges() local [all...] |
/third_party/python/Objects/ |
H A D | sliceobject.c | 109 /* start, stop, and step are python objects with None indicating no 114 PySlice_New(PyObject *start, PyObject *stop, PyObject *step) in PySlice_New() argument 119 if (start == NULL) { in PySlice_New() 120 start = Py_None; in PySlice_New() 142 Py_INCREF(start); in PySlice_New() 143 obj->start = start; in PySlice_New() 154 PyObject *start, *end, *slice; in _PySlice_FromIndices() local 155 start = PyLong_FromSsize_t(istart); in _PySlice_FromIndices() 156 if (!start) in _PySlice_FromIndices() 171 PySlice_GetIndices(PyObject *_r, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step) PySlice_GetIndices() argument 203 PySlice_Unpack(PyObject *_r, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step) PySlice_Unpack() argument 249 PySlice_AdjustIndices(Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t step) PySlice_AdjustIndices() argument 293 PySlice_GetIndicesEx(PyObject *_r, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength) PySlice_GetIndicesEx() argument 306 PyObject *start, *stop, *step; slice_new() local 386 PyObject *start=NULL, *stop=NULL, *step=NULL; _PySlice_GetLongIndices() local 527 PyObject *start, *stop, *step; slice_indices() local [all...] |
/third_party/mbedtls/library/ |
H A D | asn1write.c | 24 int mbedtls_asn1_write_len(unsigned char **p, const unsigned char *start, size_t len) in mbedtls_asn1_write_len() argument 40 if (required > (*p - start)) { in mbedtls_asn1_write_len() 56 int mbedtls_asn1_write_tag(unsigned char **p, const unsigned char *start, unsigned char tag) in mbedtls_asn1_write_tag() argument 58 if (*p - start < 1) { in mbedtls_asn1_write_tag() 70 const unsigned char *start, in mbedtls_asn1_write_len_and_tag() 76 MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(p, start, len)); in mbedtls_asn1_write_len_and_tag() 77 MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(p, start, tag)); in mbedtls_asn1_write_len_and_tag() 82 int mbedtls_asn1_write_raw_buffer(unsigned char **p, const unsigned char *start, in mbedtls_asn1_write_raw_buffer() argument 87 if (*p < start || (size_t) (*p - start) < siz in mbedtls_asn1_write_raw_buffer() 69 mbedtls_asn1_write_len_and_tag(unsigned char **p, const unsigned char *start, size_t len, unsigned char tag) mbedtls_asn1_write_len_and_tag() argument 99 mbedtls_asn1_write_mpi(unsigned char **p, const unsigned char *start, const mbedtls_mpi *X) mbedtls_asn1_write_mpi() argument 140 mbedtls_asn1_write_null(unsigned char **p, const unsigned char *start) mbedtls_asn1_write_null() argument 147 mbedtls_asn1_write_oid(unsigned char **p, const unsigned char *start, const char *oid, size_t oid_len) mbedtls_asn1_write_oid() argument 158 mbedtls_asn1_write_algorithm_identifier(unsigned char **p, const unsigned char *start, const char *oid, size_t oid_len, size_t par_len) mbedtls_asn1_write_algorithm_identifier() argument 165 mbedtls_asn1_write_algorithm_identifier_ext(unsigned char **p, const unsigned char *start, const char *oid, size_t oid_len, size_t par_len, int has_par) mbedtls_asn1_write_algorithm_identifier_ext() argument 186 mbedtls_asn1_write_bool(unsigned char **p, const unsigned char *start, int boolean) mbedtls_asn1_write_bool() argument 200 asn1_write_tagged_int(unsigned char **p, const unsigned char *start, int val, int tag) asn1_write_tagged_int() argument 224 mbedtls_asn1_write_int(unsigned char **p, const unsigned char *start, int val) mbedtls_asn1_write_int() argument 229 mbedtls_asn1_write_enum(unsigned char **p, const unsigned char *start, int val) mbedtls_asn1_write_enum() argument 234 mbedtls_asn1_write_tagged_string(unsigned char **p, const unsigned char *start, int tag, const char *text, size_t text_len) mbedtls_asn1_write_tagged_string() argument 247 mbedtls_asn1_write_utf8_string(unsigned char **p, const unsigned char *start, const char *text, size_t text_len) mbedtls_asn1_write_utf8_string() argument 253 mbedtls_asn1_write_printable_string(unsigned char **p, const unsigned char *start, const char *text, size_t text_len) mbedtls_asn1_write_printable_string() argument 260 mbedtls_asn1_write_ia5_string(unsigned char **p, const unsigned char *start, const char *text, size_t text_len) mbedtls_asn1_write_ia5_string() argument 266 mbedtls_asn1_write_named_bitstring(unsigned char **p, const unsigned char *start, const unsigned char *buf, size_t bits) mbedtls_asn1_write_named_bitstring() argument 310 mbedtls_asn1_write_bitstring(unsigned char **p, const unsigned char *start, const unsigned char *buf, size_t bits) mbedtls_asn1_write_bitstring() argument 339 mbedtls_asn1_write_octet_string(unsigned char **p, const unsigned char *start, const unsigned char *buf, size_t size) mbedtls_asn1_write_octet_string() argument [all...] |
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | unistr.h | 390 * [`start`, `start + length`) with the characters 392 * (The parameters "start" and "length" are not applied to the other text "text".) 393 * @param start the offset at which the compare operation begins 403 inline int8_t compare(int32_t start, 409 * [`start`, `start + length`) with the characters 412 * @param start the offset at which the compare operation begins 415 * @param srcStart the offset into `srcText` to start comparison 424 inline int8_t compare(int32_t start, 3837 pinIndices(int32_t& start, int32_t& _length) const pinIndices() argument 3948 doCompare(int32_t start, int32_t thisLength, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const doCompare() argument 3963 doEqualsSubstring(int32_t start, int32_t thisLength, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const doEqualsSubstring() argument 4013 compare(int32_t start, int32_t _length, const UnicodeString& srcText) const compare() argument 4024 compare(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const compare() argument 4032 compare(int32_t start, int32_t _length, const char16_t *srcChars) const compare() argument 4038 compare(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) const compare() argument 4046 compareBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) const compareBetween() argument 4055 doCompareCodePointOrder(int32_t start, int32_t thisLength, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const doCompareCodePointOrder() argument 4074 compareCodePointOrder(int32_t start, int32_t _length, const UnicodeString& srcText) const compareCodePointOrder() argument 4085 compareCodePointOrder(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const compareCodePointOrder() argument 4093 compareCodePointOrder(int32_t start, int32_t _length, const char16_t *srcChars) const compareCodePointOrder() argument 4099 compareCodePointOrder(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) const compareCodePointOrder() argument 4107 compareCodePointOrderBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) const compareCodePointOrderBetween() argument 4116 doCaseCompare(int32_t start, int32_t thisLength, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const doCaseCompare() argument 4137 caseCompare(int32_t start, int32_t _length, const UnicodeString &srcText, uint32_t options) const caseCompare() argument 4152 caseCompare(int32_t start, int32_t _length, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const caseCompare() argument 4162 caseCompare(int32_t start, int32_t _length, const char16_t *srcChars, uint32_t options) const caseCompare() argument 4170 caseCompare(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength, uint32_t options) const caseCompare() argument 4180 caseCompareBetween(int32_t start, int32_t limit, const UnicodeString &srcText, int32_t srcStart, int32_t srcLimit, uint32_t options) const caseCompareBetween() argument 4190 indexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const indexOf() argument 4217 indexOf(const UnicodeString& text, int32_t start, int32_t _length) const indexOf() argument 4231 indexOf(ConstChar16Ptr srcChars, int32_t srcLength, int32_t start, int32_t _length) const indexOf() argument 4238 indexOf(char16_t c, int32_t start, int32_t _length) const indexOf() argument 4244 indexOf(UChar32 c, int32_t start, int32_t _length) const indexOf() argument 4272 lastIndexOf(ConstChar16Ptr srcChars, int32_t srcLength, int32_t start, int32_t _length) const lastIndexOf() argument 4287 lastIndexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const lastIndexOf() argument 4303 lastIndexOf(const UnicodeString& text, int32_t start, int32_t _length) const lastIndexOf() argument 4320 lastIndexOf(char16_t c, int32_t start, int32_t _length) const lastIndexOf() argument 4326 lastIndexOf(UChar32 c, int32_t start, int32_t _length) const lastIndexOf() argument 4419 replace(int32_t start, int32_t _length, const UnicodeString& srcText) replace() argument 4425 replace(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) replace() argument 4433 replace(int32_t start, int32_t _length, ConstChar16Ptr srcChars, int32_t srcLength) replace() argument 4440 replace(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) replace() argument 4448 replace(int32_t start, int32_t _length, char16_t srcChar) replace() argument 4454 replaceBetween(int32_t start, int32_t limit, const UnicodeString& srcText) replaceBetween() argument 4460 replaceBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) replaceBetween() argument 4474 findAndReplace(int32_t start, int32_t _length, const UnicodeString& oldText, const UnicodeString& newText) findAndReplace() argument 4485 doExtract(int32_t start, int32_t _length, UnicodeString& target) const doExtract() argument 4491 extract(int32_t start, int32_t _length, Char16Ptr target, int32_t targetStart) const extract() argument 4498 extract(int32_t start, int32_t _length, UnicodeString& target) const extract() argument 4506 extract(int32_t start, int32_t _length, char *dst, const char *codepage) const extract() argument 4519 extractBetween(int32_t start, int32_t limit, char16_t *dst, int32_t dstStart) const extractBetween() argument 4529 tempSubStringBetween(int32_t start, int32_t limit) const tempSubStringBetween() argument 4687 insert(int32_t start, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) insert() argument 4694 insert(int32_t start, const UnicodeString& srcText) insert() argument 4699 insert(int32_t start, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) insert() argument 4706 insert(int32_t start, ConstChar16Ptr srcChars, int32_t srcLength) insert() argument 4712 insert(int32_t start, char16_t srcChar) insert() argument 4717 insert(int32_t start, UChar32 srcChar) insert() argument 4735 remove(int32_t start, int32_t _length) remove() argument 4746 removeBetween(int32_t start, int32_t limit) removeBetween() argument 4751 retainBetween(int32_t start, int32_t limit) retainBetween() argument 4776 reverse(int32_t start, int32_t _length) reverse() argument [all...] |
/third_party/icu/icu4c/source/common/unicode/ |
H A D | unistr.h | 390 * [`start`, `start + length`) with the characters 392 * (The parameters "start" and "length" are not applied to the other text "text".) 393 * @param start the offset at which the compare operation begins 403 inline int8_t compare(int32_t start, 409 * [`start`, `start + length`) with the characters 412 * @param start the offset at which the compare operation begins 415 * @param srcStart the offset into `srcText` to start comparison 424 inline int8_t compare(int32_t start, 3824 pinIndices(int32_t& start, int32_t& _length) const pinIndices() argument 3935 doCompare(int32_t start, int32_t thisLength, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const doCompare() argument 3985 compare(int32_t start, int32_t _length, const UnicodeString& srcText) const compare() argument 3996 compare(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const compare() argument 4004 compare(int32_t start, int32_t _length, const char16_t *srcChars) const compare() argument 4010 compare(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) const compare() argument 4018 compareBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) const compareBetween() argument 4027 doCompareCodePointOrder(int32_t start, int32_t thisLength, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const doCompareCodePointOrder() argument 4046 compareCodePointOrder(int32_t start, int32_t _length, const UnicodeString& srcText) const compareCodePointOrder() argument 4057 compareCodePointOrder(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const compareCodePointOrder() argument 4065 compareCodePointOrder(int32_t start, int32_t _length, const char16_t *srcChars) const compareCodePointOrder() argument 4071 compareCodePointOrder(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) const compareCodePointOrder() argument 4079 compareCodePointOrderBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) const compareCodePointOrderBetween() argument 4088 doCaseCompare(int32_t start, int32_t thisLength, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const doCaseCompare() argument 4109 caseCompare(int32_t start, int32_t _length, const UnicodeString &srcText, uint32_t options) const caseCompare() argument 4124 caseCompare(int32_t start, int32_t _length, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const caseCompare() argument 4134 caseCompare(int32_t start, int32_t _length, const char16_t *srcChars, uint32_t options) const caseCompare() argument 4142 caseCompare(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength, uint32_t options) const caseCompare() argument 4152 caseCompareBetween(int32_t start, int32_t limit, const UnicodeString &srcText, int32_t srcStart, int32_t srcLimit, uint32_t options) const caseCompareBetween() argument 4162 indexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const indexOf() argument 4189 indexOf(const UnicodeString& text, int32_t start, int32_t _length) const indexOf() argument 4203 indexOf(ConstChar16Ptr srcChars, int32_t srcLength, int32_t start, int32_t _length) const indexOf() argument 4210 indexOf(char16_t c, int32_t start, int32_t _length) const indexOf() argument 4216 indexOf(UChar32 c, int32_t start, int32_t _length) const indexOf() argument 4244 lastIndexOf(ConstChar16Ptr srcChars, int32_t srcLength, int32_t start, int32_t _length) const lastIndexOf() argument 4259 lastIndexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const lastIndexOf() argument 4275 lastIndexOf(const UnicodeString& text, int32_t start, int32_t _length) const lastIndexOf() argument 4292 lastIndexOf(char16_t c, int32_t start, int32_t _length) const lastIndexOf() argument 4298 lastIndexOf(UChar32 c, int32_t start, int32_t _length) const lastIndexOf() argument 4392 replace(int32_t start, int32_t _length, const UnicodeString& srcText) replace() argument 4398 replace(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) replace() argument 4406 replace(int32_t start, int32_t _length, ConstChar16Ptr srcChars, int32_t srcLength) replace() argument 4413 replace(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) replace() argument 4421 replace(int32_t start, int32_t _length, char16_t srcChar) replace() argument 4427 replaceBetween(int32_t start, int32_t limit, const UnicodeString& srcText) replaceBetween() argument 4433 replaceBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) replaceBetween() argument 4447 findAndReplace(int32_t start, int32_t _length, const UnicodeString& oldText, const UnicodeString& newText) findAndReplace() argument 4458 doExtract(int32_t start, int32_t _length, UnicodeString& target) const doExtract() argument 4464 extract(int32_t start, int32_t _length, Char16Ptr target, int32_t targetStart) const extract() argument 4471 extract(int32_t start, int32_t _length, UnicodeString& target) const extract() argument 4479 extract(int32_t start, int32_t _length, char *dst, const char *codepage) const extract() argument 4492 extractBetween(int32_t start, int32_t limit, char16_t *dst, int32_t dstStart) const extractBetween() argument 4502 tempSubStringBetween(int32_t start, int32_t limit) const tempSubStringBetween() argument 4660 insert(int32_t start, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) insert() argument 4667 insert(int32_t start, const UnicodeString& srcText) insert() argument 4672 insert(int32_t start, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) insert() argument 4679 insert(int32_t start, ConstChar16Ptr srcChars, int32_t srcLength) insert() argument 4685 insert(int32_t start, char16_t srcChar) insert() argument 4690 insert(int32_t start, UChar32 srcChar) insert() argument 4708 remove(int32_t start, int32_t _length) remove() argument 4719 removeBetween(int32_t start, int32_t limit) removeBetween() argument 4724 retainBetween(int32_t start, int32_t limit) retainBetween() argument 4749 reverse(int32_t start, int32_t _length) reverse() argument [all...] |
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | unistr.h | 390 * [`start`, `start + length`) with the characters 392 * (The parameters "start" and "length" are not applied to the other text "text".) 393 * @param start the offset at which the compare operation begins 403 inline int8_t compare(int32_t start, 409 * [`start`, `start + length`) with the characters 412 * @param start the offset at which the compare operation begins 415 * @param srcStart the offset into `srcText` to start comparison 424 inline int8_t compare(int32_t start, 3824 pinIndices(int32_t& start, int32_t& _length) const pinIndices() argument 3935 doCompare(int32_t start, int32_t thisLength, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const doCompare() argument 3985 compare(int32_t start, int32_t _length, const UnicodeString& srcText) const compare() argument 3996 compare(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const compare() argument 4004 compare(int32_t start, int32_t _length, const char16_t *srcChars) const compare() argument 4010 compare(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) const compare() argument 4018 compareBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) const compareBetween() argument 4027 doCompareCodePointOrder(int32_t start, int32_t thisLength, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const doCompareCodePointOrder() argument 4046 compareCodePointOrder(int32_t start, int32_t _length, const UnicodeString& srcText) const compareCodePointOrder() argument 4057 compareCodePointOrder(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const compareCodePointOrder() argument 4065 compareCodePointOrder(int32_t start, int32_t _length, const char16_t *srcChars) const compareCodePointOrder() argument 4071 compareCodePointOrder(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) const compareCodePointOrder() argument 4079 compareCodePointOrderBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) const compareCodePointOrderBetween() argument 4088 doCaseCompare(int32_t start, int32_t thisLength, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const doCaseCompare() argument 4109 caseCompare(int32_t start, int32_t _length, const UnicodeString &srcText, uint32_t options) const caseCompare() argument 4124 caseCompare(int32_t start, int32_t _length, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const caseCompare() argument 4134 caseCompare(int32_t start, int32_t _length, const char16_t *srcChars, uint32_t options) const caseCompare() argument 4142 caseCompare(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength, uint32_t options) const caseCompare() argument 4152 caseCompareBetween(int32_t start, int32_t limit, const UnicodeString &srcText, int32_t srcStart, int32_t srcLimit, uint32_t options) const caseCompareBetween() argument 4162 indexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const indexOf() argument 4189 indexOf(const UnicodeString& text, int32_t start, int32_t _length) const indexOf() argument 4203 indexOf(ConstChar16Ptr srcChars, int32_t srcLength, int32_t start, int32_t _length) const indexOf() argument 4210 indexOf(char16_t c, int32_t start, int32_t _length) const indexOf() argument 4216 indexOf(UChar32 c, int32_t start, int32_t _length) const indexOf() argument 4244 lastIndexOf(ConstChar16Ptr srcChars, int32_t srcLength, int32_t start, int32_t _length) const lastIndexOf() argument 4259 lastIndexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const lastIndexOf() argument 4275 lastIndexOf(const UnicodeString& text, int32_t start, int32_t _length) const lastIndexOf() argument 4292 lastIndexOf(char16_t c, int32_t start, int32_t _length) const lastIndexOf() argument 4298 lastIndexOf(UChar32 c, int32_t start, int32_t _length) const lastIndexOf() argument 4392 replace(int32_t start, int32_t _length, const UnicodeString& srcText) replace() argument 4398 replace(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) replace() argument 4406 replace(int32_t start, int32_t _length, ConstChar16Ptr srcChars, int32_t srcLength) replace() argument 4413 replace(int32_t start, int32_t _length, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) replace() argument 4421 replace(int32_t start, int32_t _length, char16_t srcChar) replace() argument 4427 replaceBetween(int32_t start, int32_t limit, const UnicodeString& srcText) replaceBetween() argument 4433 replaceBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) replaceBetween() argument 4447 findAndReplace(int32_t start, int32_t _length, const UnicodeString& oldText, const UnicodeString& newText) findAndReplace() argument 4458 doExtract(int32_t start, int32_t _length, UnicodeString& target) const doExtract() argument 4464 extract(int32_t start, int32_t _length, Char16Ptr target, int32_t targetStart) const extract() argument 4471 extract(int32_t start, int32_t _length, UnicodeString& target) const extract() argument 4479 extract(int32_t start, int32_t _length, char *dst, const char *codepage) const extract() argument 4492 extractBetween(int32_t start, int32_t limit, char16_t *dst, int32_t dstStart) const extractBetween() argument 4502 tempSubStringBetween(int32_t start, int32_t limit) const tempSubStringBetween() argument 4660 insert(int32_t start, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) insert() argument 4667 insert(int32_t start, const UnicodeString& srcText) insert() argument 4672 insert(int32_t start, const char16_t *srcChars, int32_t srcStart, int32_t srcLength) insert() argument 4679 insert(int32_t start, ConstChar16Ptr srcChars, int32_t srcLength) insert() argument 4685 insert(int32_t start, char16_t srcChar) insert() argument 4690 insert(int32_t start, UChar32 srcChar) insert() argument 4708 remove(int32_t start, int32_t _length) remove() argument 4719 removeBetween(int32_t start, int32_t limit) removeBetween() argument 4724 retainBetween(int32_t start, int32_t limit) retainBetween() argument 4749 reverse(int32_t start, int32_t _length) reverse() argument [all...] |
/third_party/skia/tests/ |
H A D | RRectInPathTest.cpp | 15 SkPathDirection* dir, unsigned* start) { in path_contains_rrect() 17 REPORTER_ASSERT(reporter, SkPathPriv::IsRRect(path, &out, dir, start)); in path_contains_rrect() 19 recreatedPath.addRRect(out, *dir, *start); in path_contains_rrect() 44 SkPathDirection dir, unsigned start) { in inner_path_contains_rrect() 54 path.addRRect(in, dir, start); in inner_path_contains_rrect() 58 REPORTER_ASSERT(reporter, outDir == dir && outStart == start); in inner_path_contains_rrect() 63 SkPathDirection dir, unsigned start) { in path_contains_rrect_check() 64 SkRRect out = inner_path_contains_rrect(reporter, in, dir, start); in path_contains_rrect_check() 72 SkPathDirection dir, unsigned start) { in path_contains_rrect_nocheck() 73 SkRRect out = inner_path_contains_rrect(reporter, in, dir, start); in path_contains_rrect_nocheck() 14 path_contains_rrect(skiatest::Reporter* reporter, const SkPath& path, SkPathDirection* dir, unsigned* start) path_contains_rrect() argument 43 inner_path_contains_rrect(skiatest::Reporter* reporter, const SkRRect& in, SkPathDirection dir, unsigned start) inner_path_contains_rrect() argument 62 path_contains_rrect_check(skiatest::Reporter* reporter, const SkRRect& in, SkPathDirection dir, unsigned start) path_contains_rrect_check() argument 71 path_contains_rrect_nocheck(skiatest::Reporter* reporter, const SkRRect& in, SkPathDirection dir, unsigned start) path_contains_rrect_nocheck() argument 79 path_contains_rrect_check(skiatest::Reporter* reporter, const SkRect& r, SkVector v[4], SkPathDirection dir, unsigned start) path_contains_rrect_check() argument 88 ForceIsRRect_Private(SkPath* path, SkPathDirection dir, unsigned start) ForceIsRRect_Private() argument 93 force_path_contains_rrect(skiatest::Reporter* reporter, SkPath& path, SkPathDirection dir, unsigned start) force_path_contains_rrect() argument [all...] |
/third_party/libsnd/regtest/ |
H A D | checksum.c | 38 static int short_checksum (SNDFILE * file, int start) ; 39 static int int_checksum (SNDFILE * file, int start) ; 40 static int float_checksum (SNDFILE * file, int start) ; 44 { int start ; in calc_checksum() local 47 start = info->samplerate ; in calc_checksum() 48 start = start * BIG_PRIME + info->channels ; in calc_checksum() 49 start = start * BIG_PRIME + info->format ; in calc_checksum() 54 return float_checksum (file, start) ; in calc_checksum() 77 short_checksum(SNDFILE * file, int start) short_checksum() argument 91 int_checksum(SNDFILE * file, int start) int_checksum() argument 105 float_checksum(SNDFILE * file, int start) float_checksum() argument [all...] |
/third_party/python/Objects/stringlib/ |
H A D | transmogrify.h | 10 [clinic start generated code]*/ 35 [clinic start generated code]*/ 144 [clinic start generated code]*/ 168 [clinic start generated code]*/ 192 [clinic start generated code]*/ 219 [clinic start generated code]*/ 262 const char *start = target; in countchar() local 265 while ((start = findchar(start, end - start, in countchar() 353 const char *self_s, *start, *next, *end; stringlib_replace_delete_single_character() local 398 const char *self_s, *start, *next, *end; stringlib_replace_delete_substring() local 451 char *result_s, *start, *next; stringlib_replace_single_character_in_place() local 499 char *result_s, *start; stringlib_replace_substring_in_place() local 550 const char *self_s, *start, *next, *end; stringlib_replace_single_character() local 614 const char *self_s, *start, *next, *end; stringlib_replace_substring() local [all...] |
/third_party/mesa3d/src/imagination/csbgen/ |
H A D | pvr_packet_helpers.h | 63 static inline __attribute__((always_inline)) uint64_t __pvr_mbo(uint32_t start, in __pvr_mbo() argument 66 return (~0ull >> (64 - (end - start + 1))) << start; in __pvr_mbo() 70 __pvr_uint(uint64_t v, uint32_t start, NDEBUG_UNUSED uint32_t end) in __pvr_uint() argument 75 const int width = end - start + 1; in __pvr_uint() 82 return v << start; in __pvr_uint() 86 __pvr_uint_unpack(uint64_t packed, uint32_t start, uint32_t end) in __pvr_uint_unpack() argument 88 const int width = end - start + 1; in __pvr_uint_unpack() 91 return (packed >> start) & mask; in __pvr_uint_unpack() 95 __pvr_sint(int64_t v, uint32_t start, uint32_ argument 115 __pvr_sint_unpack(uint64_t packed, uint32_t start, uint32_t end) __pvr_sint_unpack() argument 124 __pvr_offset(uint64_t v, NDEBUG_UNUSED uint32_t start, NDEBUG_UNUSED uint32_t end) __pvr_offset() argument 139 __pvr_offset_unpack(uint64_t packed, NDEBUG_UNUSED uint32_t start, NDEBUG_UNUSED uint32_t end) __pvr_offset_unpack() argument 153 __pvr_address(__pvr_address_type address, uint32_t shift, uint32_t start, uint32_t end) __pvr_address() argument 165 __pvr_address_unpack(uint64_t packed, uint32_t shift, uint32_t start, uint32_t end) __pvr_address_unpack() argument 189 __pvr_sfixed(float v, uint32_t start, uint32_t end, uint32_t fract_bits) __pvr_sfixed() argument 208 __pvr_ufixed(float v, uint32_t start, NDEBUG_UNUSED uint32_t end, uint32_t fract_bits) __pvr_ufixed() argument [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | StringSegment.java | 22 private int start; field in StringSegment 28 this.start = 0; in StringSegment() 34 return start; in getOffset() 37 public void setOffset(int start) { in setOffset() argument 38 assert start <= end; in setOffset() 39 this.start = start; in setOffset() 52 assert start + delta >= 0; in adjustOffset() 53 assert start + delta <= end; in adjustOffset() 54 start in adjustOffset() 85 subSequence(int start, int end) subSequence() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | StringSegment.java | 24 private int start; field in StringSegment 30 this.start = 0; in StringSegment() 36 return start; in getOffset() 39 public void setOffset(int start) { in setOffset() argument 40 assert start <= end; in setOffset() 41 this.start = start; in setOffset() 54 assert start + delta >= 0; in adjustOffset() 55 assert start + delta <= end; in adjustOffset() 56 start in adjustOffset() 87 subSequence(int start, int end) subSequence() argument [all...] |
/third_party/cups-filters/cupsfilters/ |
H A D | lut.c | 103 int start, /* Start value */ in cupsLutNew() local 132 for (start = 0; start <= CUPS_MAX_LUT; start ++) in cupsLutNew() 133 lut[start].intensity = start * maxval / CUPS_MAX_LUT; in cupsLutNew() 138 * Select start and end values for this pixel... in cupsLutNew() 142 start = 0; in cupsLutNew() 144 start = (int)(0.5 * maxval * (values[pixel - 1] + in cupsLutNew() 147 if (start < in cupsLutNew() [all...] |
/third_party/rust/crates/regex/regex-syntax/src/ |
H A D | utf8.rs | 115 /// This assumes that `start` and `end` have the same length. 116 fn from_encoded_range(start: &[u8], end: &[u8]) -> Self { in from_encoded_range() 117 assert_eq!(start.len(), end.len()); in from_encoded_range() 118 match start.len() { in from_encoded_range() 120 Utf8Range::new(start[0], end[0]), in from_encoded_range() 121 Utf8Range::new(start[1], end[1]), in from_encoded_range() 124 Utf8Range::new(start[0], end[0]), in from_encoded_range() 125 Utf8Range::new(start[1], end[1]), in from_encoded_range() 126 Utf8Range::new(start[2], end[2]), in from_encoded_range() 129 Utf8Range::new(start[ in from_encoded_range() 380 let mut start = [0; MAX_UTF8_BYTES]; fmt() variables [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | BidiLine.java | 73 * setTrailingWSStart() sets the start index for a trailing 89 int start = bidi.length; in setTrailingWSStart() 98 if (dirProps[start - 1] == Bidi.B) { in setTrailingWSStart() 99 bidi.trailingWSStart = start; /* currently == bidi.length */ in setTrailingWSStart() 103 while (start > 0 && in setTrailingWSStart() 104 (Bidi.DirPropFlag(dirProps[start - 1]) & Bidi.MASK_WS) != 0) { in setTrailingWSStart() 105 --start; in setTrailingWSStart() 109 while (start > 0 && levels[start - 1] == paraLevel) { in setTrailingWSStart() 110 --start; in setTrailingWSStart() 116 setLine(Bidi paraBidi, int start, int limit) setLine() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | BidiLine.java | 74 * setTrailingWSStart() sets the start index for a trailing 90 int start = bidi.length; in setTrailingWSStart() 99 if (dirProps[start - 1] == Bidi.B) { in setTrailingWSStart() 100 bidi.trailingWSStart = start; /* currently == bidi.length */ in setTrailingWSStart() 104 while (start > 0 && in setTrailingWSStart() 105 (Bidi.DirPropFlag(dirProps[start - 1]) & Bidi.MASK_WS) != 0) { in setTrailingWSStart() 106 --start; in setTrailingWSStart() 110 while (start > 0 && levels[start - 1] == paraLevel) { in setTrailingWSStart() 111 --start; in setTrailingWSStart() 117 setLine(Bidi paraBidi, int start, int limit) setLine() argument [all...] |
/third_party/rust/crates/regex/src/ |
H A D | exec.rs | 396 fn shortest_match_at(&self, text: &str, start: usize) -> Option<usize> { in shortest_match_at() 397 self.0.shortest_match_at(text.as_bytes(), start) in shortest_match_at() 401 fn is_match_at(&self, text: &str, start: usize) -> bool { in is_match_at() 402 self.0.is_match_at(text.as_bytes(), start) in is_match_at() 406 fn find_at(&self, text: &str, start: usize) -> Option<(usize, usize)> { in find_at() 407 self.0.find_at(text.as_bytes(), start) in find_at() 415 start: usize, in captures_read_at() 417 self.0.captures_read_at(locs, text.as_bytes(), start) in captures_read_at() 426 /// start and end locations of the capture.) 438 fn shortest_match_at(&self, text: &[u8], start 839 let mut start = original_start; exec_dfa_reverse_suffix() variables [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | RangeDateRule.java | 48 public void add(Date start, DateRule rule) { in add() argument 50 // System.out.println("Add: " + start.toString()); in add() 51 ranges.add(new Range(start, rule)); in add() 60 public Date firstAfter(Date start) { in firstAfter() argument 62 int index = startIndex(start); in firstAfter() 74 result = r.rule.firstBetween(start, e.start); in firstAfter() 76 result = r.rule.firstAfter(start); in firstAfter() 86 public Date firstBetween(Date start, Date end) { in firstBetween() argument 88 return firstAfter(start); in firstBetween() 126 isBetween(Date start, Date end) isBetween() argument 134 startIndex(Date start) startIndex() argument 160 Range(Date start, DateRule rule) Range() argument 164 public Date start; global() field in Range [all...] |