Home
last modified time | relevance | path

Searched refs:newSource (Results 1 – 16 of 16) sorted by relevance

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCanonicalIterator.java117 public void setSource(String newSource) { in setSource() argument
118 source = nfd.normalize(newSource); in setSource()
122 if (newSource.length() == 0) { in setSource()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DCanonicalIterator.java113 public void setSource(String newSource) { in setSource() argument
114 source = nfd.normalize(newSource); in setSource()
118 if (newSource.length() == 0) { in setSource()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
DRandomIRBuilder.cpp38 return newSource(BB, Insts, Srcs, Pred); in findOrCreateSource()
41 Value *RandomIRBuilder::newSource(BasicBlock &BB, ArrayRef<Instruction *> Insts, in newSource() function in RandomIRBuilder
DIRMutator.cpp195 RS.sample(IB.newSource(*BB, InstsBefore, {}, Pred), /*Weight=*/1); in mutate()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DFieldMaskTreeTest.cs166 var newSource = source.Descriptor.Parser.CreateTemplate(); in Merge()
167 newSource.MergeFrom(source.ToByteString()); in Merge()
172 tree.Merge(newSource, newDestination, options); in Merge()
/third_party/node/deps/icu-small/source/common/
Dcaniter.cpp168 void CanonicalIterator::setSource(const UnicodeString &newSource, UErrorCode &status) { in setSource() argument
175 nfd.normalize(newSource, source, status); in setSource()
184 if (newSource.length() == 0) { in setSource()
/third_party/icu/icu4c/source/common/
Dcaniter.cpp168 void CanonicalIterator::setSource(const UnicodeString &newSource, UErrorCode &status) { in setSource() argument
175 nfd.normalize(newSource, source, status); in setSource()
184 if (newSource.length() == 0) { in setSource()
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dcaniter.cpp168 void CanonicalIterator::setSource(const UnicodeString &newSource, UErrorCode &status) { in setSource() argument
175 nfd.normalize(newSource, source, status); in setSource()
184 if (newSource.length() == 0) { in setSource()
/third_party/skia/third_party/externals/icu/source/common/
Dcaniter.cpp168 void CanonicalIterator::setSource(const UnicodeString &newSource, UErrorCode &status) { in setSource() argument
175 nfd.normalize(newSource, source, status); in setSource()
184 if (newSource.length() == 0) { in setSource()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/
DRandomIRBuilder.h46 Value *newSource(BasicBlock &BB, ArrayRef<Instruction *> Insts,
/third_party/icu/icu4c/source/common/unicode/
Dcaniter.h121 void setSource(const UnicodeString &newSource, UErrorCode &status);
/third_party/node/deps/icu-small/source/common/unicode/
Dcaniter.h121 void setSource(const UnicodeString &newSource, UErrorCode &status);
/third_party/skia/third_party/externals/icu/source/common/unicode/
Dcaniter.h121 void setSource(const UnicodeString &newSource, UErrorCode &status);
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/
Dcaniter.h119 void setSource(const UnicodeString &newSource, UErrorCode &status);
/third_party/mesa3d/src/util/format/
Du_format_fxt1.c1179 void *newSource = NULL; in fxt1_encode() local
1187 newSource = malloc(comps * newWidth * newHeight * sizeof(uint8_t)); in fxt1_encode()
1188 if (!newSource) in fxt1_encode()
1192 srcRowStride, (uint8_t *) newSource); in fxt1_encode()
1193 source = newSource; in fxt1_encode()
1217 free(newSource); in fxt1_encode()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fSeparateShaderTests.cpp1250 string newSource = genVtxShaderSrc(pp.vtxSeed, m_varyings.vtxOutputs, in createPipeline() local
1252 vtxProg = createSingleShaderProgram(glu::SHADERTYPE_VERTEX, newSource); in createPipeline()
1261 string newSource = genFrgShaderSrc(pp.frgSeed, m_varyings.frgInputs, in createPipeline() local
1263 frgProg = createSingleShaderProgram(glu::SHADERTYPE_FRAGMENT, newSource); in createPipeline()