Searched defs:isValid (Results 101 - 125 of 221) sorted by relevance

123456789

/external/llvm/include/llvm/IR/
H A DValueHandle.h70 if (isValid(VP.getPointer()))
75 if (isValid(VP.getPointer()))
79 if (isValid(VP.getPointer()))
85 if (isValid(VP.getPointer())) RemoveFromUseList();
87 if (isValid(VP.getPointer())) AddToUseList();
93 if (isValid(VP.getPointer())) RemoveFromUseList();
95 if (isValid(VP.getPointer())) AddToExistingUseList(RHS.getPrevPtr());
108 static bool isValid(Value *V) { function in class:llvm::ValueHandleBase
289 assert(ValueHandleBase::isValid(VP) && "Tracked Value was deleted!");
/external/llvm/include/llvm/Option/
H A DOption.h75 bool isValid() const { function in class:llvm::opt::Option
168 if (Alias.isValid()) return Alias.getUnaliasedOption();
/external/oauth/core/src/main/java/net/oauth/signature/
H A DOAuthSignatureMethod.java68 if (!isValid(signature, baseString)) {
117 protected abstract boolean isValid(String signature, String baseString) method in class:OAuthSignatureMethod
/external/skia/gm/
H A Dgm_expectations.cpp81 bool GmResultDigest::isValid() const { function in class:skiagm::GmResultDigest
/external/skia/include/core/
H A DSkStream.h260 bool isValid() const { return fFILE != NULL; } function in class:SkFILEStream
372 bool isValid() const { return fFILE != NULL; } function in class:SkFILEWStream
H A DSkReadBuffer.h201 virtual bool validate(bool isValid) { return true; } argument
202 virtual bool isValid() const { return true; } function in class:SkReadBuffer
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Connection1.java229 public boolean isValid(int timeout) throws SQLException { method in class:TestHelper_Connection1
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCheckedInt.h496 * that isValid() returns true, you then have a guarantee that no problem, such
510 if (checkedResult.isValid()) {
563 CheckedInt(U value, bool isValid) : mValue(value), mIsValid(isValid) argument
609 bool isValid() const function in class:WebCore::CheckedInt
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2hints.h75 FT_Bool isValid; member in struct:CF2_HintMaskRec_
137 FT_Bool isValid; member in struct:CF2_HintMapRec_
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtchcfmt.cpp551 UBool isValid,
557 if (!isValid) {
550 _testPattern(const char* pattern, UBool isValid, double v1, const char* str1, double v2, const char* str2, double v3, const char* str3) argument
/external/chromium_org/third_party/skia/include/core/
H A DSkReadBuffer.h201 virtual bool validate(bool isValid) { return true; } argument
202 virtual bool isValid() const { return true; } function in class:SkReadBuffer
/external/chromium_org/third_party/skia/src/core/
H A DSkValidatingReadBuffer.cpp23 bool SkValidatingReadBuffer::validate(bool isValid) { argument
24 if (!fError && !isValid) {
32 bool SkValidatingReadBuffer::isValid() const { function in class:SkValidatingReadBuffer
/external/clang/include/clang/Lex/
H A DMacroInfo.h413 bool isUndefined() const { return UndefLoc.isValid(); }
417 bool isValid() const { return DefDirective != nullptr; } function in class:clang::MacroInfo
418 bool isInvalid() const { return !isValid(); }
420 LLVM_EXPLICIT operator bool() const { return isValid(); }
497 assert(UndefLoc.isValid() && "Invalid UndefLoc!");
/external/deqp/framework/opengl/
H A DgluShaderProgram.cpp269 bool ProgramPipeline::isValid (void) function in class:glu::ProgramPipeline
H A DgluVarTypeUtil.hpp130 SubTypeAccess& member (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::STRUCT_MEMBER, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access struct element.
131 SubTypeAccess& element (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::ARRAY_ELEMENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access array element.
132 SubTypeAccess& column (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::MATRIX_COLUMN, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access column.
133 SubTypeAccess& component (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::VECTOR_COMPONENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access component.
142 bool isValid (void) const { return isValidTypePath(m_type, m_path); } function in class:glu::SubTypeAccess
/external/freetype/src/cff/
H A Dcf2hints.h75 FT_Bool isValid; member in struct:CF2_HintMaskRec_
137 FT_Bool isValid; member in struct:CF2_HintMapRec_
/external/icu/icu4c/source/test/intltest/
H A Dtchcfmt.cpp565 UBool isValid,
571 if (!isValid) {
564 _testPattern(const char* pattern, UBool isValid, double v1, const char* str1, double v2, const char* str2, double v3, const char* str3) argument
/external/llvm/include/llvm/ADT/
H A DSparseMultiSet.h110 bool isValid() const { return Prev != INVALID; } function in struct:llvm::SparseMultiSet::SMSNode
143 assert(D.isValid() && "Invalid node for head");
150 assert(N.isValid() && "Invalid node for singleton");
357 if (Idx == FoundIdx && Dense[i].isValid() && isHead(Dense[i]))
/external/llvm/include/llvm/MC/
H A DMCInst.h55 bool isValid() const { return Kind != kInvalid; } function in class:llvm::MCOperand
H A DMCSchedule.h118 bool isValid() const { function in struct:llvm::MCSchedClassDesc
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLine.h155 bool isValid() const { function in struct:llvm::DWARFDebugLine::Sequence
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp494 bool isValid = true; // Valid only for And, Or, Xor local
498 default: isValid = false; break; // Do not perform transform!
500 isValid = isLeftShift;
517 if (isValid && I.getOpcode() == Instruction::AShr)
518 isValid = Op0C->getValue()[TypeBits-1] == highBitSet;
520 if (isValid) {
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp96 if (!HandleType::isValid(Handle))
103 return HandleType::isValid(Handle);
123 static bool isValid(handle_type Handle) { function in struct:__anon25722::CommonHandle
139 static bool isValid(handle_type Handle) { function in struct:__anon25722::FileMappingHandle
155 static bool isValid(handle_type Handle) { function in struct:__anon25722::MappedViewOfFileHandle
/external/llvm/utils/TableGen/
H A DCodeGenSchedule.h82 bool isValid() const { function in struct:llvm::CodeGenSchedRW
311 assert(SchedWrites[Idx].isValid() && "invalid SchedWrite");
317 assert(SchedReads[Idx].isValid() && "invalid SchedRead");
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2hints.h75 FT_Bool isValid; member in struct:CF2_HintMaskRec_
137 FT_Bool isValid; member in struct:CF2_HintMapRec_

Completed in 4050 milliseconds

123456789