Home
last modified time | relevance | path

Searched refs:copyFrom (Results 1 - 25 of 156) sorted by relevance

1234567

/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DByteStringTest.java92 ByteString string1 = ByteString.copyFrom(referenceBytes); in testCompare_equalByteStrings_compareEqual()
93 ByteString string2 = ByteString.copyFrom(referenceBytes); in testCompare_equalByteStrings_compareEqual()
115 ByteString twoHundredFiftyFive = ByteString.copyFrom(new byte[] {-1}); in testCompare_interpretsByteValuesAsUnsigned()
117 ByteString one = ByteString.copyFrom(new byte[] {1}); in testCompare_interpretsByteValuesAsUnsigned()
126 ByteString substring = ByteString.copyFrom(bytes).substring(500); in testSubstring_BeginIndex()
134 ByteString byteString = ByteString.copyFrom(bytes, 500, 200); in testCopyFrom_BytesOffsetSize()
136 "copyFrom sub-range must contain the expected bytes", in testCopyFrom_BytesOffsetSize()
142 ByteString byteString = ByteString.copyFrom(bytes); in testCopyFrom_Bytes()
144 "copyFrom must contain the expected bytes", isArray(byteString.toByteArray(), bytes)); in testCopyFrom_Bytes()
152 ByteString byteString = ByteString.copyFrom(byteBuffe in testCopyFrom_ByteBufferSize()
[all...]
H A DNioByteStringTest.java486 ByteString literal = ByteString.copyFrom(BYTES); in testEqualsLiteralByteString()
494 literal = ByteString.copyFrom(mungedBytes()); in testEqualsLiteralByteString()
504 ByteString p1 = ByteString.copyFrom(BYTES, 0, 5); in testEqualsRopeByteString()
505 ByteString p2 = ByteString.copyFrom(BYTES, 5, BYTES.length - 5); in testEqualsRopeByteString()
519 p1 = ByteString.copyFrom(mungedBytes, 0, 5); in testEqualsRopeByteString()
520 p2 = ByteString.copyFrom(mungedBytes, 5, mungedBytes.length - 5); in testEqualsRopeByteString()
H A DPackedFieldTest.java41 ByteString.copyFrom(
132 ByteString.copyFrom(
H A DLazyStringEndToEndTest.java45 ByteString.copyFrom(
84 assertEquals(TEST_ALL_TYPES_SERIALIZED_WITH_ILLEGAL_UTF8, ByteString.copyFrom(sink)); in testParseAndWrite()
H A DRopeByteStringTest.java95 concatenated = concatenated.concat(ByteString.copyFrom(testBytes, i * pieceSize, pieceSize)); in testBalance()
105 ByteString testString = ByteString.copyFrom(testBytes); in testBalance()
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
H A DByteStringTest.java92 ByteString substring = ByteString.copyFrom(bytes).substring(500); in testSubstring_BeginIndex()
99 ByteString byteString = ByteString.copyFrom(bytes, 500, 200); in testCopyFrom_BytesOffsetSize()
100 assertTrue("copyFrom sub-range must contain the expected bytes", in testCopyFrom_BytesOffsetSize()
106 ByteString byteString = ByteString.copyFrom(bytes); in testCopyFrom_Bytes()
107 assertTrue("copyFrom must contain the expected bytes", in testCopyFrom_Bytes()
116 ByteString byteString = ByteString.copyFrom(byteBuffer, 200); in testCopyFrom_ByteBufferSize()
117 assertTrue("copyFrom byteBuffer sub-range must contain the expected bytes", in testCopyFrom_ByteBufferSize()
126 ByteString byteString = ByteString.copyFrom(byteBuffer); in testCopyFrom_ByteBuffer()
127 assertTrue("copyFrom byteBuffer sub-range must contain the expected bytes", in testCopyFrom_ByteBuffer()
133 ByteString byteString = ByteString.copyFrom(testStrin in testCopyFrom_StringEncoding()
[all...]
H A DRopeByteStringTest.java69 concatenated = concatenated.concat(ByteString.copyFrom(testBytes, i * pieceSize, pieceSize)); in testBalance()
76 ByteString testString = ByteString.copyFrom(testBytes); in testBalance()
H A DLazyStringEndToEndTest.java50 ByteString.copyFrom(new byte[] {
91 ByteString.copyFrom(sink)); in testParseAndWrite()
H A DBoundedByteStringTest.java51 stringUnderTest = ByteString.copyFrom(sourceBytes).substring(from, to); in setUp()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DByteString.java109 byte[] copyFrom(byte[] bytes, int offset, int size); in copyFrom() method
115 public byte[] copyFrom(byte[] bytes, int offset, int size) { in copyFrom() method in ByteString.SystemByteArrayCopier
125 public byte[] copyFrom(byte[] bytes, int offset, int size) { in copyFrom() method in ByteString.ArraysByteArrayCopier
360 public static ByteString copyFrom(byte[] bytes, int offset, int size) { in copyFrom() method in ByteString
362 return new LiteralByteString(byteArrayCopier.copyFrom(bytes, offset, size)); in copyFrom()
371 public static ByteString copyFrom(byte[] bytes) { in copyFrom() method in ByteString
372 return copyFrom(bytes, 0, bytes.length); in copyFrom()
411 public static ByteString copyFrom(ByteBuffer bytes, int size) { in copyFrom() method in ByteString
424 public static ByteString copyFrom(ByteBuffer bytes) { in copyFrom() method in ByteString
425 return copyFrom(byte in copyFrom()
437 public static ByteString copyFrom(String text, String charsetName) copyFrom() method in ByteString
450 public static ByteString copyFrom(String text, Charset charset) { copyFrom() method in ByteString
588 public static ByteString copyFrom(Iterable<ByteString> byteStrings) { copyFrom() method in ByteString
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
H A DWritableFontData.java381 public void copyFrom(InputStream is, int length) throws IOException { in copyFrom() method in WritableFontData
382 this.array.copyFrom(is, length); in copyFrom()
391 public void copyFrom(InputStream is) throws IOException { in copyFrom() method in WritableFontData
392 this.array.copyFrom(is); in copyFrom()
H A DByteArray.java281 public void copyFrom(InputStream is, int length) throws IOException { in copyFrom() method in ByteArray
302 public void copyFrom(InputStream is) throws IOException { in copyFrom() method in ByteArray
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
H A DSeriesMatcher.java46 backup.copyFrom(result); in match()
78 result.copyFrom(backup); in match()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
H A DSeriesMatcher.java48 backup.copyFrom(result); in match()
80 result.copyFrom(backup); in match()
/third_party/icu/icu4c/source/i18n/
H A Ddtptngen_impl.h127 void copyFrom(const SkeletonFields& other);
163 void copyFrom(const PtnSkeleton& other);
234 void copyFrom(const PtnSkeleton& skeleton);
235 void copyFrom();
254 void copyFrom(const PatternMap& other, UErrorCode& status);
H A Ddtptngen.cpp393 dtMatcher->copyFrom(other.dtMatcher->skeleton); in operator =()
423 patternMap->copyFrom(*other.patternMap, internalErrorCode); in operator =()
2013 PatternMap::copyFrom(const PatternMap& other, UErrorCode& status) { in copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::PatternMap
2296 copyFrom(other.skeleton); in DateTimeMatcher()
2300 copyFrom(other.skeleton); in operator =()
2399 copyFrom(skeletonResult); in set()
2443 DateTimeMatcher::copyFrom(const PtnSkeleton& newSkeleton) { in copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::DateTimeMatcher
2444 skeleton.copyFrom(newSkeleton); in copyFrom()
2448 DateTimeMatcher::copyFrom() { in copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::DateTimeMatcher
2711 matcher->copyFrom(*nodePt in next()
2730 void SkeletonFields::copyFrom(const SkeletonFields& other) { copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::SkeletonFields
2796 void PtnSkeleton::copyFrom(const PtnSkeleton& other) { copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::PtnSkeleton
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Ddtptngen_impl.h127 void copyFrom(const SkeletonFields& other);
163 void copyFrom(const PtnSkeleton& other);
234 void copyFrom(const PtnSkeleton& skeleton);
235 void copyFrom();
254 void copyFrom(const PatternMap& other, UErrorCode& status);
H A Ddtptngen.cpp396 dtMatcher->copyFrom(other.dtMatcher->skeleton); in operator =()
426 patternMap->copyFrom(*other.patternMap, internalErrorCode); in operator =()
2005 PatternMap::copyFrom(const PatternMap& other, UErrorCode& status) { in copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::PatternMap
2288 copyFrom(other.skeleton); in DateTimeMatcher()
2292 copyFrom(other.skeleton); in operator =()
2391 copyFrom(skeletonResult); in set()
2435 DateTimeMatcher::copyFrom(const PtnSkeleton& newSkeleton) { in copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::DateTimeMatcher
2436 skeleton.copyFrom(newSkeleton); in copyFrom()
2440 DateTimeMatcher::copyFrom() { in copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::DateTimeMatcher
2703 matcher->copyFrom(*nodePt in next()
2722 void SkeletonFields::copyFrom(const SkeletonFields& other) { copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::SkeletonFields
2788 void PtnSkeleton::copyFrom(const PtnSkeleton& other) { copyFrom() function in DateTimePatternGenerator::AppendItemNamesSink::PtnSkeleton
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddtptngen_impl.h127 void copyFrom(const SkeletonFields& other);
163 void copyFrom(const PtnSkeleton& other);
234 void copyFrom(const PtnSkeleton& skeleton);
235 void copyFrom();
254 void copyFrom(const PatternMap& other, UErrorCode& status);
H A Ddtptngen.cpp394 dtMatcher->copyFrom(other.dtMatcher->skeleton); in operator =()
421 patternMap->copyFrom(*other.patternMap, internalErrorCode); in operator =()
1926 PatternMap::copyFrom(const PatternMap& other, UErrorCode& status) {
2209 copyFrom(other.skeleton);
2213 copyFrom(other.skeleton);
2312 copyFrom(skeletonResult);
2356 DateTimeMatcher::copyFrom(const PtnSkeleton& newSkeleton) {
2357 skeleton.copyFrom(newSkeleton);
2361 DateTimeMatcher::copyFrom() {
2624 matcher->copyFrom(*nodePt
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DDenseMap.h362 void copyFrom( in copyFrom() function in llvm::DenseMapBase
602 copyFrom(other); in DenseMap()
632 copyFrom(other); in operator =()
644 void copyFrom(const DenseMap& other) { in copyFrom() function in llvm::DenseMap
648 this->BaseT::copyFrom(other); in copyFrom()
768 copyFrom(other); in SmallDenseMap()
861 copyFrom(other); in operator =()
873 void copyFrom(const SmallDenseMap& other) { in copyFrom() function in llvm::SmallDenseMap
881 this->BaseT::copyFrom(other); in copyFrom()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DDenseMap.h391 void copyFrom( in copyFrom() function in llvm::DenseMapBase
704 copyFrom(other); in DenseMap()
739 copyFrom(other); in operator =()
751 void copyFrom(const DenseMap& other) { in copyFrom() function in llvm::DenseMap
755 this->BaseT::copyFrom(other); in copyFrom()
883 copyFrom(other); in SmallDenseMap()
976 copyFrom(other); in operator =()
988 void copyFrom(const SmallDenseMap& other) { in copyFrom() function in llvm::SmallDenseMap
996 this->BaseT::copyFrom(other); in copyFrom()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiRun.java72 void copyFrom(BidiRun run) in copyFrom() method in BidiRun
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DBidiRun.java72 void copyFrom(BidiRun run) in copyFrom() method in BidiRun
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DDecimalQuantity.java252 public void copyFrom(DecimalQuantity other); in copyFrom() method

Completed in 26 milliseconds

1234567