Searched refs:checks (Results 1 - 25 of 117) sorted by relevance

12345

/external/chromium_org/third_party/closure_compiler/runner/src/com/google/javascript/jscomp/
H A DChromePassConfig.java16 List<PassFactory> checks = super.getChecks();
17 checks.add(0, chromePass);
18 return checks;
/external/jsoncpp/src/test_lib_json/
H A Dmain.cpp82 /// Initialize all checks to \c false by default.
174 IsCheck checks; local
175 checks.isObject_ = true;
176 JSONTEST_ASSERT_PRED( checkIs( emptyObject_, checks ) );
177 JSONTEST_ASSERT_PRED( checkIs( object1_, checks ) );
218 IsCheck checks; local
219 checks.isArray_ = true;
220 JSONTEST_ASSERT_PRED( checkIs( emptyArray_, checks ) );
221 JSONTEST_ASSERT_PRED( checkIs( array1_, checks ) );
261 IsCheck checks; local
288 IsCheck checks; local
319 IsCheck checks; local
361 IsCheck checks; local
1042 IsCheck checks; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/
H A Djsdoc-validator.jar ... s?defs= " (int, int) } org/chromium/devtools/jsdoc/checks/ org/chromium/devtools/jsdoc/checks/ContextTrackingValidationCheck.class ContextTrackingValidationCheck. ...
/external/openssl/crypto/bn/
H A Dbn_depr.c94 int BN_is_prime(const BIGNUM *a, int checks, void (*callback)(int,int,void *), argument
99 return BN_is_prime_ex(a, checks, ctx_passed, &cb);
102 int BN_is_prime_fasttest(const BIGNUM *a, int checks, argument
109 return BN_is_prime_fasttest_ex(a, checks, ctx_passed,
H A Dbn_prime.c166 int checks = BN_prime_checks_for_size(bits); local
199 i=BN_is_prime_fasttest_ex(ret,checks,ctx,0,cb);
211 for (i=0; i<checks; i++)
238 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, BN_GENCB *cb) argument
240 return BN_is_prime_fasttest_ex(a, checks, ctx_passed, 0, cb);
243 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, argument
256 if (checks == BN_prime_checks)
257 checks = BN_prime_checks_for_size(BN_num_bits(a));
320 for (i = 0; i < checks; i++)
/external/openssl/apps/
H A Dprime.c64 int checks=20; local
92 else if(!strcmp(*argv,"-checks"))
96 checks=atoi(*++argv);
147 BN_is_prime_ex(bn,checks,NULL,NULL) ? "" : "not ");
158 BIO_printf(bio_err,"%-14s number of checks\n","-checks <n>");
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
H A DContextTrackingChecker.java1 package org.chromium.devtools.jsdoc.checks;
H A DTypeRecord.java1 package org.chromium.devtools.jsdoc.checks;
H A DContextTrackingState.java1 package org.chromium.devtools.jsdoc.checks;
H A DFunctionRecord.java1 package org.chromium.devtools.jsdoc.checks;
H A DAstUtil.java1 package org.chromium.devtools.jsdoc.checks;
34 // FIXME: Enable the setter and getter checks.
H A DContextTrackingValidationCheck.java1 package org.chromium.devtools.jsdoc.checks;
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DFileCheckerCallable.java11 import org.chromium.devtools.jsdoc.checks.ContextTrackingValidationCheck;
80 private final List<ValidationCheck> checks = new ArrayList<>(2); field in class:FileCheckerCallable.ValidationCheckDispatcher
89 checks.add(check);
94 for (DoDidNodeVisitor visitor : checks) {
101 for (ValidationCheck check : checks) {
/external/libhevc/common/arm/
H A Dihevc_inter_pred_chroma_copy.s110 cmp r7,#0 @checks ht == 0
114 tst r12,#15 @checks wd for multiples for 4 & 8
116 tst r12,#7 @checks wd for multiples for 4 & 8
124 subs r4,r12,#0 @checks wd == 0
156 subs r4,r12,#0 @checks wd == 0
178 subs r4,r12,#0 @checks wd
205 subs r4,r12,#0 @checks wd
225 subs r4,r12,#0 @checks wd
252 subs r4,r12,#0 @checks wd
H A Dihevc_inter_pred_luma_copy.s88 cmp r7,#0 @checks ht == 0
90 tst r12,#15 @checks wd for multiples for 4 & 8
92 tst r12,#7 @checks wd for multiples for 4 & 8
97 subs r4,r12,#0 @checks wd == 0
131 subs r4,r12,#0 @checks wd
160 subs r4,r12,#0 @checks wd
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dprime.c174 int checks = BN_prime_checks_for_size(bits); local
220 i = BN_is_prime_fasttest_ex(ret, checks, ctx, 0, cb);
233 for (i = 0; i < checks; i++) {
268 int checks, BN_CTX *ctx, int do_trial_division,
270 switch (BN_is_prime_fasttest_ex(candidate, checks, ctx, do_trial_division, cb)) {
283 int BN_is_prime_ex(const BIGNUM *candidate, int checks, BN_CTX *ctx, BN_GENCB *cb) { argument
284 return BN_is_prime_fasttest_ex(candidate, checks, ctx, 0, cb);
287 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, argument
300 if (checks == BN_prime_checks) {
301 checks
267 BN_primality_test(int *is_probably_prime, const BIGNUM *candidate, int checks, BN_CTX *ctx, int do_trial_division, BN_GENCB *cb) argument
[all...]
/external/libexif/test/nls/
H A Dtest-codeset.c133 static int checks() function
197 int ret = checks();
/external/llvm/test/MC/X86/
H A Dgnux32-dwarf-gen.s7 # This test checks the dwarf info section emitted to the output object by the
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dspooftest.c319 int32_t checks; local
323 checks = uspoof_getChecks(sc, &status);
325 TEST_ASSERT_EQ(USPOOF_ALL_CHECKS, checks);
327 checks &= ~(USPOOF_SINGLE_SCRIPT | USPOOF_MIXED_SCRIPT_CONFUSABLE);
328 uspoof_setChecks(sc, checks, &status);
331 TEST_ASSERT_EQ(checks, checks2);
333 /* The checks that were disabled just above are the same ones that the "scMixed" test fails.
361 /* Limit checks to USPOOF_CHAR_LIMIT. Some of the test data has whole script confusables also,
/external/icu/icu4c/source/test/cintltst/
H A Dspooftest.c319 int32_t checks; local
323 checks = uspoof_getChecks(sc, &status);
325 TEST_ASSERT_EQ(USPOOF_ALL_CHECKS, checks);
327 checks &= ~(USPOOF_SINGLE_SCRIPT | USPOOF_MIXED_SCRIPT_CONFUSABLE);
328 uspoof_setChecks(sc, checks, &status);
331 TEST_ASSERT_EQ(checks, checks2);
333 /* The checks that were disabled just above are the same ones that the "scMixed" test fails.
361 /* Limit checks to USPOOF_CHAR_LIMIT. Some of the test data has whole script confusables also,
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dgenerate_make.py106 checks = []
113 checks.append(srcfile)
115 ErrorMsgFunc('%s not found in:\n\t%s' % (name, '\n\t'.join(checks)))
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Ddatetime.pxd108 # Note, there are no range checks for any of the arguments.
113 # Note, there are no range checks for any of the arguments.
118 # Note, there are no range checks for any of the arguments.
123 # Note, there are no range checks for any of the arguments.
/external/libunwind/doc/
H A Dunw_is_fpreg.tex19 The \Func{unw\_is\_fpreg}() routine checks whether register number
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dbn.h579 * checks.
622 /* BN_prime_checks is magic value that can be used as the |checks| argument to
624 * Miller-Rabin checks that gives a false positive rate of ~2^{-80}. */
633 * function returning a false positive is 2^{2*checks}. If |checks| is
642 const BIGNUM *candidate, int checks,
651 * function returning one when |candidate| is composite is 2^{2*checks}. If
652 * |checks| is |BN_prime_checks| then a value that results in approximately
657 OPENSSL_EXPORT int BN_is_prime_fasttest_ex(const BIGNUM *candidate, int checks,
665 OPENSSL_EXPORT int BN_is_prime_ex(const BIGNUM *candidate, int checks,
[all...]

Completed in 357 milliseconds

12345