Home
last modified time | relevance | path

Searched full:paras (Results 1 - 25 of 43) sorted by relevance

12

/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestReorderRunsOnly.java167 int paras; in testReorderRunsOnly()
169 paras = bidi.countParagraphs(); in testReorderRunsOnly()
170 assertEquals("\nInvalid number of paras #1 (should be 0): ", 0, paras); in testReorderRunsOnly()
172 paras = bidi.countParagraphs(); in testReorderRunsOnly()
173 assertEquals("\nInvalid number of paras #2 (should be 0): ", 0, paras); in testReorderRunsOnly()
175 paras = bidi.countParagraphs(); in testReorderRunsOnly()
176 assertEquals("\nInvalid number of paras #3 (should be 0): ", 0, paras); in testReorderRunsOnly()
[all...]
H A DTestMultipleParagraphs.java435 assertEquals("\nInvalid number of paras", 2, bidi.countParagraphs()); in testMultipleParagraphs()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/
H A DTestReorderRunsOnly.java170 int paras; in testReorderRunsOnly()
172 paras = bidi.countParagraphs(); in testReorderRunsOnly()
173 assertEquals("\nInvalid number of paras #1 (should be 0): ", 0, paras); in testReorderRunsOnly()
175 paras = bidi.countParagraphs(); in testReorderRunsOnly()
176 assertEquals("\nInvalid number of paras #2 (should be 0): ", 0, paras); in testReorderRunsOnly()
178 paras = bidi.countParagraphs(); in testReorderRunsOnly()
179 assertEquals("\nInvalid number of paras #3 (should be 0): ", 0, paras); in testReorderRunsOnly()
[all...]
H A DTestMultipleParagraphs.java438 assertEquals("\nInvalid number of paras", 2, bidi.countParagraphs()); in testMultipleParagraphs()
/kernel/uniproton/cmake/common/build_auxiliary_script/
H A Dmake_buildef.py18 paras = ["-f", kconfig_dir, "-o", buildef_file]
19 if do_cmd(paras, False) != 0:
24 paras = ["-e", "-f", kconfig_dir, "-o", buildef_file]
25 if do_cmd(paras, False) != 0:
/third_party/icu/icu4c/source/common/
H A Dubidi.cpp399 * Check that there are enough entries in the array pointed to by pBiDi->paras
404 if(pBiDi->paras==pBiDi->simpleParas) { in checkParaCount()
409 pBiDi->paras=pBiDi->parasMemory; in checkParaCount()
415 pBiDi->paras=pBiDi->parasMemory; in checkParaCount()
421 * determine the paragraph level if necessary (in pBiDi->paras[i].level).
473 pBiDi->paras[0].level=defaultParaLevel; in getDirProps()
478 pBiDi->paras[0].level=0; /* set the default para level */ in getDirProps()
480 pBiDi->paras[0].level=1; /* set the default para level */ in getDirProps()
486 pBiDi->paras[0].level=pBiDi->paraLevel; in getDirProps()
508 pBiDi->paras[pBiD in getDirProps()
[all...]
H A Dubidiimp.h129 ((UBiDiLevel)(!(ubidi)->defaultParaLevel || (index)<(ubidi)->paras[0].limit ? \
132 /* number of paras entries allocated initially without malloc */
351 Para *paras; member
353 /* for relatively short text, we only need a tiny array of paras (no malloc()) */
/third_party/node/deps/icu-small/source/common/
H A Dubidi.cpp399 * Check that there are enough entries in the array pointed to by pBiDi->paras
404 if(pBiDi->paras==pBiDi->simpleParas) { in checkParaCount()
409 pBiDi->paras=pBiDi->parasMemory; in checkParaCount()
415 pBiDi->paras=pBiDi->parasMemory; in checkParaCount()
421 * determine the paragraph level if necessary (in pBiDi->paras[i].level).
473 pBiDi->paras[0].level=defaultParaLevel; in getDirProps()
478 pBiDi->paras[0].level=0; /* set the default para level */ in getDirProps()
480 pBiDi->paras[0].level=1; /* set the default para level */ in getDirProps()
486 pBiDi->paras[0].level=pBiDi->paraLevel; in getDirProps()
508 pBiDi->paras[pBiD in getDirProps()
[all...]
H A Dubidiimp.h129 ((UBiDiLevel)(!(ubidi)->defaultParaLevel || (index)<(ubidi)->paras[0].limit ? \
132 /* number of paras entries allocated initially without malloc */
351 Para *paras; member
353 /* for relatively short text, we only need a tiny array of paras (no malloc()) */
/third_party/skia/third_party/externals/icu/source/common/
H A Dubidi.cpp399 * Check that there are enough entries in the array pointed to by pBiDi->paras
404 if(pBiDi->paras==pBiDi->simpleParas) { in checkParaCount()
409 pBiDi->paras=pBiDi->parasMemory; in checkParaCount()
415 pBiDi->paras=pBiDi->parasMemory; in checkParaCount()
421 * determine the paragraph level if necessary (in pBiDi->paras[i].level).
473 pBiDi->paras[0].level=defaultParaLevel; in getDirProps()
478 pBiDi->paras[0].level=0; /* set the default para level */ in getDirProps()
480 pBiDi->paras[0].level=1; /* set the default para level */ in getDirProps()
486 pBiDi->paras[0].level=pBiDi->paraLevel; in getDirProps()
508 pBiDi->paras[pBiD in getDirProps()
[all...]
H A Dubidiimp.h129 ((UBiDiLevel)(!(ubidi)->defaultParaLevel || (index)<(ubidi)->paras[0].limit ? \
132 /* number of paras entries allocated initially without malloc */
351 Para *paras; member
353 /* for relatively short text, we only need a tiny array of paras (no malloc()) */
/test/testfwk/xdevice/plugins/devicetest/core/suite/
H A Dtest_suite.py408 def _test_args_para_parse(self, paras):
409 paras = dict(paras)
410 for para_name in paras.keys():
412 para_values = paras.get(para_name, [])
/third_party/icu/icu4j/perf-tests/data/collation/
H A DTestRandomWordsUDHR_tr.txt127 parasızdır dünyada
172 Evlenme parasızdır eşitliğine
379 parasızdır tanınmasını saldırısız
497 parasızdır aramak
1457 parasızdır
1747 parasızdır ihtimam hakkından
1793 eğlenmeye çalışan parasızdır
2052 parasızdır
2441 gittikçe parasızdır içinde
2703 parasız
[all...]
/third_party/ffmpeg/libavcodec/
H A Dfits.h3 * Copyright (c) 2017 Paras Chadha
H A Dfitsenc.c3 * Copyright (c) 2017 Paras Chadha
H A Dfits.c3 * Copyright (c) 2017 Paras Chadha
H A Dfitsdec.c3 * Copyright (c) 2017 Paras Chadha
H A Dxpmdec.c5 * Copyright (c) 2017 Paras Chadha
/kernel/liteos_a/apps/perf/src/
H A Doption.c97 printf_debug("paras[%d]:%s\n", j, cmd->params[j]); in ParseOptions()
/third_party/ffmpeg/libavformat/
H A Dfitsdec.c3 * Copyright (c) 2017 Paras Chadha
H A Dfitsenc.c3 * Copyright (c) 2017 Paras Chadha
/kernel/linux/linux-5.10/drivers/net/fddi/skfp/
H A Dpmf.c344 pcon.pc_p = (void *) (smt + 1) ; /* paras start here */ in smt_build_pmf_response()
371 * process list of paras in smt_build_pmf_response()
425 * add all paras of group in smt_build_pmf_response()
635 * check special paras in smt_add_para()
H A Dsrf.c397 pcon.pc_p = (void *) (smt + 1) ; /* paras start here */ in smt_send_srf()
/kernel/linux/linux-6.6/drivers/net/fddi/skfp/
H A Dpmf.c340 pcon.pc_p = (void *) (smt + 1) ; /* paras start here */ in smt_build_pmf_response()
367 * process list of paras in smt_build_pmf_response()
421 * add all paras of group in smt_build_pmf_response()
631 * check special paras in smt_add_para()
H A Dsrf.c392 pcon.pc_p = (void *) (smt + 1) ; /* paras start here */ in smt_send_srf()

Completed in 57 milliseconds

12