Home
last modified time | relevance | path

Searched refs:normalize (Results 1 - 25 of 415) sorted by relevance

12345678910>>...17

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DTimeValue.h101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in TimeValue()
112 this->normalize(); in TimeValue()
130 this->normalize(); in operator +=()
140 this->normalize(); in operator -=()
287 this->normalize(); in seconds()
298 this->normalize(); in nanoseconds()
305 this->normalize(); in microseconds()
312 this->normalize(); in milliseconds()
320 this->normalize(); in usec()
328 this->normalize(); in msec()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
H A DNormalizationMonkeyTest.java59 String uncodeNorm = unicode_NFD.normalize(source); in TestNormalize()
60 String icuNorm = Normalizer.normalize(source, Normalizer.NFD); in TestNormalize()
67 uncodeNorm = unicode_NFC.normalize(source); in TestNormalize()
68 icuNorm = Normalizer.normalize(source, Normalizer.NFC); in TestNormalize()
75 uncodeNorm = unicode_NFKD.normalize(source); in TestNormalize()
76 icuNorm = Normalizer.normalize(source, Normalizer.NFKD); in TestNormalize()
83 uncodeNorm = unicode_NFKC.normalize(source); in TestNormalize()
84 icuNorm = Normalizer.normalize(source, Normalizer.NFKC); in TestNormalize()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DNormalizationMonkeyTest.java56 String uncodeNorm = unicode_NFD.normalize(source); in TestNormalize()
57 String icuNorm = Normalizer.normalize(source, Normalizer.NFD); in TestNormalize()
64 uncodeNorm = unicode_NFC.normalize(source); in TestNormalize()
65 icuNorm = Normalizer.normalize(source, Normalizer.NFC); in TestNormalize()
72 uncodeNorm = unicode_NFKD.normalize(source); in TestNormalize()
73 icuNorm = Normalizer.normalize(source, Normalizer.NFKD); in TestNormalize()
80 uncodeNorm = unicode_NFKC.normalize(source); in TestNormalize()
81 icuNorm = Normalizer.normalize(source, Normalizer.NFKC); in TestNormalize()
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeFilePath.cpp94 FilePath& FilePath::normalize (void) in normalize() function in de::FilePath
120 throw std::runtime_error("Cannot normalize path: invalid path"); in normalize()
134 FilePath FilePath::normalize (const FilePath& path) in normalize() function in de::FilePath
136 return FilePath(path).normalize(); in normalize()
173 FilePath normPath = FilePath::normalize(*this); in exists()
181 FilePath normPath = FilePath::normalize(*this); in getType()
226 DE_TEST_ASSERT(string(".") == FilePath(".//.").normalize().getPath()); in FilePath_selfTest()
227 DE_TEST_ASSERT(string(".") == FilePath(".").normalize().getPath()); in FilePath_selfTest()
228 DE_TEST_ASSERT((string("..") + FilePath::separator + "test") == FilePath("foo/../bar/../../test").normalize().getPath()); in FilePath_selfTest()
229 DE_TEST_ASSERT((FilePath::separator + "foo" + FilePath::separator + "foo.txt") == FilePath("/foo\\bar/..\\dir\\..\\foo.txt").normalize() in FilePath_selfTest()
[all...]
/third_party/libsnd/src/
H A Dflac.c107 static void f2flac8_array (const float *src, int32_t *dest, int count, int normalize) ;
108 static void f2flac16_array (const float *src, int32_t *dest, int count, int normalize) ;
109 static void f2flac24_array (const float *src, int32_t *dest, int count, int normalize) ;
110 static void f2flac8_clip_array (const float *src, int32_t *dest, int count, int normalize) ;
111 static void f2flac16_clip_array (const float *src, int32_t *dest, int count, int normalize) ;
112 static void f2flac24_clip_array (const float *src, int32_t *dest, int count, int normalize) ;
113 static void d2flac8_array (const double *src, int32_t *dest, int count, int normalize) ;
114 static void d2flac16_array (const double *src, int32_t *dest, int count, int normalize) ;
115 static void d2flac24_array (const double *src, int32_t *dest, int count, int normalize) ;
116 static void d2flac8_clip_array (const double *src, int32_t *dest, int count, int normalize) ;
1187 f2flac8_clip_array(const float *src, int32_t *dest, int count, int normalize) f2flac8_clip_array() argument
1209 f2flac16_clip_array(const float *src, int32_t *dest, int count, int normalize) f2flac16_clip_array() argument
1229 f2flac24_clip_array(const float *src, int32_t *dest, int count, int normalize) f2flac24_clip_array() argument
1252 f2flac8_array(const float *src, int32_t *dest, int count, int normalize) f2flac8_array() argument
1260 f2flac16_array(const float *src, int32_t *dest, int count, int normalize) f2flac16_array() argument
1268 f2flac24_array(const float *src, int32_t *dest, int count, int normalize) f2flac24_array() argument
1318 d2flac8_clip_array(const double *src, int32_t *dest, int count, int normalize) d2flac8_clip_array() argument
1340 d2flac16_clip_array(const double *src, int32_t *dest, int count, int normalize) d2flac16_clip_array() argument
1362 d2flac24_clip_array(const double *src, int32_t *dest, int count, int normalize) d2flac24_clip_array() argument
1384 d2flac8_array(const double *src, int32_t *dest, int count, int normalize) d2flac8_array() argument
1392 d2flac16_array(const double *src, int32_t *dest, int count, int normalize) d2flac16_array() argument
1400 d2flac24_array(const double *src, int32_t *dest, int count, int normalize) d2flac24_array() argument
[all...]
H A Dpcm.c1771 f2sc_array (const float *src, signed char *dest, int count, int normalize) in f2sc_array() argument
1774 normfact = normalize ? (1.0 * 0x7F) : 1.0 ; in f2sc_array()
1782 f2sc_clip_array (const float *src, signed char *dest, int count, int normalize) in f2sc_clip_array() argument
1785 normfact = normalize ? (8.0 * 0x10000000) : (1.0 * 0x1000000) ; in f2sc_clip_array()
1830 f2uc_array (const float *src, unsigned char *dest, int count, int normalize) in f2uc_array() argument
1833 normfact = normalize ? (1.0 * 0x7F) : 1.0 ; in f2uc_array()
1841 f2uc_clip_array (const float *src, unsigned char *dest, int count, int normalize) in f2uc_clip_array() argument
1844 normfact = normalize ? (8.0 * 0x10000000) : (1.0 * 0x1000000) ; in f2uc_clip_array()
1889 f2bes_array (const float *src, short *dest, int count, int normalize) in f2bes_array() argument
1894 normfact = normalize in f2bes_array()
1905 f2bes_clip_array(const float *src, short *dest, int count, int normalize) f2bes_clip_array() argument
1960 f2les_array(const float *src, short *dest, int count, int normalize) f2les_array() argument
1976 f2les_clip_array(const float *src, short *dest, int count, int normalize) f2les_clip_array() argument
2031 f2let_array(const float *src, tribyte *dest, int count, int normalize) f2let_array() argument
2046 f2let_clip_array(const float *src, tribyte *dest, int count, int normalize) f2let_clip_array() argument
2106 f2bet_array(const float *src, tribyte *dest, int count, int normalize) f2bet_array() argument
2121 f2bet_clip_array(const float *src, tribyte *dest, int count, int normalize) f2bet_clip_array() argument
2181 f2bei_array(const float *src, int *dest, int count, int normalize) f2bei_array() argument
2199 f2bei_clip_array(const float *src, int *dest, int count, int normalize) f2bei_clip_array() argument
2264 f2lei_array(const float *src, int *dest, int count, int normalize) f2lei_array() argument
2282 f2lei_clip_array(const float *src, int *dest, int count, int normalize) f2lei_clip_array() argument
2347 d2sc_array(const double *src, signed char *dest, int count, int normalize) d2sc_array() argument
2358 d2sc_clip_array(const double *src, signed char *dest, int count, int normalize) d2sc_clip_array() argument
2406 d2uc_array(const double *src, unsigned char *dest, int count, int normalize) d2uc_array() argument
2417 d2uc_clip_array(const double *src, unsigned char *dest, int count, int normalize) d2uc_clip_array() argument
2465 d2bes_array(const double *src, short *dest, int count, int normalize) d2bes_array() argument
2481 d2bes_clip_array(const double *src, short *dest, int count, int normalize) d2bes_clip_array() argument
2536 d2les_array(const double *src, short *dest, int count, int normalize) d2les_array() argument
2552 d2les_clip_array(const double *src, short *dest, int count, int normalize) d2les_clip_array() argument
2607 d2let_array(const double *src, tribyte *dest, int count, int normalize) d2let_array() argument
2622 d2let_clip_array(const double *src, tribyte *dest, int count, int normalize) d2let_clip_array() argument
2682 d2bet_array(const double *src, tribyte *dest, int count, int normalize) d2bet_array() argument
2697 d2bet_clip_array(const double *src, tribyte *dest, int count, int normalize) d2bet_clip_array() argument
2757 d2bei_array(const double *src, int *dest, int count, int normalize) d2bei_array() argument
2775 d2bei_clip_array(const double *src, int *dest, int count, int normalize) d2bei_clip_array() argument
2840 d2lei_array(const double *src, int *dest, int count, int normalize) d2lei_array() argument
2858 d2lei_clip_array(const double *src, int *dest, int count, int normalize) d2lei_clip_array() argument
[all...]
/third_party/node/deps/npm/test/fixtures/
H A Dsandbox.js53 const normalize = (str) => str
54 .replace(/\r\n/g, '\n') // normalize line endings (for ini)
120 let clean = normalize(snapshot)
138 .split(normalize(this[_proxy].execPath)).join('{EXECPATH}')
139 .split(normalize(_process.execPath)).join('{REALEXECPATH}')
140 .split(normalize(this.global)).join('{GLOBALPREFIX}')
141 .split(normalize(realGlobalPrefix)).join('{REALGLOBALREFIX}')
142 .split(normalize(this.project)).join('{LOCALPREFIX}')
143 .split(normalize(this.home)).join('{HOME}')
145 .split(normalize(dirnam
[all...]
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
H A Dexceptions.js171 function normalize(testPath) { function
172 return path.normalize(testPath).replace(/\\/g, '/');
181 const normalizedTestPath = normalize(absPath);
194 return generatedSkipped.has(normalize(relPath));
224 return this.getGeneratedSoftSkipped().has(normalize(relPath));
228 return this.getGeneratedSloppy().has(normalize(relPath));
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DFilteredNormalizer2.java47 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in FilteredNormalizer2
52 normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE); in normalize()
60 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in FilteredNormalizer2
64 return normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE); in normalize()
228 private Appendable normalize(CharSequence src, Appendable dest, in normalize() method in FilteredNormalizer2
245 dest.append(norm2.normalize(src.subSequence(prevSpanLimit, spanLimit), tempDest)); in normalize()
264 return normalize(second, first); in normalizeSecondAndAppend()
294 normalize(rest, first, UnicodeSet.SpanCondition.NOT_CONTAINED); in normalizeSecondAndAppend()
H A DNormalizer2.java218 public String normalize(CharSequence src) { in normalize() method in Normalizer2
231 return normalize(src, new StringBuilder(src.length())).toString(); in normalize()
243 public abstract StringBuilder normalize(CharSequence src, StringBuilder dest); in normalize() method in Normalizer2
257 public abstract Appendable normalize(CharSequence src, Appendable dest); in normalize() method in Normalizer2
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DFilteredNormalizer2.java46 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in FilteredNormalizer2
51 normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE); in normalize()
58 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in FilteredNormalizer2
62 return normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE); in normalize()
214 private Appendable normalize(CharSequence src, Appendable dest, in normalize() method in FilteredNormalizer2
231 dest.append(norm2.normalize(src.subSequence(prevSpanLimit, spanLimit), tempDest)); in normalize()
250 return normalize(second, first); in normalizeSecondAndAppend()
280 normalize(rest, first, UnicodeSet.SpanCondition.NOT_CONTAINED); in normalizeSecondAndAppend()
H A DNormalizer2.java206 public String normalize(CharSequence src) { in normalize() method in Normalizer2
219 return normalize(src, new StringBuilder(src.length())).toString(); in normalize()
230 public abstract StringBuilder normalize(CharSequence src, StringBuilder dest); in normalize() method in Normalizer2
243 public abstract Appendable normalize(CharSequence src, Appendable dest); in normalize() method in Normalizer2
/third_party/node/test/parallel/
H A Dtest-process-chdir.js33 assert.strictEqual(process.cwd().normalize(), dir.normalize());
36 assert.strictEqual(process.cwd().normalize(),
37 path.resolve(tmpdir.path).normalize());
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
H A DDataReadWriteTest.java28 private String normalize(String str) { in normalize() method in DataReadWriteTest
54 assertEquals(null, "<Test></Test>", normalize(str)); in testOpenClose()
70 assertEquals(null, "<x>true</x><y>false</y>", normalize(str)); in testBool()
104 assertEquals("" + j, target, normalize(str)); in testBoolArray()
126 assertEquals(null, "<x>a</x><y>b</y>", normalize(str)); in testCharacter()
160 assertEquals("" + j, target, normalize(str)); in testCharacterArray()
184 assertEquals(null, "<x>zero</x><y>one</y>", normalize(str)); in testNamedIndex()
219 assertEquals("" + j, target, normalize(str)); in testNamedIndexArray()
244 assertEquals("\n'" + normalize(str) + "' = \n'<x>" + t + "</x>", "<x>" in testString()
245 + t + "</x>", normalize(st in testString()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/duration/
H A DDataReadWriteTest.java31 private String normalize(String str) { in normalize() method in DataReadWriteTest
57 assertEquals(null, "<Test></Test>", normalize(str)); in testOpenClose()
73 assertEquals(null, "<x>true</x><y>false</y>", normalize(str)); in testBool()
107 assertEquals("" + j, target, normalize(str)); in testBoolArray()
129 assertEquals(null, "<x>a</x><y>b</y>", normalize(str)); in testCharacter()
163 assertEquals("" + j, target, normalize(str)); in testCharacterArray()
187 assertEquals(null, "<x>zero</x><y>one</y>", normalize(str)); in testNamedIndex()
222 assertEquals("" + j, target, normalize(str)); in testNamedIndexArray()
247 assertEquals("\n'" + normalize(str) + "' = \n'<x>" + t + "</x>", "<x>" in testString()
248 + t + "</x>", normalize(st in testString()
[all...]
/third_party/googletest/googletest/test/
H A Dgtest_json_test_utils.py35 def normalize(obj): function
39 obj: Google Test's JSON output object to normalize.
56 return normalize(value)
60 return [normalize(x) for x in obj]
/third_party/typescript/tests/baselines/reference/
H A DcontextualOverloadListFromUnionWithPrimitiveNoImplicitAny.js2 // must target esnext for `String.normalize` to exist
6 normalize?: (match: {x: string}) => void;
14 normalize: match => match.x,
23 normalize: match => match.x,
/third_party/python/Lib/test/
H A Dtest_unicodedata.py197 self.assertEqual(self.db.normalize('NFC', text), text)
203 self.assertEqual(self.db.normalize('NFC', a), b)
213 self.assertEqual(self.db.normalize('NFC', u1176_str_a), u1176_str_b)
214 self.assertEqual(self.db.normalize('NFC', u11a7_str_a), u11a7_str_b)
215 self.assertEqual(self.db.normalize('NFC', u11c3_str_a), u11c3_str_b)
360 return unicodedata.normalize("NFC", str)
363 return unicodedata.normalize("NFKC", str)
366 return unicodedata.normalize("NFD", str)
369 return unicodedata.normalize("NFKD", str)
415 self.assertRaises(TypeError, unicodedata.normalize)
[all...]
/third_party/node/deps/npm/lib/commands/
H A Drun-script.js41 const { content: { scripts = {} } } = await pkgJson.normalize(npm.localPrefix)
72 const { content } = await pkgJson.normalize(path)
131 const { content: { scripts, name, _id } } = await pkgJson.normalize(path || this.npm.localPrefix)
201 const { content: pkg } = await pkgJson.normalize(workspacePath)
226 const { content: { scripts, name } } = await pkgJson.normalize(workspacePath)
235 const { content: { scripts, name } } = await pkgJson.normalize(workspacePath)
/third_party/node/deps/npm/node_modules/normalize-package-data/lib/
H A Dnormalize.js1 module.exports = normalize
4 normalize.fixer = fixer
20 function normalize (data, warn, strict) {
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNorm2AllModes.java25 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in Norm2AllModes.NoopNormalizer2
34 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in Norm2AllModes.NoopNormalizer2
87 // normalize
89 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in Norm2AllModes.Normalizer2WithImpl
94 normalize(src, new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length())); in normalize()
98 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in Norm2AllModes.Normalizer2WithImpl
104 normalize(src, buffer); in normalize()
108 protected abstract void normalize(CharSequence src, Normalizer2Impl.ReorderingBuffer buffer); in normalize() method in Norm2AllModes.Normalizer2WithImpl
110 // normalize and append
171 protected void normalize(CharSequenc method in Norm2AllModes.DecomposeNormalizer2
202 protected void normalize(CharSequence src, Normalizer2Impl.ReorderingBuffer buffer) { normalize() method in Norm2AllModes.ComposeNormalizer2
257 protected void normalize(CharSequence src, Normalizer2Impl.ReorderingBuffer buffer) { normalize() method in Norm2AllModes.FCDNormalizer2
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DNorm2AllModes.java32 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in Norm2AllModes.NoopNormalizer2
41 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in Norm2AllModes.NoopNormalizer2
97 // normalize
99 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in Norm2AllModes.Normalizer2WithImpl
104 normalize(src, new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length())); in normalize()
108 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in Norm2AllModes.Normalizer2WithImpl
114 normalize(src, buffer); in normalize()
118 protected abstract void normalize(CharSequence src, Normalizer2Impl.ReorderingBuffer buffer); in normalize() method in Norm2AllModes.Normalizer2WithImpl
120 // normalize and append
184 protected void normalize(CharSequenc method in Norm2AllModes.DecomposeNormalizer2
218 protected void normalize(CharSequence src, Normalizer2Impl.ReorderingBuffer buffer) { normalize() method in Norm2AllModes.ComposeNormalizer2
276 protected void normalize(CharSequence src, Normalizer2Impl.ReorderingBuffer buffer) { normalize() method in Norm2AllModes.FCDNormalizer2
[all...]
/third_party/alsa-lib/test/
H A Dqueue_timer.c6 void normalize(struct timeval *tv) in normalize() function
91 normalize(&tv); in main()
95 normalize(&diff); in main()
99 normalize(&diffdiff); in main()
/third_party/node/deps/npm/node_modules/read-package-json-fast/lib/
H A Dindex.js3 const normalizePackageBin = require('npm-normalize-package-bin')
7 .then(data => readBinDir(path, normalize(stripUnderscores(parse(data)))))
60 const normalize = data => {
70 rpj.normalize = normalize
/third_party/python/Lib/test/test_tomllib/
H A Dburntsushi.py53 def normalize(obj: Any) -> Any: function
63 return [normalize(item) for item in obj]
79 return [normalize(item) for item in value]
81 return {k: normalize(v) for k, v in obj.items()}

Completed in 16 milliseconds

12345678910>>...17