Home
last modified time | relevance | path

Searched refs:stringStart (Results 1 – 3 of 3) sorted by relevance

/third_party/icu/tools/unicode/c/genprops/
Dnamespropsbuilder.cpp946 uint8_t *stringStart; in addWord() local
954 stringStart=allocWord(length); in addWord()
955 uprv_memcpy(stringStart, s, length); in addWord()
966 word->s=stringStart; in addWord()
982 uint8_t *stringStart; in addLine() local
1009 stringStart=allocLine(length); in addLine()
1015 stringStart[length++]=NAME_SEPARATOR_CHAR; in addLine()
1018 uprv_memcpy(stringStart+length, names[i], lengths[i]); in addLine()
1027 line->s=stringStart; in addLine()
1033 tokens[stringStart[--length]]=-1; in addLine()
[all …]
/third_party/icu/icu4c/source/test/cintltst/
Dusettest.c312 const char* stringStart = ++p; in expectContainment() local
318 stringLength = (int32_t)(p - stringStart - 1); in expectContainment()
319 strncpy(strCopy, stringStart, stringLength); in expectContainment()
322 u_charsToUChars(stringStart, ustr, stringLength); in expectContainment()
459 const char* stringStart = ++p; in expectItems() local
465 stringLength = (int32_t)(p - stringStart - 1); in expectItems()
466 strncpy(strCopy, stringStart, stringLength); in expectItems()
469 u_charsToUChars(stringStart, ustr, stringLength); in expectItems()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedOutputStream.java2173 int stringStart = bufferPos(position) + minLengthVarIntSize; in writeStringNoTag() local
2174 buffer.position(stringStart); in writeStringNoTag()
2180 int length = buffer.position() - stringStart; in writeStringNoTag()