HomeSort by relevance Sort by last modified time
    Searched defs:Check (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /art/test/140-field-packing/src/
Main.java 20 GapOrder.Check();
GapOrder.java 70 static public void Check() {
  /test/vts-testcase/kernel/ltp/shell_environment/definitions/
bin_in_path.py 22 """Class for check existence of, make, and afterwards delete directories.
25 to_check: bool, whether or not to check the defined environment
49 Check input path is not null or empty list or list containing
60 def Check(self):
loop_device_support.py 25 def Check(self):
directory_exists.py 22 """Class for check existence of, make, and afterwards delete directories.
25 to_check: bool, whether or not to check the defined environment
50 Check input path is not null or empty list or list containing
61 def Check(self):
path_permission.py 22 """Class for check and set path permissions.
25 to_check: bool, whether or not to check the defined environment
51 Check whether input lists is not null or empty list
65 def Check(self):
  /bionic/tests/
sys_statvfs_test.cpp 27 template <typename StatVfsT> void Check(StatVfsT& sb) {
43 Check(sb);
49 Check(sb);
57 Check(sb);
65 Check(sb);
sys_vfs_test.cpp 27 template <typename StatFsT> void Check(StatFsT& sb) {
44 Check(sb);
50 Check(sb);
58 Check(sb);
66 Check(sb);
iconv_test.cpp 305 // Check we got the bytes we were expecting.
362 static void Check(int expected_errno, const char* src_enc, const char* src, size_t n) {
376 Check(EILSEQ, "ASCII", "\xac", 1); // > 0x7f, so not ASCII.
380 Check(EILSEQ, "utf8", "\x82", 1); // Invalid initial byte.
384 Check(EILSEQ, "utf8", "\xe2\xe2\x82", 3); // Invalid second byte.
388 Check(EILSEQ, "utf16be", "\xdc\x37" "\xd8\x01", 4);
392 Check(EILSEQ, "utf16le", "\x37\xdc" "\x01\xd8", 4);
396 Check(EINVAL, "utf8", "\xe2\x82", 2); // Missing final byte of 3-byte sequence.
400 Check(EINVAL, "utf16be", "\x00", 1); // Missing second byte.
404 Check(EINVAL, "utf16be", "\xd8\x01", 2)
    [all...]
stack_protector_test.cpp 42 void Check() {
70 // Check the main thread.
72 checker.Check();
79 checker->Check();
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/
ConPlatform.h 52 Check,
258 If FALSE, the routine just check whether Single matches
282 @param Operation Variable operations, including APPEND, CHECK and DELETE.
297 Check if the device supports hot-plug through its device path.
299 This function could be updated to check more types of Hot Plug devices.
  /external/v8/tools/
android-run.py 44 def Check(output, errors):
67 return exit_code or Check(output, errors)
  /test/vts-testcase/kernel/ltp/
environment_requirement_checker.py 38 check functions to be mapped with. All check functions' results
45 (bool, string)}, a map between check method name and cached result
97 def Check(self, test_case):
98 """Check whether a given test case's requirement has been satisfied.
101 If check failed, this method returns False and the reason is set
105 test_case: TestCase object, a given test case to check
108 True if check pass; False otherwise
134 """Run a batch job to check executable exists and set permissions.
157 # Check existence of all executables used in test definition
    [all...]
  /external/libchrome/base/threading/
thread_collision_warner.h 118 base::ThreadCollisionWarner::Check check_##obj(&obj)
134 // in case of collision (check thread_collision_warner_unittests.cc)
162 class BASE_EXPORT Check {
164 explicit Check(ThreadCollisionWarner* warner)
169 ~Check() {}
174 DISALLOW_COPY_AND_ASSIGN(Check);
  /art/test/203-multi-checkpoint/
multi_checkpoint.cc 34 CHECK(!second_run);
43 CHECK(!second_run);
44 CHECK(first_run_start);
50 void Check() {
51 CHECK(first_run_start);
52 CHECK(first_run_end);
53 CHECK(second_run);
54 CHECK(second_run_interleaved);
61 gTestClosure.Check();
70 CHECK(self->RequestCheckpoint(&gTestClosure)) << "Could not set first checkpoint."
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Ecc.py 24 from Check import Check
71 # Check EFI_SOURCE (Edk build convention). EDK_SOURCE will always point to ECP
128 # Start to check
129 self.Check()
274 # Check each checkpoint
276 def Check(self):
278 EccCheck = Check()
279 EccCheck.Check()
336 # Check workspace envirnoment
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
Check.java 2 * Check
10 package org.tukaani.xz.check;
15 public abstract class Check {
34 public static Check getInstance(int checkType)
55 "Unsupported Check ID " + checkType);
  /external/skia/tools/skiaserve/tester/
tester.py 24 def Check(request):
55 return Check(requests.get(self.url + '/info'))
62 return Check(requests.post(self.url + '/new', files=files))
66 return WriteJson(Check(requests.get(self.url + '/cmd')), path)
72 return WritePng(Check(requests.get(url)), path)
75 return Check(requests.post(self.url + '/enableGPU/1'))
78 return Check(requests.post(self.url + '/enableGPU/0'))
86 return WriteJson(Check(requests.get(self.url + '/batches')), path)
  /external/skqp/tools/skiaserve/tester/
tester.py 24 def Check(request):
55 return Check(requests.get(self.url + '/info'))
62 return Check(requests.post(self.url + '/new', files=files))
66 return WriteJson(Check(requests.get(self.url + '/cmd')), path)
72 return WritePng(Check(requests.get(url)), path)
75 return Check(requests.post(self.url + '/enableGPU/1'))
78 return Check(requests.post(self.url + '/enableGPU/0'))
86 return WriteJson(Check(requests.get(self.url + '/batches')), path)
  /external/tensorflow/tensorflow/contrib/lite/kernels/
split_test.cc 68 void Check(int axis, int num_splits, std::initializer_list<int> input_shape,
100 Check(/*axis=*/0, /*num_splits=*/2, {2, 2, 2, 2}, {1, 2, 2, 2},
106 Check(/*axis=*/1, /*num_splits=*/2, {2, 2, 2, 2}, {2, 1, 2, 2},
112 Check(/*axis=*/2, /*num_splits=*/2, {2, 2, 2, 2}, {2, 2, 1, 2},
118 Check(/*axis=*/3, /*num_splits=*/2, {2, 2, 2, 2}, {2, 2, 2, 1},
127 Check(/*axis=*/0, /*num_splits=*/8, {8}, {1}, {1, 2, 3, 4, 5, 6, 7, 8},
132 Check(/*axis=*/-4, /*num_splits=*/2, {2, 2, 2, 2}, {1, 2, 2, 2},
  /external/v8/src/compiler/
redundancy-elimination.h 22 struct Check {
23 Check(Node* node, Check* next) : node(node), next(next) {}
25 Check* next;
40 EffectPathChecks(Check* head, size_t size) : head_(head), size_(size) {}
44 Check* head_;
  /frameworks/av/media/libstagefright/codecs/common/include/
voMem.h 47 VO_U32 (VO_API * Check) (VO_S32 uID, VO_PTR pBuffer, VO_U32 uSize);
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
CheckedTask.java 22 * An {@link AsyncTask} that guards work with checks that a paired {@link Check}
37 private Check mCheck;
39 public CheckedTask(Check check) {
40 mCheck = check;
77 public interface Check {
  /system/vold/fs/
Exfat.cpp 41 status_t Check(const std::string& source) {
48 LOG(INFO) << "Check OK";
51 LOG(ERROR) << "Check failed (code " << rc << ")";
F2fs.cpp 45 status_t Check(const std::string& source) {

Completed in 690 milliseconds

1 2 3 4 5 6 7 8