OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nullptr
(Results
151 - 175
of
337
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/
ImageDecoder.cpp
92
return
nullptr
;
112
return
nullptr
;
/art/runtime/gc/space/
image_space.cc
158
CHECK(obj->GetClass() !=
nullptr
) << "Image object at address " << obj << " has null class";
199
UniquePtr<MemMap> image_map(MemMap::MapFileAtAddress(
nullptr
, image_header.GetImageBitmapSize(),
203
CHECK(image_map.get() !=
nullptr
) << "failed to map image bitmap";
211
CHECK(bitmap.get() !=
nullptr
) << "could not create " << bitmap_name;
/external/bison/examples/calc++/
position.hh
47
# define YY_NULL
nullptr
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
AnimationTranslationUtil.cpp
64
return
nullptr
;
239
return
nullptr
;
266
return
nullptr
;
295
return
nullptr
;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowData.cpp
37
, m_next(o.m_next ? adoptPtr(new ShadowData(*o.m_next)) :
nullptr
)
ShadowData.h
97
// Helper method to handle
nullptr
, otherwise all callers need an ugly ternary.
100
return shadow ? shadow->clone() :
nullptr
;
StyleRareNonInheritedData.cpp
100
, m_content(o.m_content ? o.m_content->clone() :
nullptr
)
101
, m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) :
nullptr
)
104
, m_animations(o.m_animations ? adoptPtr(new CSSAnimationDataList(*o.m_animations)) :
nullptr
)
105
, m_transitions(o.m_transitions ? adoptPtr(new CSSAnimationDataList(*o.m_transitions)) :
nullptr
)
/external/chromium_org/third_party/WebKit/Source/core/workers/
Worker.cpp
136
m_scriptLoader =
nullptr
;
/external/chromium_org/third_party/WebKit/Source/web/
WebBlobData.cpp
51
assign(
nullptr
);
/external/clang/test/CXX/expr/expr.const/
p3-0x.cpp
87
False =
nullptr
// expected-error {{conversion from 'nullptr_t' to 'bool' is not allowed in a converted constant expression}}
/external/clang/test/Sema/
warn-type-safety.cpp
56
c->MPI_Send(
nullptr
, 0, MPI_INT); // no-warning
/external/clang/test/SemaCXX/
conversion.cpp
136
decltype(
nullptr
) func() {
cxx1y-deduced-return-type.cpp
28
operator auto() { int *p =
nullptr
; return p; } // expected-note {{candidate}}
29
operator auto*() { int *p =
nullptr
; return p; } // expected-note {{candidate}}
204
int (T::*result)(U) =
nullptr
;
/external/chromium_org/third_party/WebKit/Source/core/html/
FormAssociatedElement.cpp
73
m_formAttributeTargetObserver =
nullptr
;
94
m_formAttributeTargetObserver =
nullptr
;
179
m_formAttributeTargetObserver =
nullptr
;
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
MediaSourceBase.cpp
275
return
nullptr
;
281
return
nullptr
;
285
return
nullptr
;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerBacking.cpp
229
m_ancestorClippingLayer =
nullptr
;
230
m_graphicsLayer =
nullptr
;
231
m_foregroundLayer =
nullptr
;
232
m_backgroundLayer =
nullptr
;
233
m_childContainmentLayer =
nullptr
;
234
m_maskLayer =
nullptr
;
236
m_scrollingLayer =
nullptr
;
237
m_scrollingContentsLayer =
nullptr
;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/
HRTFElevation.cpp
242
return
nullptr
;
256
return
nullptr
;
282
return
nullptr
;
/external/chromium/chrome/browser/
browser_url_handler.cc
89
// It will work if we pass
nullptr
.
91
URLHandler null_handler =
nullptr
;
/external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.cpp
77
return
nullptr
;
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
ImageBuffer.h
93
return
nullptr
;
/external/chromium_org/third_party/WebKit/Source/core/platform/mock/
GeolocationClientMock.cpp
73
m_lastPosition =
nullptr
;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
exception.cpp
193
if (__ptr_ ==
nullptr
)
memory.cpp
207
void* r =
nullptr
;
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
shared_ptr.h
264
* @post use_count() == 0 && get() ==
nullptr
334
{ return __a.get() ==
nullptr
; }
339
{ return
nullptr
== __b.get(); }
349
{ return __a.get() !=
nullptr
; }
354
{ return
nullptr
!= __b.get(); }
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
shared_ptr.h
264
* @post use_count() == 0 && get() ==
nullptr
334
{ return __a.get() ==
nullptr
; }
339
{ return
nullptr
== __b.get(); }
349
{ return __a.get() !=
nullptr
; }
354
{ return
nullptr
!= __b.get(); }
Completed in 674 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>