OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isnull
(Results
126 - 150
of
1269
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/WebKit/public/web/
WebBlob.h
68
bool
isNull
() const { return m_private.
isNull
(); }
WebDOMFileSystem.h
69
bool
isNull
() const { return m_private.
isNull
(); }
WebDOMMediaStreamTrack.h
61
bool
isNull
() const { return m_private.
isNull
(); }
WebSerializedScriptValue.h
70
bool
isNull
() const { return m_private.
isNull
(); }
WebUserGestureToken.h
59
bool
isNull
() const { return m_token.
isNull
(); }
WebUserMediaRequest.h
63
bool
isNull
() const { return m_private.
isNull
(); }
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ReorderingCursorWrapper.java
102
public boolean
isNull
(int column) {
103
return mCursor.
isNull
(column);
/external/guava/guava-tests/test/com/google/common/base/
PredicatesTest.java
159
.addEqualityGroup(Predicates.
isNull
(), Predicates.
isNull
())
161
.addEqualityGroup(Predicates.not(Predicates.
isNull
()))
166
.addEqualityGroup(Predicates.
isNull
())
529
Predicate<Integer>
isNull
= Predicates.equalTo(null);
530
assertTrue(
isNull
.apply(null));
531
assertFalse(
isNull
.apply(1));
654
* Tests for Predicates.
isNull
()
658
Predicate<Integer>
isNull
= Predicates.
isNull
();
[
all
...]
/external/icu4c/test/intltest/
itutil.cpp
253
//
isNULL
(), isValid(), operator==(), operator!=()
254
if(s.
isNull
() || !s.isValid() || s==NULL || !(s!=NULL)) {
318
if(sel.
isNull
()) {
328
if(cal.
isNull
()) {
337
if(patgen.
isNull
()) {
346
if(ldn.
isNull
()) {
357
if(msg.
isNull
()) {
370
if(fn2.
isNull
()) {
381
if(idna.
isNull
()) {
394
if(regex.
isNull
()) {
[
all
...]
/external/llvm/include/llvm/ADT/
PointerUnion.h
106
///
isNull
- Return true if the pointer held in the union is null,
108
bool
isNull
() const {
113
LLVM_EXPLICIT operator bool() const { return !
isNull
(); }
257
///
isNull
- Return true if the pointer held in the union is null,
259
bool
isNull
() const { return Val.
isNull
(); }
260
LLVM_EXPLICIT operator bool() const { return !
isNull
(); }
365
///
isNull
- Return true if the pointer held in the union is null,
367
bool
isNull
() const { return Val.
isNull
(); }
[
all
...]
/external/chromium/webkit/glue/
alt_error_page_resource_fetcher.cc
45
if (!response.
isNull
() && response.httpStatusCode() == 200) {
context_menu.cc
53
if (!data.frameHistoryItem.
isNull
()) {
/external/chromium_org/cc/layers/
picture_image_layer.cc
28
return !bitmap_.
isNull
() && PictureLayer::DrawsContent();
/external/chromium_org/chrome/browser/extensions/
extension_action_icon_factory.cc
61
if (!icon.
isNull
())
/external/chromium_org/chrome/browser/
icon_loader_mac.mm
48
if (!image_skia.
isNull
()) {
/external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_favicon_loader.h
47
// available will return an
isNull
bitmap.
/external/chromium_org/content/common/indexed_db/
indexed_db_key_path.h
24
bool
IsNull
() const { return type_ == blink::WebIDBKeyPathTypeNull; }
/external/chromium_org/content/renderer/fetchers/
alt_error_page_resource_fetcher.cc
48
if (!response.
isNull
() && response.httpStatusCode() == 200) {
/external/chromium_org/content/renderer/media/
mock_web_rtc_peer_connection_handler_client.cc
34
if (!candidate.
isNull
()) {
/external/chromium_org/content/test/
mock_webclipboard_impl.cc
36
return !m_plainText.
isNull
();
39
return !m_htmlText.
isNull
();
75
if (!m_image.
isNull
()) {
166
if (!image.
isNull
()) {
test_media_stream_client.cc
26
if (descriptor.
isNull
())
/external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentTimeline.cpp
116
ASSERT(
isNull
(m_zeroTime));
118
ASSERT(!
isNull
(m_zeroTime));
172
if (
isNull
(m_zeroTime))
176
if (
isNull
(m_zeroTime))
Player.cpp
42
double effectiveTime(double time) { return
isNull
(time) ? 0 : time; }
72
ASSERT(!
isNull
(startTime));
80
if (
isNull
(m_startTime))
135
double inheritedTime =
isNull
(m_timeline.currentTime()) ? nullValue() : currentTime();
TimedItem.cpp
55
bool needsUpdate = m_needsUpdate || (m_lastUpdateTime != inheritedTime && !(
isNull
(m_lastUpdateTime) &&
isNull
(inheritedTime)));
96
if (!
isNull
(iterationTime)) {
124
m_calculated.isInEffect = !
isNull
(activeTime);
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketExtensionDispatcherTest.cpp
109
EXPECT_TRUE(parameter->value.
isNull
());
136
if (iterator->value.
isNull
())
137
EXPECT_TRUE(parsed->value.
isNull
());
180
EXPECT_TRUE(m_extensions.acceptedExtensions().
isNull
());
Completed in 2553 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>