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

1 2 3 4

  /external/chromium_org/v8/test/mjsunit/regress/
regress-2027.js 30 function Check(time) {
34 Check(d.setMilliseconds(10));
35 Check(d.setSeconds(10));
36 Check(d.setMinutes(10));
37 Check(d.setHours(10));
38 Check(d.setDate(10));
39 Check(d.setMonth(10));
40 Check(d.setFullYear(2010));
41 Check(d.setUTCMilliseconds(10));
42 Check(d.setUTCSeconds(10))
    [all...]
regress-357108.js 8 function Check(a) {
16 Check(new constructor(1));
17 Check(new constructor(100));
  /external/chromium_org/v8/test/mjsunit/harmony/
block-early-errors.js 35 function Check(str) {
50 // Check for early syntax errors when using let
52 Check("let x;");
53 Check("let x = 1;");
54 Check("let x, y;");
  /bionic/tests/
sys_statvfs_test.cpp 27 template <typename StatVfsT> void Check(StatVfsT& sb) {
38 Check(sb);
44 Check(sb);
52 Check(sb);
59 Check(sb);
sys_vfs_test.cpp 27 template <typename StatFsT> void Check(StatFsT& sb) {
39 Check(sb);
45 Check(sb);
53 Check(sb);
60 Check(sb);
stack_protector_test.cpp 47 void Check() {
67 checker->Check();
92 // For ARM and MIPS, glibc has a global stack check guard value.
  /external/chromium_org/third_party/webrtc/base/
safe_conversions.h 24 inline void Check(bool condition) {
26 LOG(LS_ERROR) << "CHECK failed.";
41 // overflow or underflow. NaN source will always trigger a CHECK.
44 Check(IsValueInRangeForNumericType<Dst>(value));
50 // underflow. NaN assignment to an integral will trigger a CHECK condition.
69 Check(false);
73 Check(false); // NOTREACHED();
  /external/chromium_org/chrome/browser/extensions/
requirements_checker.cc 30 void RequirementsChecker::Check(scoped_refptr<const Extension> extension,
  /external/chromium_org/chromeos/login/auth/
online_attempt_host.cc 27 void OnlineAttemptHost::Check(net::URLRequestContextGetter* request_context,
  /external/chromium_org/extensions/common/permissions/
media_galleries_permission_data.cc 16 bool MediaGalleriesPermissionData::Check(
usb_device_permission_data.cc 40 bool UsbDevicePermissionData::Check(
settings_override_permission.cc 51 bool SettingsOverrideAPIPermission::Check(
  /external/chromium_org/third_party/closure_linter/closure_linter/
checker.py 66 def Check(self, start_token, limited_doc_checks=False, is_html=False,
checkerbase.py 37 """Initializes to prepare to check a file.
129 def Check(self, start_token, limited_doc_checks=False, is_html=False,
138 stop_token: If given, check should stop at this token.
148 Used to encapsulate the logic needed to check an individual token so that it
152 token: The token to check.
168 stop_token: The last token to check (if given).
180 # deleted token. So we need to check the token itself to make sure it is
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.h 25 std::error_code Check(std::error_code Err) {
  /external/chromium_org/chrome/browser/chromeos/net/
network_portal_detector_test_utils.cc 29 bool EnumHistogramChecker::Check() {
  /external/chromium_org/extensions/renderer/
logging_native_handler.cc 18 "CHECK",
19 base::Bind(&LoggingNativeHandler::Check, base::Unretained(this)));
32 void LoggingNativeHandler::Check(
37 CHECK(check_value) << error_message;
82 CHECK(!frame.IsEmpty());
  /external/chromium_org/tools/
diagnose-me.py 15 def Check(name):
16 """Decorator that defines a diagnostic check."""
23 @Check("/usr/bin/ld is not gold")
34 @Check("random lds are not in the $PATH")
47 @Check("/usr/bin/ld doesn't point to gold")
49 # Check /usr/bin/ld* symlinks.
70 @Check("random ninja binaries are not in the $PATH")
82 @Check("build dependencies are satisfied")
87 proc = subprocess.Popen([script_path, '--quick-check'],
97 for name, check in all_checks
    [all...]
  /external/chromium_org/v8/tools/
android-run.py 44 def Check(output, errors):
67 return exit_code or Check(output, errors)
nacl-run.py 39 def Check(output, errors):
62 return exit_code or Check(output, errors)
  /frameworks/av/media/libstagefright/codecs/common/include/
voMem.h 47 VO_U32 (VO_API * Check) (VO_S32 uID, VO_PTR pBuffer, VO_U32 uSize);
  /external/chromium_org/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);
  /external/chromium_org/android_webview/browser/
aw_ssl_host_state_delegate.cc 29 bool CertPolicy::Check(const net::X509Certificate& cert,
84 return cert_policy_for_host_[host].Check(cert, error)
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 33 const CheckName Check;
40 BugType(class CheckName check, StringRef name, StringRef cat)
41 : Check(check), Name(name), Category(cat), SuppressonSink(false) {}
43 : Check(checker->getCheckName()), Name(name), Category(cat),
50 StringRef getCheckName() const { return Check.getName(); }
65 BuiltinBug(class CheckName check, const char *name, const char *description)
66 : BugType(check, name, categories::LogicError), desc(description) {}
  /external/libvpx/libvpx/test/
register_state_check.h 46 ~RegisterStateCheck() { EXPECT_TRUE(Check()); }
59 bool Check() const {
108 ~RegisterStateCheck() { EXPECT_TRUE(Check()); }
117 bool Check() const {

Completed in 747 milliseconds

1 2 3 4