OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nullptr
(Results
1 - 25
of
126
) sorted by null
1
2
3
4
5
6
/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/clang/test/SemaObjCXX/
nullptr.mm
7
(void)(a ==
nullptr
);
8
(void)(
nullptr
== a);
12
a =
nullptr
;
15
int PR10145a = (void(^)())0 ==
nullptr
;
16
int PR10145b =
nullptr
== (void(^)())0;
/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;
debug-info-nullptr.cpp
7
decltype(
nullptr
) t = 0;
reinterpret-cast.cpp
7
return reinterpret_cast<unsigned long>(
nullptr
);
/external/clang/test/SemaTemplate/
instantiate-expr-basic.cpp
12
nullptr
; // CXXNullPtrLiteralExpr
/external/webkit/Source/JavaScriptCore/wtf/
CMakeListsWinCE.txt
9
NullPtr
.cpp
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
;
wtf.pri
17
wtf/
NullPtr
.cpp \
PassOwnArrayPtr.h
30
#include "
NullPtr
.h"
46
#if !defined(LOOSE_PASS_OWN_PTR) || !HAVE(
NULLPTR
)
77
#if !defined(LOOSE_PASS_OWN_ARRAY_PTR) || !HAVE(
NULLPTR
)
/external/clang/test/Lexer/
cxx0x_keyword_as_cxx98.cpp
9
typedef nullptr_t
nullptr
; // expected-warning {{'
nullptr
' is a keyword in C++11}}
typedef in namespace:lib
34
int
nullptr
; // already diagnosed in this TU
variable
/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/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/WebKit2/UIProcess/
DrawingAreaProxyImpl.cpp
208
m_backingStore =
nullptr
;
318
m_backingStore =
nullptr
;
346
m_backingStore =
nullptr
;
/external/webkit/Source/WebKit2/PluginProcess/mac/
PluginControllerProxyMac.mm
59
m_remoteLayerClient =
nullptr
;
/frameworks/compile/linkloader/include/
ELFObject.h
109
// Delete will check the pointer is
nullptr
or not by himself.
/external/clang/lib/CodeGen/
CGObjCGNU.cpp
240
llvm::Constant *
NULLPtr
;
512
return
NULLPtr
;
[
all
...]
/external/chromium/chrome/browser/
browser_url_handler.cc
89
// It will work if we pass
nullptr
.
91
URLHandler null_handler =
nullptr
;
Completed in 682 milliseconds
1
2
3
4
5
6