Home
last modified time | relevance | path

Searched refs:normalize (Results 1 – 25 of 911) sorted by relevance

12345678910>>...37

/external/swiftshader/third_party/LLVM/unittests/ADT/
DTripleTest.cpp118 EXPECT_EQ("", Triple::normalize("")); in TEST()
119 EXPECT_EQ("-", Triple::normalize("-")); in TEST()
120 EXPECT_EQ("--", Triple::normalize("--")); in TEST()
121 EXPECT_EQ("---", Triple::normalize("---")); in TEST()
122 EXPECT_EQ("----", Triple::normalize("----")); in TEST()
124 EXPECT_EQ("a", Triple::normalize("a")); in TEST()
125 EXPECT_EQ("a-b", Triple::normalize("a-b")); in TEST()
126 EXPECT_EQ("a-b-c", Triple::normalize("a-b-c")); in TEST()
127 EXPECT_EQ("a-b-c-d", Triple::normalize("a-b-c-d")); in TEST()
129 EXPECT_EQ("i386-b-c", Triple::normalize("i386-b-c")); in TEST()
[all …]
/external/llvm/unittests/ADT/
DTripleTest.cpp267 EXPECT_EQ("", Triple::normalize("")); in TEST()
268 EXPECT_EQ("-", Triple::normalize("-")); in TEST()
269 EXPECT_EQ("--", Triple::normalize("--")); in TEST()
270 EXPECT_EQ("---", Triple::normalize("---")); in TEST()
271 EXPECT_EQ("----", Triple::normalize("----")); in TEST()
273 EXPECT_EQ("a", Triple::normalize("a")); in TEST()
274 EXPECT_EQ("a-b", Triple::normalize("a-b")); in TEST()
275 EXPECT_EQ("a-b-c", Triple::normalize("a-b-c")); in TEST()
276 EXPECT_EQ("a-b-c-d", Triple::normalize("a-b-c-d")); in TEST()
278 EXPECT_EQ("i386-b-c", Triple::normalize("i386-b-c")); in TEST()
[all …]
/external/deqp-deps/glslang/Test/
Dhlsl.init2.frag27 normalize(float3(1, 1, 1)) * (n += step),
28 normalize(float3(-1, -1, -1)) * (n += step),
29 normalize(float3(-1, -1, 1)) * (n += step),
30 normalize(float3(-1, 1, -1)) * (n += step),
31 normalize(float3(-1, 1, 1)) * (n += step),
32 normalize(float3(1, -1, -1)) * (n += step),
33 normalize(float3(1, -1, 1)) * (n += step),
34 normalize(float3(1, 1, -1)) * (n += step) };
36 const struct one { float3 a; } oneNonConst = { normalize(float3(-1, 1, 1)) * (n += step) };
38 float3 b; } twoNonConst = { normalize(float3(-1, 1, 1)) * (n += step),
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/
Dedit_distance_op_test.py43 normalize, argument
48 hypothesis=hypothesis_st, truth=truth_st, normalize=normalize)
61 normalize, argument
78 normalize=normalize,
90 normalize=normalize,
107 normalize=True,
122 normalize=False,
142 normalize=False,
148 normalize=True,
166 normalize=True,
[all …]
/external/llvm/include/llvm/Support/
DTimeValue.h101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_()
112 this->normalize(); in TimeValue()
130 this->normalize();
140 this->normalize();
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 …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DTimeValue.h89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_()
100 this->normalize(); in TimeValue()
118 this->normalize();
128 this->normalize();
286 this->normalize(); in seconds()
297 this->normalize(); in nanoseconds()
304 this->normalize(); in microseconds()
311 this->normalize(); in milliseconds()
319 this->normalize(); in usec()
327 this->normalize(); in msec()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DTimeValue.h101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); } in seconds_()
112 this->normalize(); in TimeValue()
130 this->normalize();
140 this->normalize();
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 …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DTripleTest.cpp392 EXPECT_EQ("", Triple::normalize("")); in TEST()
393 EXPECT_EQ("-", Triple::normalize("-")); in TEST()
394 EXPECT_EQ("--", Triple::normalize("--")); in TEST()
395 EXPECT_EQ("---", Triple::normalize("---")); in TEST()
396 EXPECT_EQ("----", Triple::normalize("----")); in TEST()
398 EXPECT_EQ("a", Triple::normalize("a")); in TEST()
399 EXPECT_EQ("a-b", Triple::normalize("a-b")); in TEST()
400 EXPECT_EQ("a-b-c", Triple::normalize("a-b-c")); in TEST()
401 EXPECT_EQ("a-b-c-d", Triple::normalize("a-b-c-d")); in TEST()
403 EXPECT_EQ("i386-b-c", Triple::normalize("i386-b-c")); in TEST()
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/pack200/
DPack200Utils.java57 public static void normalize(final File jar) in normalize() method in Pack200Utils
59 normalize(jar, jar, null); in normalize()
78 public static void normalize(final File jar, final Map<String, String> props) in normalize() method in Pack200Utils
80 normalize(jar, jar, props); in normalize()
103 public static void normalize(final File from, final File to) in normalize() method in Pack200Utils
105 normalize(from, to, null); in normalize()
127 public static void normalize(final File from, final File to, Map<String, String> props) in normalize() method in Pack200Utils
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
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()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
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()
/external/toolchain-utils/android_bench_suite/
Dparse_result.py11 def normalize(bench, dict_list): function
35 return normalize(bench, [result_dict])
53 return normalize(bench, [result_dict])
72 return normalize(bench, [result_dict])
94 return normalize(bench, [result_dict])
107 return normalize(bench, [result_dict])
114 return normalize(bench, _TransformBenchmarks(obj))
/external/deqp/framework/delibs/decpp/
DdeFilePath.cpp94 FilePath& FilePath::normalize (void) in normalize() function in de::FilePath
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 …("..") + FilePath::separator + "test") == FilePath("foo/../bar/../../test").normalize().getPath()); in FilePath_selfTest()
229 …ePath::separator + "foo.txt") == FilePath("/foo\\bar/..\\dir\\..\\foo.txt").normalize().getPath()); in FilePath_selfTest()
230 …ath::separator + "foo.txt") == FilePath("c:/foo\\bar/..\\dir\\..\\foo.txt").normalize().getPath()); in FilePath_selfTest()
[all …]
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy75 assert fileSystem.normalize("a:\\") == "a:\\"
76 assert fileSystem.normalize("a:/") == "a:\\"
77 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
78 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
79 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
80 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
81 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
82 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
83 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
84 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy77 assert fileSystem.normalize("a:\\") == "a:\\"
78 assert fileSystem.normalize("a:/") == "a:\\"
79 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
80 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
81 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
82 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
83 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
84 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
85 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
86 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy73 assert fileSystem.normalize("a:\\") == "a:\\"
74 assert fileSystem.normalize("a:/") == "a:\\"
75 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
76 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
77 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
78 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
79 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
80 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
81 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
82 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy73 assert fileSystem.normalize("a:\\") == "a:\\"
74 assert fileSystem.normalize("a:/") == "a:\\"
75 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
76 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
77 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
78 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
79 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
80 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
81 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
82 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy75 assert fileSystem.normalize("a:\\") == "a:\\"
76 assert fileSystem.normalize("a:/") == "a:\\"
77 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
78 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
79 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
80 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
81 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
82 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
83 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
84 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/
DFakeWindowsFileSystemTest.groovy74 assert fileSystem.normalize("a:\\") == "a:\\"
75 assert fileSystem.normalize("a:/") == "a:\\"
76 assert fileSystem.normalize("b:/abc") == path("b:","abc")
77 assert fileSystem.normalize("c:\\abc\\def") == path("c:","abc","def")
78 assert fileSystem.normalize("d:/abc/def") == path("d:","abc","def")
79 assert fileSystem.normalize("e:\\abc/def/..") == path("e:","abc")
80 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:","abc","ghi")
81 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:","abc","def")
82 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:","abc","def", "ghi")
83 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:","abc")
[all …]
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy75 assert fileSystem.normalize("a:\\") == "a:\\"
76 assert fileSystem.normalize("a:/") == "a:\\"
77 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
78 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
79 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
80 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
81 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
82 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
83 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
84 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy73 assert fileSystem.normalize("a:\\") == "a:\\"
74 assert fileSystem.normalize("a:/") == "a:\\"
75 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
76 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
77 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
78 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
79 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
80 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
81 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
82 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy77 assert fileSystem.normalize("a:\\") == "a:\\"
78 assert fileSystem.normalize("a:/") == "a:\\"
79 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
80 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
81 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
82 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
83 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
84 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
85 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
86 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy75 assert fileSystem.normalize("a:\\") == "a:\\"
76 assert fileSystem.normalize("a:/") == "a:\\"
77 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
78 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
79 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
80 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
81 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
82 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
83 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
84 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy77 assert fileSystem.normalize("a:\\") == "a:\\"
78 assert fileSystem.normalize("a:/") == "a:\\"
79 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
80 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
81 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
82 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
83 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
84 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
85 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
86 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy75 assert fileSystem.normalize("a:\\") == "a:\\"
76 assert fileSystem.normalize("a:/") == "a:\\"
77 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
78 assert fileSystem.normalize("c:\\abc\\def") == path("c:", "abc", "def")
79 assert fileSystem.normalize("d:/abc/def") == path("d:", "abc", "def")
80 assert fileSystem.normalize("e:\\abc/def/..") == path("e:", "abc")
81 assert fileSystem.normalize("f:/abc/def/../ghi") == path("f:", "abc", "ghi")
82 assert fileSystem.normalize("g:\\abc\\def\\.") == path("g:", "abc", "def")
83 assert fileSystem.normalize("h:/abc\\def\\./ghi") == path("h:", "abc", "def", "ghi")
84 assert fileSystem.normalize("c:\\abc").toLowerCase() == path("c:", "abc")
[all …]

12345678910>>...37