OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isValid
(Results
26 - 50
of
766
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/webkit/Source/WebCore/svg/
SVGEllipseElement.h
44
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGLineElement.h
44
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGPolyElement.h
48
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGRectElement.h
44
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGDefsElement.h
43
virtual bool
isValid
() const;
SVGGlyphElement.h
54
:
isValid
(false)
75
return
isValid
== other.
isValid
86
bool
isValid
: 1;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ObjCMessage.h
48
bool
isValid
() const { return MsgOrPropE != 0; }
49
bool isInvalid() const { return !
isValid
(); }
52
return
isValid
() && isa<ObjCMessageExpr>(MsgOrPropE);
56
return
isValid
() &&
61
return
isValid
() &&
70
assert(
isValid
() && "This ObjCMessage is uninitialized!");
82
assert(
isValid
() && "This ObjCMessage is uninitialized!");
93
assert(
isValid
() && "This ObjCMessage is uninitialized!");
107
assert(
isValid
() && "This ObjCMessage is uninitialized!");
120
assert(
isValid
() && "This ObjCMessage is uninitialized!")
[
all
...]
/external/clang/include/clang/Driver/
OptSpecifier.h
29
bool
isValid
() const { return ID != 0; }
/external/icu4c/test/intltest/
tchcfmt.h
46
UBool
isValid
,
/external/webkit/Source/WebCore/platform/graphics/qt/
ColorQt.cpp
38
m_valid = c.
isValid
();
/external/webkit/Source/WebCore/platform/leveldb/
LevelDBIterator.h
46
bool
isValid
() const;
/external/webkit/Source/WebCore/platform/network/
MIMESniffing.h
33
bool
isValid
() const { return m_dataSize > 0; }
/external/webkit/Source/WebCore/platform/win/
PathWalker.cpp
41
if (!
isValid
())
PathWalker.h
41
bool
isValid
() const { return m_handle != INVALID_HANDLE_VALUE; }
/external/webkit/Source/WebCore/wml/
WMLVariables.h
38
bool containsVariableReference(const String&, bool&
isValid
);
WMLElement.cpp
101
bool
isValid
= false;
102
if (!containsVariableReference(value,
isValid
))
105
if (!
isValid
) {
115
bool
isValid
= false;
116
if (containsVariableReference(value,
isValid
)) {
/external/webkit/Source/WebKit/gtk/webkit/
webkitviewportattributesprivate.h
46
gboolean
isValid
;
/external/webkit/Source/WebKit/mac/Misc/
WebUserContentURLPattern.h
33
- (BOOL)
isValid
;
/external/webkit/Source/WebKit/win/Interfaces/
IWebUserContentURLPattern.idl
39
HRESULT
isValid
([out, retval] BOOL*
isValid
);
/frameworks/base/drm/java/android/drm/
DrmInfoRequest.java
139
boolean
isValid
() {
145
boolean
isValid
= false;
152
isValid
= true;
155
return
isValid
;
/packages/apps/Email/src/com/android/email/
EmailAddressValidator.java
28
public boolean
isValid
(CharSequence text) {
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/
Filter.java
30
* validate()/
isValid
() that are called from UI thread.
40
private boolean
isValid
;
78
isValid
= true;
85
public boolean
isValid
() {
86
return
isValid
;
/external/webkit/Source/WebKit/chromium/public/
WebURL.h
55
WebURL(const WebCString& spec, const url_parse::Parsed& parsed, bool
isValid
)
58
, m_isValid(
isValid
)
77
void assign(const WebCString& spec, const url_parse::Parsed& parsed, bool
isValid
)
81
m_isValid =
isValid
;
94
bool
isValid
() const
/external/webkit/Source/WebKit/win/
WebUserContentURLPattern.cpp
92
HRESULT WebUserContentURLPattern::
isValid
(BOOL*
isValid
)
94
if (!
isValid
)
96
*
isValid
= m_pattern.
isValid
();
/external/clang/include/clang/Index/
ASTLocation.h
96
bool
isValid
() const { return ParentDecl.getPointer() != 0; }
97
bool isInvalid() const { return !
isValid
(); }
100
assert(
isValid
());
123
Decl *dyn_AsDecl() const { return
isValid
() && getKind() == N_Decl ? D : 0; }
124
Stmt *dyn_AsStmt() const { return
isValid
() && getKind() == N_Stmt ? Stm : 0; }
132
bool isDecl() const { return
isValid
() && getKind() == N_Decl; }
133
bool isStmt() const { return
isValid
() && getKind() == N_Stmt; }
134
bool isNamedRef() const { return
isValid
() && getKind() == N_NamedRef; }
135
bool isType() const { return
isValid
() && getKind() == N_Type; }
Completed in 485 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>