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

1 23 4 5 6 7 8

  /external/google-breakpad/src/testing/gtest/test/
gtest_environment_test.cc 109 // The sole purpose of this TEST is to enable us to check whether it
116 void Check(bool condition, const char* msg) {
143 Check(testing::AddGlobalTestEnvironment(env) == env,
148 Check(RunAllTests(env, NO_FAILURE) != 0,
151 Check(test_was_run,
154 Check(env->tear_down_was_run(),
159 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
162 Check(test_was_run,
165 Check(env->tear_down_was_run(),
170 Check(RunAllTests(env, FATAL_FAILURE) != 0
    [all...]
  /external/googletest/googletest/test/
gtest_environment_test.cc 109 // The sole purpose of this TEST is to enable us to check whether it
116 void Check(bool condition, const char* msg) {
143 Check(testing::AddGlobalTestEnvironment(env) == env,
148 Check(RunAllTests(env, NO_FAILURE) != 0,
151 Check(test_was_run,
154 Check(env->tear_down_was_run(),
159 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
162 Check(test_was_run,
165 Check(env->tear_down_was_run(),
170 Check(RunAllTests(env, FATAL_FAILURE) != 0
    [all...]
  /external/libvpx/libvpx/test/
register_state_check.h 53 ~RegisterStateCheck() { Check(); }
66 void Check() const {
108 ~RegisterStateCheck() { Check(); }
112 void Check() const {
154 ~RegisterStateCheckMMX() { Check(); }
159 void Check() const {
  /external/protobuf/gtest/test/
gtest_environment_test.cc 104 // The sole purpose of this TEST is to enable us to check whether it
111 void Check(bool condition, const char* msg) {
137 Check(testing::AddGlobalTestEnvironment(env) == env,
142 Check(RunAllTests(env, NO_FAILURE) != 0,
145 Check(test_was_run,
148 Check(env->tear_down_was_run(),
153 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
156 Check(test_was_run,
159 Check(env->tear_down_was_run(),
164 Check(RunAllTests(env, FATAL_FAILURE) != 0
    [all...]
  /external/v8/src/base/
safe_conversions_impl.h 108 // check by taking advantage of the fact that only NaN can be out of range in
133 // Dst range is statically determined to contain Src: Nothing to check.
143 static RangeConstraint Check(Src value) { return RANGE_VALID; }
154 static RangeConstraint Check(Src value) {
170 static RangeConstraint Check(Src value) {
182 static RangeConstraint Check(Src value) {
199 static RangeConstraint Check(Src value) {
213 return DstRangeRelationToSrcRangeImpl<Dst, Src>::Check(value);
  /external/v8/testing/gtest/test/
gtest_environment_test.cc 109 // The sole purpose of this TEST is to enable us to check whether it
116 void Check(bool condition, const char* msg) {
143 Check(testing::AddGlobalTestEnvironment(env) == env,
148 Check(RunAllTests(env, NO_FAILURE) != 0,
151 Check(test_was_run,
154 Check(env->tear_down_was_run(),
159 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
162 Check(test_was_run,
165 Check(env->tear_down_was_run(),
170 Check(RunAllTests(env, FATAL_FAILURE) != 0
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_environment_test.cc 109 // The sole purpose of this TEST is to enable us to check whether it
116 void Check(bool condition, const char* msg) {
143 Check(testing::AddGlobalTestEnvironment(env) == env,
148 Check(RunAllTests(env, NO_FAILURE) != 0,
151 Check(test_was_run,
154 Check(env->tear_down_was_run(),
159 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
162 Check(test_was_run,
165 Check(env->tear_down_was_run(),
170 Check(RunAllTests(env, FATAL_FAILURE) != 0
    [all...]
  /external/webrtc/webrtc/base/
firewallsocketserver.cc 30 if (!server_->Check(FP_TCP, GetLocalAddress(), addr)) {
46 if (!server_->Check(FP_UDP, GetLocalAddress(), addr)) {
65 if (server_->Check(FP_UDP, *paddr, GetLocalAddress()))
86 if (server_->Check(FP_TCP, addr, GetLocalAddress())) {
156 bool FirewallSocketServer::Check(FirewallProtocol p,
safe_conversions_impl.h 94 // check by taking advantage of the fact that only NaN can be out of range in
113 // Dst range always contains the result: nothing to check.
116 static RangeCheckResult Check(Src value) {
124 static RangeCheckResult Check(Src value) {
139 static RangeCheckResult Check(Src value) {
149 static RangeCheckResult Check(Src value) {
160 static RangeCheckResult Check(Src value) {
182 return RangeCheckImpl<Dst, Src>::Check(value);
  /prebuilts/go/darwin-x86/src/go/types/
api.go 7 // Config.Check to invoke the type checker for a package.
338 // Check type-checks a package and returns the resulting package object and
339 // the first error if any. Additionally, if info != nil, Check populates each
349 func (conf *Config) Check(path string, fset *token.FileSet, files []*ast.File, info *Info) (*Package, error) {
  /prebuilts/go/darwin-x86/src/testing/quick/
quick.go 20 var defaultMaxCount *int = flag.Int("quickchecks", 100, "The default number of iterations for each check")
220 // A SetupError is the result of an error in the way that check is being
226 // A CheckError is the result of Check finding an error.
247 // Check looks for an input to f, any function that returns bool,
250 // Check returns that input as a *CheckError.
258 // if err := quick.Check(f, nil); err != nil {
262 func Check(f interface{}, config *Config) error {
  /prebuilts/go/linux-x86/src/go/types/
api.go 7 // Config.Check to invoke the type checker for a package.
338 // Check type-checks a package and returns the resulting package object and
339 // the first error if any. Additionally, if info != nil, Check populates each
349 func (conf *Config) Check(path string, fset *token.FileSet, files []*ast.File, info *Info) (*Package, error) {
  /prebuilts/go/linux-x86/src/testing/quick/
quick.go 20 var defaultMaxCount *int = flag.Int("quickchecks", 100, "The default number of iterations for each check")
220 // A SetupError is the result of an error in the way that check is being
226 // A CheckError is the result of Check finding an error.
247 // Check looks for an input to f, any function that returns bool,
250 // Check returns that input as a *CheckError.
258 // if err := quick.Check(f, nil); err != nil {
262 func Check(f interface{}, config *Config) error {
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest_environment_test.cc 109 // The sole purpose of this TEST is to enable us to check whether it
116 void Check(bool condition, const char* msg) {
143 Check(testing::AddGlobalTestEnvironment(env) == env,
148 Check(RunAllTests(env, NO_FAILURE) != 0,
151 Check(test_was_run,
154 Check(env->tear_down_was_run(),
159 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
162 Check(test_was_run,
165 Check(env->tear_down_was_run(),
170 Check(RunAllTests(env, FATAL_FAILURE) != 0
    [all...]
  /system/update_engine/scripts/update_payload/
payload.py 264 def Check(self, pubkey_file_name=None, metadata_sig_file=None,
  /system/vold/fs/
Ext4.cpp 70 status_t Check(const std::string& source, const std::string& target) {
91 * check. Otherwise, it does nothing. If the kernel cannot mount the
92 * filesytsem due to an error, e2fsck is still run to do a full check
112 * (e.g. recent SDK system images). Detect these and skip the check.
  /art/compiler/debug/dwarf/
dwarf_test.h 39 #define DW_CHECK(substring) Check(substring, false, __FILE__, __LINE__)
40 #define DW_CHECK_NEXT(substring) Check(substring, true, __FILE__, __LINE__)
53 // Check that the objdump output contains given output.
55 void Check(const char* substr, bool next, const char* at_file, int at_line) {
  /art/compiler/optimizing/
optimizing_cfi_test.cc 60 // Ensure that slow-debug is off, so that there is no unexpected read-barrier check emitted.
103 void Check(InstructionSet isa,
126 Check(isa, isa_str, expected_asm, expected_cfi);
223 Check(InstructionSet::kThumb2, "kThumb2_adjust", expected_asm, expected_cfi);
253 Check(InstructionSet::kMips, "kMips_adjust", expected_asm, expected_cfi);
283 Check(InstructionSet::kMips64, "kMips64_adjust", expected_asm, expected_cfi);
  /external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp 25 void Check() { // expected-note{{'Check' declared here}}
39 Cleck(); // expected-error{{use of undeclared identifier 'Cleck'; did you mean 'Check'?}}
  /external/deqp/external/openglcts/modules/gl/
gl4cIncompleteTextureAccessTests.cpp 112 if (!Check(s_configurations[i]))
402 bool SamplerTest::Check(Configuration configuration)
  /external/tensorflow/tensorflow/contrib/lite/testing/
tflite_driver.cc 68 bool Check(bool verbose, const TfLiteTensor& tensor) {
79 fprintf(stderr, "Unsupported type %d in Check\n", tensor.type);
244 if (!p.second->Check(/*verbose=*/false, *tensor)) {
250 p.second->Check(/*verbose=*/true, *tensor);
  /frameworks/native/services/vr/performanced/
performance_service.cpp 46 static bool Check(const Message& sender, const Task&) {
57 static bool Check(const Message& sender, const Task&) {
67 static bool Check(const Message& sender, const Task&) {
74 static bool Check(const Message& sender, const Task& task) {
82 static bool Check(const Message& sender, const Task& task) {
84 EXPAND_PACK(allow |= Allows::Check(sender, task));
92 static bool Check(const Message& sender, const Task& task) {
94 EXPAND_PACK(allow &= Allows::Check(sender, task));
139 partition_permission_check_ = AllowRootSystemTrusted::Check;
148 .permission_check = AllowRootSystemAudio::Check}},
    [all...]
  /external/boringssl/src/tool/
digest.cc 206 // CheckModeArguments contains arguments for the check mode. See the
215 // Check reads lines from |source| where each line is in the format of the
222 static bool Check(const CheckModeArguments &args, const EVP_MD *md,
404 } else if (arg == "--check") {
427 "Check mode arguments are only meaningful when verifying checksums.\n");
443 ok &= Check(check_args, md, source);
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 39 struct Check : Bs<As>... {
40 Check(Cs...);
54 Check check(&x);
  /external/libchrome/base/message_loop/
message_pump_glib_unittest.cc 121 static gboolean Check(GSource* source) {
141 EventInjector::Check,
278 // After all the events have been processed, post a task that will check that

Completed in 1569 milliseconds

1 23 4 5 6 7 8