OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isValid
(Results
1 - 25
of
748
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/libcore/luni/src/main/java/java/nio/channels/spi/
AbstractSelectionKey.java
30
boolean
isValid
= true;
46
public final boolean
isValid
() {
47
return
isValid
;
58
if (
isValid
) {
59
isValid
= false;
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/resources/
ResourceNameValidatorTest.java
32
assertTrue(validator.
isValid
("foo") == null);
33
assertTrue(validator.
isValid
("foo.xml") == null);
34
assertTrue(validator.
isValid
("Foo123_$") == null);
37
assertTrue(validator.
isValid
("") != null);
38
assertTrue(validator.
isValid
(" ") != null);
39
assertTrue(validator.
isValid
("foo.xm") != null);
40
assertTrue(validator.
isValid
("foo bar") != null);
41
assertTrue(validator.
isValid
("1foo") != null);
42
assertTrue(validator.
isValid
("foo%bar") != null);
44
ResourceType.STRING).
isValid
("foo") != null)
[
all
...]
/external/webkit/Source/WebCore/platform/efl/
KURLEfl.cpp
28
if (!
isValid
() || !protocolIs("file"))
/frameworks/base/core/java/android/view/
DisplayList.java
46
* causes calls to {@link #
isValid
()} to return <code>false</code>.
56
abstract boolean
isValid
();
/external/clang/lib/Basic/
SourceLocation.cpp
27
if (Loc.
isValid
()) {
39
if (!
isValid
()) {
73
assert(
isValid
());
79
assert(
isValid
());
84
assert(
isValid
());
89
assert(
isValid
());
94
assert(
isValid
());
99
assert(
isValid
());
104
assert(
isValid
());
109
assert(
isValid
());
[
all
...]
/external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.cpp
44
if (fragment.
isValid
())
55
if (scheme.
isValid
())
58
if (username.
isValid
()) {
64
if (password.
isValid
()) {
70
if (host.
isValid
()) {
76
if (port.
isValid
()) {
84
if (path.
isValid
()) {
90
if (query.
isValid
()) {
98
if (fragment.
isValid
()) {
/external/webkit/Source/WebCore/wml/
WMLVariables.cpp
83
bool containsVariableReference(const String& text, bool&
isValid
)
85
isValid
= true;
109
isValid
= false;
124
isValid
= false;
138
isValid
= isValidVariableName(variableName);
139
if (!
isValid
) {
145
isValid
= isValidVariableName(conversionString);
146
if (!
isValid
) {
152
isValid
= isValidVariableEscapingModeString(conversionString, escapeMode);
153
if (!
isValid
) {
[
all
...]
/external/skia/gpu/include/
GrResource.h
30
GrAssert(!
isValid
());
48
* contextLost called. It's up to the client to test
isValid
() before
55
bool
isValid
() const { return NULL != fGpu; }
/external/webkit/Source/WebKit/chromium/public/
WebPasswordFormData.h
41
// If the provided form is suitable for password completion,
isValid
() will
46
bool
isValid
() const { return action.
isValid
(); }
WebSearchableFormData.h
44
// If the provided form is suitable for automated searching,
isValid
()
48
bool
isValid
() { return m_url.
isValid
(); }
/frameworks/base/drm/java/android/drm/
DrmStore.java
114
/* package */ static boolean
isValid
(int playbackStatus) {
115
boolean
isValid
= false;
122
isValid
= true;
124
return
isValid
;
165
/* package */ static boolean
isValid
(int action) {
166
boolean
isValid
= false;
177
isValid
= true;
179
return
isValid
;
/external/webkit/Source/JavaScriptCore/qt/api/
qscriptstring_p.h
38
inline bool
isValid
() const;
66
if (
isValid
())
81
bool QScriptStringPrivate::
isValid
() const
88
return
isValid
() && other.
isValid
() && JSStringIsEqual(m_string, other.m_string);
93
return
isValid
() && other.
isValid
() && !JSStringIsEqual(m_string, other.m_string);
qscriptvalueiterator_p.h
53
inline bool
isValid
() const;
103
if (!
isValid
())
110
if (!
isValid
())
117
if (!
isValid
())
127
if (!
isValid
())
136
if (!
isValid
())
156
if (!
isValid
())
161
inline bool QScriptValueIteratorPrivate::
isValid
() const
168
Q_ASSERT(
isValid
());
/external/webkit/Source/WebCore/loader/
FrameNetworkingContext.h
44
virtual bool
isValid
() const { return m_frame; }
/external/webkit/Source/WebCore/rendering/svg/
SVGTextMetrics.h
44
:
isValid
(false)
50
return
isValid
== other.
isValid
55
bool
isValid
;
/external/webkit/Source/WebCore/svg/
SVGGElement.h
48
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGSwitchElement.h
43
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGCircleElement.h
44
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGClipPathElement.h
46
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGCursorElement.h
51
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGEllipseElement.h
44
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
SVGLineElement.h
44
virtual bool
isValid
() const { return SVGTests::
isValid
(); }
/external/webkit/Source/WebKit/chromium/src/
WebURL.cpp
41
, m_isValid(url.
isValid
())
49
m_isValid = url.
isValid
();
/external/webkit/Source/WebCore/html/canvas/
WebGLRenderbuffer.h
57
void setIsValid(bool
isValid
) { m_isValid =
isValid
; }
58
bool
isValid
() const { return m_isValid; }
/external/webkit/Source/WebCore/platform/win/
Win32Handle.h
44
if (!
isValid
())
50
bool
isValid
() const { return m_handle != INVALID_HANDLE_VALUE; }
Completed in 647 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>