HomeSort by relevance Sort by last modified time
    Searched refs:Valid (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptsyntaxcheckresult.h 32 Valid
qscriptsyntaxcheckresult_p.h 63 return m_exception ? QScriptSyntaxCheckResult::Error : QScriptSyntaxCheckResult::Valid;
  /external/chromium/chrome/browser/extensions/
extension_rlz_apitest.cc 56 ASSERT_FALSE(key.Valid());
60 ASSERT_FALSE(key.Valid());
80 ASSERT_TRUE(key.Valid());
95 ASSERT_FALSE(key.Valid());
external_registry_extension_loader_win.cc 47 while (iterator.Valid()) {
  /external/chromium/chrome/browser/sync/engine/
get_commit_ids_command.h 55 if (Valid() && !ValidateMetahandleForCommit(*handle_iterator_))
61 DCHECK(Valid());
66 if (!Valid())
79 bool Valid() const {
get_commit_ids_command.cc 134 !IsCommitBatchFull() && iterator.Valid();
160 !IsCommitBatchFull() && iterator.Valid();
223 !IsCommitBatchFull() && iterator.Valid();
  /external/chromium/base/win/
registry.h 51 // True while the key is valid.
52 bool Valid() const { return key_ != NULL; }
110 // True while the iterator is valid.
111 bool Valid() const;
150 // True while the iterator is valid.
151 bool Valid() const;
registry.cc 319 bool RegistryValueIterator::Valid() const {
330 if (Valid()) {
386 bool RegistryKeyIterator::Valid() const {
397 if (Valid()) {
registry_unittest.cc 49 ASSERT_TRUE(key.Valid());
  /external/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.cpp 21 StringRef NamedImmMapper::toString(uint32_t Value, bool &Valid) const {
24 Valid = true;
29 Valid = false;
33 uint32_t NamedImmMapper::fromString(StringRef Name, bool &Valid) const {
37 Valid = true;
42 Valid = false;
473 A64SysReg::SysRegMapper::fromString(StringRef Name, bool &Valid) const {
478 Valid = true;
487 Valid = true;
498 Valid = false
    [all...]
AArch64BaseInfo.h 128 StringRef toString(uint32_t Value, bool &Valid) const;
129 uint32_t fromString(StringRef Name, bool &Valid) const;
132 /// a simple immediate. Currently the only valid forms are ranges [0, N) where
633 uint32_t fromString(StringRef Name, bool &Valid) const;
634 std::string toString(uint32_t Bits, bool &Valid) const;
647 uint32_t ParseGenericRegister(StringRef Name, bool &Valid);
  /external/skia/src/image/
SkSurface_Raster.cpp 18 static bool Valid(const SkImage::Info&, size_t rb = kIgnoreRowBytesValue);
39 bool SkSurface_Raster::Valid(const SkImage::Info& info, size_t rowBytes) {
143 if (!SkSurface_Raster::Valid(info, rowBytes)) {
154 if (!SkSurface_Raster::Valid(info)) {
  /external/chromium/chrome/browser/autofill/
autofill_ie_toolbar_import_win_unittest.cc 103 EXPECT_TRUE(subkey.Valid());
131 EXPECT_TRUE(temp_hkcu_hive_key_.Valid());
146 EXPECT_TRUE(profile_key.Valid());
153 EXPECT_TRUE(cc_key.Valid());
195 EXPECT_TRUE(cc_key.Valid());
autofill_ie_toolbar_import_win.cc 129 if (!key->Valid())
210 for (; iterator_profiles.Valid(); ++iterator_profiles) {
233 if (cc_key.Valid()) {
242 for (; iterator_cc.Valid(); ++iterator_cc) {
  /external/aac/libAACdec/src/
channelinfo.cpp 131 pIcsInfo->Valid = 0;
208 pIcsInfo->Valid = 1;
channelinfo.h 159 UCHAR Valid;
378 return pIcsInfo->Valid;
  /external/webkit/Source/WebCore/platform/leveldb/
LevelDBIterator.cpp 59 return m_iterator->Valid();
  /external/chromium/base/allocator/
allocator_unittests.cc 36 static bool Valid(unsigned char* buffer, int n) {
362 EXPECT_TRUE(Valid(ptr, size));
423 EXPECT_TRUE(Valid(dst, min(src_size, dst_size)));
425 EXPECT_TRUE(Valid(dst, dst_size));
475 EXPECT_TRUE(Valid(dst, min(src_size, dst_size)));
477 EXPECT_TRUE(Valid(dst, dst_size));
  /external/llvm/lib/Support/
Triple.cpp 350 // component movement when a component parses as (eg) both a valid arch and a
351 // valid os.
374 // positions by seeing if they parse as a valid architecture, and if so moving
385 // Does this component parse as valid for the target position?
386 bool Valid = false;
392 Valid = Arch != UnknownArch;
396 Valid = Vendor != UnknownVendor;
400 Valid = OS != UnknownOS;
404 Valid = Environment != UnknownEnvironment;
407 if (!Valid)
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 61 QVERIFY2(engine.evaluate("1+1").isValid(), "the expression should be evaluated and an valid result should be returned");
382 << QString("0") << int(QScriptSyntaxCheckResult::Valid)
397 << QString("foo['bar']") << int(QScriptSyntaxCheckResult::Valid)
407 << QString("/*\nMy comment */\nfoo = 10") << int(QScriptSyntaxCheckResult::Valid)
416 << QString("foo = 10 /* My comment */") << int(QScriptSyntaxCheckResult::Valid)
420 << QString("/=/") << int(QScriptSyntaxCheckResult::Valid) << -1 << -1 << "";
422 << QString("/=/g") << int(QScriptSyntaxCheckResult::Valid) << -1 << -1 << "";
424 << QString("/a/") << int(QScriptSyntaxCheckResult::Valid) << -1 << -1 << "";
426 << QString("/a/g") << int(QScriptSyntaxCheckResult::Valid) << -1 << -1 << "";
459 if (expectedState != QScriptSyntaxCheckResult::Valid && errorColumnNumber != 1
    [all...]
  /external/chromium/chrome/browser/
shell_integration_win.cc 351 if (!key.Valid() || (key.ReadValue(L"", &value) != ERROR_SUCCESS))
382 if (key.Valid() && (key.ReadValue(L"Progid", &app_cmd) == ERROR_SUCCESS) &&
390 if (key.Valid() && (key.ReadValue(L"", &app_cmd) == ERROR_SUCCESS) &&
platform_util_win.cc 142 if (key.Valid()) {
  /external/chromium/chrome/browser/history/
history_publisher_win.cc 46 while (r_iter.Valid()) {
  /external/llvm/include/llvm/Support/
CommandLine.h 282 // want. This is only valid on "opt" arguments, not on "list" arguments.
353 bool Valid;
355 OptionValueCopy() : Valid(false) {}
357 bool hasValue() const { return Valid; }
360 assert(Valid && "invalid option value");
364 void setValue(const DataType &V) { Valid = true; Value = V; }
367 return Valid && (Value != V);
    [all...]
  /external/v8/test/mjsunit/
json.js 170 // JavaScript number literals not valid in JSON.
187 // JavaScript string literals not valid in JSON.
188 TestInvalid("'single quote'"); // Valid JavaScript
190 TestInvalid('"\\v invalid escape"'); // Valid JavaScript
191 TestInvalid('"\\\' invalid escape"'); // Valid JavaScript
192 TestInvalid('"\\x42 invalid escape"'); // Valid JavaScript

Completed in 389 milliseconds

1 2 3