/external/skia/src/core/ |
H A D | SkNinePatchIter.h | 21 static bool Valid(int imageWidth, int imageHeight, const SkIRect& center);
|
H A D | SkNinePatchIter.cpp | 11 bool SkNinePatchIter::Valid(int width, int height, const SkIRect& center) { function in class:SkNinePatchIter
|
/external/webrtc/webrtc/system_wrappers/source/ |
H A D | ntp_time_unittest.cc | 23 EXPECT_FALSE(ntp.Valid()); 28 EXPECT_TRUE(ntp.Valid()); 30 EXPECT_FALSE(ntp.Valid());
|
/external/gptfdisk/ |
H A D | parttypes.h | 64 int Valid(uint16_t code) const;
|
H A D | parttypes.cc | 418 int PartType::Valid(uint16_t code) const { function in class:PartType 429 } // PartType::Valid()
|
/external/aac/libAACdec/src/ |
H A D | channelinfo.cpp | 131 pIcsInfo->Valid = 0; 208 pIcsInfo->Valid = 1;
|
H A D | channelinfo.h | 159 UCHAR Valid; member in struct:__anon204 378 return pIcsInfo->Valid;
|
H A D | conceal.cpp | 930 pIcsInfo->Valid = 0; /* Trigger the generation of a consitent IcsInfo */ 1259 pIcsInfo->Valid = 0; /* Trigger the generation of a consitent IcsInfo */
|
/external/harfbuzz_ng/win32/ |
H A D | create-lists.bat | 27 echo Specified command '%1' was invalid. Valid commands are: header file footer.
|
/external/llvm/lib/Target/AArch64/Utils/ |
H A D | AArch64BaseInfo.cpp | 22 const FeatureBitset& FeatureBits, bool &Valid) const { 25 Valid = true; 30 Valid = false; 35 const FeatureBitset& FeatureBits, bool &Valid) const { 39 Valid = true; 44 Valid = false; 838 const FeatureBitset& FeatureBits, bool &Valid) const { 844 Valid = true; 853 Valid = true; 863 Valid [all...] |
H A D | AArch64BaseInfo.h | 311 bool &Valid) const; 314 bool &Valid) const; 1248 bool &Valid) const; 1262 uint32_t ParseGenericRegister(StringRef Name, bool &Valid);
|
/external/skia/src/image/ |
H A D | SkSurface_Raster.cpp | 18 static bool Valid(const SkImageInfo&, size_t rb = kIgnoreRowBytesValue); 42 bool SkSurface_Raster::Valid(const SkImageInfo& info, size_t rowBytes) { function in class:SkSurface_Raster 178 if (!SkSurface_Raster::Valid(info, rb)) { 195 if (!SkSurface_Raster::Valid(info)) {
|
/external/webrtc/webrtc/system_wrappers/include/ |
H A D | ntp_time.h | 45 bool Valid() const { return !(seconds_ == 0 && fractions_ == 0); } function in class:webrtc::NtpTime
|
/external/guice/core/test/com/google/inject/ |
H A D | ImplicitBindingTest.java | 125 bind(Valid.class); 131 Binding v1 = injector.getBinding(Valid.class); 149 assertSame(v1, injector.getBinding(Valid.class)); 177 @Inject Valid a; 221 static class Valid { @Inject Valid2 a; } class in class:ImplicitBindingTest 344 // Valid JITable binding
|
/external/llvm/lib/CodeGen/ |
H A D | MachineRegisterInfo.cpp | 124 bool Valid = true; local 132 Valid = false; 141 Valid = false; 147 Valid = false; 153 Valid = false; 156 assert(Valid && "Invalid use list");
|
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonShuffler.h | 77 bool Valid; member in class:llvm::HexagonCVIResource 86 bool isValid() const { return (Valid); };
|
H A D | HexagonShuffler.cpp | 137 Valid = true; 144 Valid = false;
|
/external/llvm/lib/Target/AArch64/InstPrinter/ |
H A D | AArch64InstPrinter.cpp | 1138 bool Valid; local 1140 AArch64PRFM::PRFMMapper().toString(prfop, STI.getFeatureBits(), Valid); 1141 if (Valid) 1151 bool Valid; local 1153 AArch64PSBHint::PSBHintMapper().toString(psbhintop, STI.getFeatureBits(), Valid); 1154 if (Valid) 1351 bool Valid; local 1355 Valid); 1358 Valid); 1359 if (Valid) 1392 bool Valid; local [all...] |
/external/llvm/lib/Transforms/Scalar/ |
H A D | LoopRerollPass.cpp | 178 : Valid(false), Instructions(1, P) { 184 return Valid; 188 assert(Valid && "Using invalid reduction"); 193 assert(Valid && "Using invalid reduction"); 198 assert(Valid && "Using invalid reduction"); 206 assert(Valid && "Using invalid reduction"); 214 assert(Valid && "Using invalid reduction"); 219 assert(Valid && "Using invalid reduction"); 227 bool Valid; member in struct:__anon12939::LoopReroll::SimpleLoopReduction 499 assert(!Valid [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/ |
H A D | btGjkEpa2.cpp | 156 Valid, enumerator in enum:gjkepa2_impl::GJK::eStatus::_ 197 m_status = eStatus::Valid; 269 {/* Valid */ 294 } while(m_status==eStatus::Valid); 298 case eStatus::Valid: m_distance=m_ray.length();break; 534 Valid, enumerator in enum:gjkepa2_impl::EPA::eStatus::_ 607 m_status = eStatus::Valid; 634 m_status=eStatus::Valid; 876 if(gjk_status==GJK::eStatus::Valid) 961 if(gjk_status==GJK::eStatus::Valid) [all...] |
/external/llvm/lib/Support/ |
H A D | Triple.cpp | 716 bool Valid = false; local 722 Valid = Arch != UnknownArch; 726 Valid = Vendor != UnknownVendor; 732 Valid = OS != UnknownOS || IsCygwin || IsMinGW32; 736 Valid = Environment != UnknownEnvironment; 737 if (!Valid) { 739 Valid = ObjectFormat != UnknownObjectFormat; 743 if (!Valid)
|
/external/llvm/include/llvm/Support/ |
H A D | CommandLine.h | 398 bool Valid; member in class:llvm::cl::OptionValueCopy 406 OptionValueCopy() : Valid(false) {} 408 bool hasValue() const { return Valid; } 411 assert(Valid && "invalid option value"); 416 Valid = true; 420 bool compare(const DataType &V) const { return Valid && (Value != V); }
|
/external/llvm/lib/Transforms/IPO/ |
H A D | MergeFunctions.cpp | 1450 bool Valid = true; local 1470 Valid = false; 1507 Valid = false; 1513 dbgs() << "MERGEFUNC-SANITY: " << (Valid ? "Passed." : "Failed.") << "\n"; 1514 return Valid;
|
/external/llvm/lib/Target/AArch64/AsmParser/ |
H A D | AArch64AsmParser.cpp | 2090 bool Valid; local 2093 Mapper.toString(MCE->getValue(), getSTI().getFeatureBits(), Valid); 2104 bool Valid; local 2107 Mapper.fromString(Tok.getString(), getSTI().getFeatureBits(), Valid); 2108 if (!Valid) { 2130 bool Valid; local 2133 Mapper.fromString(Tok.getString(), getSTI().getFeatureBits(), Valid); 2134 if (!Valid) { 2765 bool Valid; local 2768 Mapper.toString(MCE->getValue(), getSTI().getFeatureBits(), Valid); 2779 bool Valid; local [all...] |
/external/ImageMagick/www/api/ |
H A D | cipher.php | 196 <p>SetAESKey() sets the key for the AES cipher. The key length is specified in bits. Valid values are 128, 192, or 256 requiring a key buffer length in bytes of 16, 24, and 32 respectively.</p>
|