OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nullptr
(Results
1 - 25
of
53
) sorted by null
1
2
3
/external/clang/test/SemaCXX/
nullptr_in_arithmetic_ops.cpp
7
a = 0 ?
nullptr
+ a : a +
nullptr
; // expected-error 2{{invalid operands to binary expression}}
8
a = 0 ?
nullptr
- a : a -
nullptr
; // expected-error 2{{invalid operands to binary expression}}
9
a = 0 ?
nullptr
/ a : a /
nullptr
; // expected-error 2{{invalid operands to binary expression}}
10
a = 0 ?
nullptr
* a : a *
nullptr
; // expected-error 2{{invalid operands to binary expression}}
11
a = 0 ?
nullptr
>> a : a >>
nullptr
; // expected-error 2{{invalid operands to binary expression}
34
a >>=
nullptr
; \/\/ expected-error{{invalid operands to binary expression}}
local
35
a <<=
nullptr
; \/\/ expected-error{{invalid operands to binary expression}}
local
[
all
...]
nullptr.cpp
4
typedef decltype(
nullptr
) nullptr_t;
16
null =
nullptr
;
17
void *p =
nullptr
;
19
int *pi =
nullptr
;
22
int A::*pm =
nullptr
;
24
void (*pf)() =
nullptr
;
26
void (A::*pmf)() =
nullptr
;
28
bool b =
nullptr
;
30
// Can't convert
nullptr
to integral implicitly.
31
uintptr_t i =
nullptr
; // expected-error {{cannot initialize}
[
all
...]
decltype-pr4448.cpp
8
Convoluted< int *, test_array,
nullptr
> tarray;
decltype.cpp
21
A(decltype(
nullptr
) param);
/external/webkit/Source/JavaScriptCore/wtf/
NullPtr.cpp
27
#include "
NullPtr
.h"
31
#if !HAVE(
NULLPTR
)
33
std::nullptr_t
nullptr
;
variable
NullPtr.h
31
// nullptr_t type and
nullptr
object. They are defined in the same namespaces they
48
extern std::nullptr_t
nullptr
;
DateMath.h
164
timeZone =
nullptr
;
210
timeZone =
nullptr
;
/external/clang/test/SemaTemplate/
instantiate-expr-basic.cpp
12
nullptr
; // CXXNullPtrLiteralExpr
/external/clang/test/Analysis/
nullptr.cpp
3
// test to see if
nullptr
is detected as a null pointer
5
char *np =
nullptr
;
9
// check if comparing
nullptr
to
nullptr
is detected properly
11
char *np1 =
nullptr
;
19
// invoving a
nullptr
in a more complex operation should be cause a warning
24
char *np =
nullptr
;
25
// casting a
nullptr
to anything should be caught eventually
32
//
nullptr
is implemented as a zero integer value, so should be able to compare
34
char *np =
nullptr
;
[
all
...]
/external/clang/test/CodeGenCXX/
nullptr.cpp
6
int* a =
nullptr
;
9
int* a =
nullptr
;
12
typedef decltype(
nullptr
) nullptr_t;
reinterpret-cast.cpp
7
return reinterpret_cast<unsigned long>(
nullptr
);
/external/clang/test/PCH/
cxx_exprs.cpp
35
cxx_null_ptr_result null_ptr =
nullptr
;
cxx_exprs.h
30
typedef __typeof__(
nullptr
) cxx_null_ptr_result;
/external/webkit/Source/WebKit2/PluginProcess/mac/
PluginControllerProxyMac.mm
59
m_remoteLayerClient =
nullptr
;
/external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnection.cpp
90
m_npRemoteObjectMap =
nullptr
;
95
m_connection =
nullptr
;
/external/webkit/Source/WebKit2/UIProcess/Plugins/mac/
PluginProcessProxyMac.mm
167
m_placeholderWindow =
nullptr
;
176
m_activationObserver =
nullptr
;
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/mac/
LayerTreeHostCAMac.mm
92
m_flushPendingLayerChangesRunLoopObserver =
nullptr
;
96
m_remoteLayerClient =
nullptr
;
/external/webkit/Source/WebKit2/UIProcess/API/mac/
FindIndicatorWindow.mm
187
m_fadeOutAnimation =
nullptr
;
192
m_bounceAnimation =
nullptr
;
200
m_findIndicatorWindow =
nullptr
;
/external/webkit/Source/WebCore/platform/network/mac/
CookieStorageMac.mm
103
privateBrowsingCookieStorage() =
nullptr
;
/external/webkit/Source/WebKit2/PluginProcess/
WebProcessConnection.cpp
90
m_npRemoteObjectMap =
nullptr
;
94
m_connection =
nullptr
;
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.cpp
110
m_rootLayer =
nullptr
;
250
m_pageOverlayLayer =
nullptr
;
/external/webkit/Source/WebCore/platform/network/cf/
CookieStorageCFNet.cpp
77
privateCookieStorage() =
nullptr
;
/external/webkit/Source/WebKit2/UIProcess/
DrawingAreaProxyImpl.cpp
208
m_backingStore =
nullptr
;
318
m_backingStore =
nullptr
;
346
m_backingStore =
nullptr
;
/external/chromium/chrome/browser/
browser_url_handler.cc
89
// It will work if we pass
nullptr
.
91
URLHandler null_handler =
nullptr
;
/external/webkit/Source/WebKit2/UIProcess/mac/
BackingStoreMac.mm
75
m_bitmapContext =
nullptr
;
Completed in 1096 milliseconds
1
2
3