HomeSort by relevance Sort by last modified time
    Searched defs:Valid (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptsyntaxcheckresult.h 32 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 {
  /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()) {
  /external/llvm/lib/MC/MCDisassembler/
EDInst.h 39 bool Valid;
44 CachedResult() : Valid(false) { }
45 /// valid - Returns true if the result has been obtained by executing the
47 bool valid() { return Valid; } function in struct:llvm::CachedResult
49 /// valid() is false
51 /// setResult - Sets the result of the function and declares it valid
55 int setResult(int result) { Result = result; Valid = true; return result; }
EDDisassembler.h 127 bool Valid;
192 /// valid - reports whether there was a failure in the constructor.
193 bool valid() { function in struct:llvm::EDDisassembler
194 return Valid;
  /external/llvm/lib/Support/
Triple.cpp 428 // component movement when a component parses as (eg) both a valid arch and a
429 // valid os.
452 // positions by seeing if they parse as a valid architecture, and if so moving
463 // Does this component parse as valid for the target position?
464 bool Valid = false;
471 Valid = Arch != UnknownArch;
475 Valid = Vendor != UnknownVendor;
479 Valid = OS != UnknownOS;
483 Valid = Environment != UnknownEnvironment;
486 if (!Valid)
    [all...]
  /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/include/llvm/Support/
CommandLine.h 288 // want. This is only valid on "opt" arguments, not on "list" arguments.
357 bool Valid;
359 OptionValueCopy() : Valid(false) {}
361 bool hasValue() const { return Valid; }
364 assert(Valid && "invalid option value");
368 void setValue(const DataType &V) { Valid = true; Value = V; }
371 return Valid && (Value != V);
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 76 /// @brief Determine if it is valid to fold a cast of a cast
715 bool Valid = true;
719 Valid = false;
727 if (Valid) return ConstantVector::get(Res);
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/include/
avcint_common.h 297 uint Valid; /* indicates the parameter set is valid */
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 609 // in a semantically valid state.
    [all...]

Completed in 455 milliseconds