HomeSort by relevance Sort by last modified time
    Searched refs:CheckResult (Results 1 - 22 of 22) sorted by null

  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
CheckResult.java 13 public class CheckResult {
15 * The status of a CheckResult
24 CheckResult.ResultStatus status;
37 public CheckResult setPath(String path) {
42 public CheckResult setLocale(String locale) {
47 public CheckResult() {
50 public CheckResult setMessage(String msg, Object[] args) {
55 public CheckResult.ResultStatus getStatus() {
59 public CheckResult setStatus(CheckResult.ResultStatus status)
    [all...]
  /external/icu/icu4c/source/i18n/
uspoof_impl.h 112 * Class CheckResult corresponds directly to the plain C API opaque type
115 class CheckResult : public UObject {
117 CheckResult();
118 virtual ~CheckResult();
121 static CheckResult *validateThis(USpoofCheckResult *ptr, UErrorCode &status);
122 static const CheckResult *validateThis(const USpoofCheckResult *ptr, UErrorCode &status);
126 // Used to convert this CheckResult to the older int32_t return value API
uspoof_impl.cpp 453 // class CheckResult Implementation
457 CheckResult::CheckResult() : fMagic(USPOOF_CHECK_MAGIC) {
461 USpoofCheckResult* CheckResult::asUSpoofCheckResult() {
466 // Incoming parameter check on Status and the CheckResult object
469 const CheckResult* CheckResult::validateThis(const USpoofCheckResult *ptr, UErrorCode &status) {
475 CheckResult *This = (CheckResult*) ptr;
483 CheckResult* CheckResult::validateThis(USpoofCheckResult *ptr, UErrorCode &status)
    [all...]
uspoof.cpp 381 USpoofCheckResult* checkResult,
393 int32_t result = uspoof_check2UnicodeString(sc, idStr, checkResult, status);
417 USpoofCheckResult* checkResult,
424 int32_t result = uspoof_check2UnicodeString(sc, idStr, checkResult, status);
550 static int32_t checkImpl(const SpoofImpl* This, const UnicodeString& id, CheckResult* checkResult, UErrorCode* status) {
552 U_ASSERT(checkResult != NULL);
553 checkResult->clear();
561 checkResult->fRestrictionLevel = idRestrictionLevel;
570 checkResult->fNumerics = numerics; // UnicodeSet::operator
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/
SpoofCheckerTest.java 39 import android.icu.text.SpoofChecker.CheckResult;
115 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult();
261 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult();
299 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult();
308 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult();
366 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult()
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
SpoofCheckerTest.java 38 import com.ibm.icu.text.SpoofChecker.CheckResult;
112 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult();
258 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult();
296 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult();
305 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult();
363 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult()
    [all...]
  /external/syzkaller/syz-fuzzer/
fuzzer.go 165 if r.CheckResult == nil {
170 r.CheckResult, err = checkMachine(checkArgs)
172 r.CheckResult = &rpctype.CheckArgs{
176 r.CheckResult.Name = *flagName
177 if err := manager.Call("Manager.Check", r.CheckResult, nil); err != nil {
180 if r.CheckResult.Error != "" {
181 log.Fatalf("%v", r.CheckResult.Error)
184 log.Logf(0, "syscalls: %v", len(r.CheckResult.EnabledCalls))
185 for _, feat := range r.CheckResult.Features {
188 periodicCallback, err := host.Setup(target, r.CheckResult.Features
    [all...]
  /external/libaom/libaom/test/
subtract_test.cc 146 void CheckResult();
160 void AV1HBDSubtractBlockTest::CheckResult() {
187 TEST_P(AV1HBDSubtractBlockTest, CheckResult) { CheckResult(); }
comp_mask_variance_test.cc 56 bool CheckResult(int width, int height) {
117 ASSERT_EQ(CheckResult(w, h), true)
213 ASSERT_EQ(CheckResult(w, h), true)
301 bool CheckResult(int width, int height) {
373 ASSERT_EQ(CheckResult(w, h), true)
503 ASSERT_EQ(CheckResult(w, h), true)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
ShortcutThrottlingResetActivity.java 94 tests.add(new CheckResult());
181 protected class CheckResult extends InteractiveTestCase {
  /external/syzkaller/pkg/rpctype/
rpctype.go 36 CheckResult *CheckArgs
  /external/tensorflow/tensorflow/core/kernels/
svd_op_gpu.cu.cc 214 CheckResult(context, std::move(done), dev_info, std::move(solver));
217 void CheckResult(OpKernelContext* context, DoneCallback done,
  /art/dex2oat/
dex2oat_test.cc 272 CheckResult(expect_use);
279 virtual void CheckResult(bool expect_use) {
497 CheckResult(dex_location,
505 void CheckResult(const std::string& dex_location,
722 // Don't check the result since CheckResult relies on the class being in the profile.
735 CheckResult(dex_location, odex_location, app_image_file);
783 void CheckResult(const std::string& dex_location,
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/
IsaFloppy.h 965 CheckResult (
IsaFloppyCtrl.c 959 return CheckResult (&Result, FdcDev);
1211 CheckResult (
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SpoofChecker.java 146 * To get more details on why a string failed the checks, use a {@link SpoofChecker.CheckResult}:
155 * SpoofChecker.CheckResult checkResult = new SpoofChecker.CheckResult();
156 * boolean result = sc.failsChecks("p?yp?l", checkResult);
157 * System.out.println(checkResult.checks); // 16
448 // Update CheckResult.toString() when a new check is added.
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SpoofChecker.java 145 * To get more details on why a string failed the checks, use a {@link SpoofChecker.CheckResult}:
154 * SpoofChecker.CheckResult checkResult = new SpoofChecker.CheckResult();
155 * boolean result = sc.failsChecks("p?yp?l", checkResult);
156 * System.out.println(checkResult.checks); // 16
480 // Update CheckResult.toString() when a new check is added.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyPei/
FloppyPeim.c 1135 CheckResult (
    [all...]
  /external/syzkaller/tools/syz-runtest/
runtest.go 97 mgr.checkResult = <-mgr.checkResultC
100 for sandbox, ids := range mgr.checkResult.EnabledCalls {
107 for _, feat := range mgr.checkResult.Features {
116 Features: mgr.checkResult.Features,
136 checkResult *rpctype.CheckArgs
204 r.CheckResult = mgr.checkResult
  /external/clang/lib/CodeGen/
CGClass.cpp     [all...]
  /external/syzkaller/syz-manager/
manager.go 60 checkResult *rpctype.CheckArgs
472 for _, id := range mgr.checkResult.EnabledCalls[mgr.cfg.Sandbox] {
905 r.CheckResult = mgr.checkResult
915 if mgr.checkResult != nil {
940 mgr.checkResult = a
    [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 1110 milliseconds