Home
last modified time | relevance | path

Searched refs:ft (Results 1 – 25 of 566) sorted by relevance

12345678910>>...23

/external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
DJCLLoggerAdapter.java89 FormattingTuple ft = MessageFormatter.format(format, arg); in trace() local
90 log.trace(ft.getMessage(), ft.getThrowable()); in trace()
112 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); in trace() local
113 log.trace(ft.getMessage(), ft.getThrowable()); in trace()
131 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in trace() local
132 log.trace(ft.getMessage(), ft.getThrowable()); in trace()
185 FormattingTuple ft = MessageFormatter.format(format, arg); in debug() local
186 log.debug(ft.getMessage(), ft.getThrowable()); in debug()
208 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); in debug() local
209 log.debug(ft.getMessage(), ft.getThrowable()); in debug()
[all …]
/external/python/cpython3/Lib/turtledemo/
Dfractalcurves.py79 ft = CurvesTurtle()
81 ft.reset()
82 ft.speed(0)
83 ft.ht()
84 ft.getscreen().tracer(1,0)
85 ft.pu()
88 ft.setpos(-33*size, -32*size)
89 ft.pd()
92 ft.fillcolor("red")
93 ft.begin_fill()
[all …]
/external/python/cpython2/Demo/turtle/
Dtdemo_fractalcurves.py79 ft = CurvesTurtle()
81 ft.reset()
82 ft.speed(0)
83 ft.ht()
84 ft.tracer(1,0)
85 ft.pu()
88 ft.setpos(-33*size, -32*size)
89 ft.pd()
92 ft.fillcolor("red")
93 ft.fill(True)
[all …]
/external/autotest/server/cros/faft/
Dfirmware_test_unittest.py35 ft = self.GoodFirmwareTest()
37 ft.run_once(test_name='GoodFirmwareTest.good')
38 ft.test_good.assert_called_with()
40 ft.run_once('arg1', test_name='GoodFirmwareTest.good', arg2='arg2')
41 ft.test_good.assert_called_with('arg1', arg2='arg2')
45 ft = self.GoodFirmwareTest()
47 ft.run_once('GoodFirmwareTest.good')
48 ft.test_good.assert_called_with()
50 ft.run_once('GoodFirmwareTest.good', 'arg1', arg2='arg2')
51 ft.test_good.assert_called_with('arg1', arg2='arg2')
[all …]
/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
DLog4jLoggerAdapter.java128 FormattingTuple ft = MessageFormatter.format(format, arg); in trace() local
129 … logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable()); in trace()
151 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); in trace() local
152 … logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable()); in trace()
172 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments); in trace() local
173 … logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable()); in trace()
224 FormattingTuple ft = MessageFormatter.format(format, arg); in debug() local
225 logger.log(FQCN, Level.DEBUG, ft.getMessage(), ft.getThrowable()); in debug()
247 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); in debug() local
248 logger.log(FQCN, Level.DEBUG, ft.getMessage(), ft.getThrowable()); in debug()
[all …]
/external/lzma/CPP/Windows/
DTimeUtils.cpp19 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &ft) throw() in DosTimeToFileTime() argument
22 …turn BOOLToBool(::DosDateTimeToFileTime((UInt16)(dosTime >> 16), (UInt16)(dosTime & 0xFFFF), &ft)); in DosTimeToFileTime()
24 ft.dwLowDateTime = 0; in DosTimeToFileTime()
25 ft.dwHighDateTime = 0; in DosTimeToFileTime()
31 ft.dwLowDateTime = (UInt32)res; in DosTimeToFileTime()
32 ft.dwHighDateTime = (UInt32)(res >> 32); in DosTimeToFileTime()
44 bool FileTimeToDosTime(const FILETIME &ft, UInt32 &dosTime) throw() in FileTimeToDosTime() argument
49 if (!::FileTimeToDosDateTime(&ft, &datePart, &timePart)) in FileTimeToDosTime()
51 dosTime = (ft.dwHighDateTime >= 0x01C00000) ? kHighDosTime : kLowDosTime; in FileTimeToDosTime()
59 UInt64 v64 = ft.dwLowDateTime | ((UInt64)ft.dwHighDateTime << 32); in FileTimeToDosTime()
[all …]
/external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
DJDK14LoggerAdapter.java96 FormattingTuple ft = MessageFormatter.format(format, arg); in trace() local
97 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable()); in trace()
119 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); in trace() local
120 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable()); in trace()
140 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray); in trace() local
141 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable()); in trace()
195 FormattingTuple ft = MessageFormatter.format(format, arg); in debug() local
196 log(SELF, Level.FINE, ft.getMessage(), ft.getThrowable()); in debug()
218 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2); in debug() local
219 log(SELF, Level.FINE, ft.getMessage(), ft.getThrowable()); in debug()
[all …]
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
DMessageFormatterTest.java274 FormattingTuple ft; in testArrayThrowable() local
279 ft = MessageFormatter.arrayFormat("Value {} is smaller than {} and {}.", ia); in testArrayThrowable()
280 assertEquals("Value 1 is smaller than 2 and 3.", ft.getMessage()); in testArrayThrowable()
281 assertTrue(Arrays.equals(iaWitness, ft.getArgArray())); in testArrayThrowable()
282 assertEquals(t, ft.getThrowable()); in testArrayThrowable()
284 ft = MessageFormatter.arrayFormat("{}{}{}", ia); in testArrayThrowable()
285 assertEquals("123", ft.getMessage()); in testArrayThrowable()
286 assertTrue(Arrays.equals(iaWitness, ft.getArgArray())); in testArrayThrowable()
287 assertEquals(t, ft.getThrowable()); in testArrayThrowable()
289 ft = MessageFormatter.arrayFormat("Value {} is smaller than {}.", ia); in testArrayThrowable()
[all …]
/external/perfetto/src/tracing/core/
Dpacket_stream_validator_unittest.cc51 auto* ft = proto.mutable_ftrace_events()->add_event(); in TEST() local
52 ft->set_pid(42); in TEST()
53 ft->mutable_sched_switch()->set_prev_comm("tom"); in TEST()
54 ft->mutable_sched_switch()->set_prev_pid(123); in TEST()
55 ft->mutable_sched_switch()->set_next_comm("jerry"); in TEST()
56 ft->mutable_sched_switch()->set_next_pid(456); in TEST()
98 auto* ft = proto.mutable_ftrace_events()->add_event(); in TEST() local
99 ft->set_pid(42); in TEST()
100 ft->mutable_sched_switch()->set_prev_comm("tom"); in TEST()
101 ft->mutable_sched_switch()->set_prev_pid(123); in TEST()
[all …]
/external/harfbuzz_ng/test/shaping/data/text-rendering-tests/tests/
DCMAP-3.tests1 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
2 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
3 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
4 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
5 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
6 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
7 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
8 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
9 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
10 ../fonts/TestCMAPMacTurkish.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:…
[all …]
DSHKNDA-1.tests1 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0CB2,U+0CCD,U+0CB2…
2 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C9F,U+0CCD,U+0CB8…
3 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0CB3,U+0CBF:[knLLI]
4 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0CA1,U+0CBF:[knDDI]
5 …Regular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0CAE,U+0CC6:[knME]
6 …Regular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0CB0,U+0CBF:[knRI]
7 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C96,U+0CCD,U+0CAF…
8 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0CAB,U+0CCD,U+0CB0…
9 …Regular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0CA8,U+0CC6:[knNE]
10 …Regular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C97,U+0CBF:[knGI]
[all …]
DGPOS-1.tests1 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0104,…
2 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0104,…
3 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0104,…
4 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0104,…
5 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0104,…
6 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0051,…
7 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0105,…
8 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0105,…
9 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0067,…
10 ../fonts/TestGPOSOne.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0123,…
[all …]
DAVAR-1.tests1 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
2 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
3 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
4 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
5 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
6 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
7 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
8 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
9 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
10 ../fonts/TestAVAR.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variatio…
[all …]
DSHKNDA-3.tests1 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C95,U+0CCB,U+0C82…
2 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C96,U+0CCB,U+0C82…
3 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C97,U+0CCB,U+0C82…
4 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C98,U+0CCB,U+0C82…
5 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C99,U+0CCB,U+0C82…
6 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C9A,U+0CCB,U+0C82…
7 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C9B,U+0CCB,U+0C82…
8 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C9C,U+0CCB,U+0C82…
9 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C9D,U+0CCB,U+0C82…
10 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0C9E,U+0CCB,U+0C82…
[all …]
DSHBALI-1.tests1 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B13,U+1B38,U+1B00…
2 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B15,U+1B44,U+1B16…
3 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B18,U+1B3B:[gid28…
4 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B19,U+1B40:[gid66…
5 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B1A,U+1B3F:[gid67…
6 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B14,U+1B36:[gid24…
7 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B13,U+1B44,U+1B13…
8 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B13,U+1B44,U+1B1B…
9 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B13,U+1B44,U+1B26…
10 …egular.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1B13,U+1B44,U+1B13…
[all …]
DCFF-1.tests1 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+00…
2 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+21…
3 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+24…
4 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+24…
5 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+24…
6 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+4E…
7 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+FF…
8 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+10…
9 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1D…
10 ../fonts/FDArrayTest257.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+1F…
[all …]
DCFF-2.tests1 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
2 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
3 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
4 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
5 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
6 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
7 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
8 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
9 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
10 ../fonts/FDArrayTest65535.otf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+…
[all …]
DMORX-5.tests1 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
2 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
3 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
4 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
5 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
6 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
7 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
8 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
9 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
10 ../fonts/TestMORXFour.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+0050…
[all …]
DMORX-3.tests1 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
2 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
3 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
4 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
5 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
6 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
7 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
8 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
9 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
10 ../fonts/TestMORXThree.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft:U+004…
[all …]
DGVAR-4.tests1 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
2 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
3 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
4 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
5 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
6 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
7 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
8 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
9 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
10 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
[all …]
DGVAR-5.tests1 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
2 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
3 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
4 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
5 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
6 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
7 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
8 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
9 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
10 ../fonts/Zycon.ttf:--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=…
[all …]
/external/rnnoise/training/
Ddump_rnn.py15 def printVector(f, ft, vector, name): argument
21 ft.write('{}'.format(min(127, int(round(256*v[i])))))
26 ft.write(" ")
33 ft.write("\n")
36 def printLayer(f, ft, layer): argument
40 ft.write('{} {} '.format(weights[0].shape[0], weights[0].shape[1]/3))
42 ft.write('{} {} '.format(weights[0].shape[0], weights[0].shape[1]))
44 ft.write('1\n')
46 ft.write('2\n')
48 ft.write('0\n')
[all …]
/external/rust/crates/chrono/src/sys/
Dwindows.rs27 fn file_time_as_u64(ft: &FILETIME) -> u64 { in file_time_as_u64()
28 ((ft.dwHighDateTime as u64) << 32) | (ft.dwLowDateTime as u64) in file_time_as_u64()
31 fn file_time_to_unix_seconds(ft: &FILETIME) -> i64 { in file_time_to_unix_seconds()
32 let t = file_time_as_u64(ft) as i64; in file_time_to_unix_seconds()
38 let mut ft = mem::zeroed(); in system_time_to_file_time() localVariable
39 SystemTimeToFileTime(sys, &mut ft); in system_time_to_file_time()
40 ft in system_time_to_file_time()
92 let ft = time_to_file_time(sec); in time_to_local_tm() localVariable
96 call!(FileTimeToSystemTime(&ft, &mut utc)); in time_to_local_tm()
115 let mut ft = mem::zeroed(); in utc_tm_to_time() localVariable
[all …]
/external/skia/fuzz/
DFuzzPathop.cpp28 SkPathFillType ft; in DEF_FUZZ() local
29 fuzz->nextRange(&ft, 0, (int)SkPathFillType::kInverseEvenOdd); in DEF_FUZZ()
30 path.setFillType(ft); in DEF_FUZZ()
44 SkPathFillType ft; in DEF_FUZZ() local
45 fuzz->nextRange(&ft, 0, (int)SkPathFillType::kInverseEvenOdd); in DEF_FUZZ()
46 path.setFillType(ft); in DEF_FUZZ()
60 SkPathFillType ft; in DEF_FUZZ() local
61 fuzz->nextRange(&ft, 0, SkPathFillType::kInverseEvenOdd); in DEF_FUZZ()
62 path.setFillType(ft); in DEF_FUZZ()
66 fuzz->nextRange(&ft, 0, SkPathFillType::kInverseEvenOdd); in DEF_FUZZ()
[all …]
/external/skqp/fuzz/
DFuzzPathop.cpp28 SkPath::FillType ft; in DEF_FUZZ() local
29 fuzz->nextRange(&ft, 0, SkPath::kInverseEvenOdd_FillType); in DEF_FUZZ()
30 path.setFillType(ft); in DEF_FUZZ()
44 SkPath::FillType ft; in DEF_FUZZ() local
45 fuzz->nextRange(&ft, 0, SkPath::kInverseEvenOdd_FillType); in DEF_FUZZ()
46 path.setFillType(ft); in DEF_FUZZ()
60 SkPath::FillType ft; in DEF_FUZZ() local
61 fuzz->nextRange(&ft, 0, SkPath::kInverseEvenOdd_FillType); in DEF_FUZZ()
62 path.setFillType(ft); in DEF_FUZZ()
66 fuzz->nextRange(&ft, 0, SkPath::kInverseEvenOdd_FillType); in DEF_FUZZ()
[all …]

12345678910>>...23