Searched defs:nullptr (Results 1 - 25 of 165) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DNullPtr.cpp32 const std::nullptr_t nullptr; variable
/external/libcxx/test/utilities/utility/pairs/pairs.pair/
H A DU_V.pass.cpp25 P p(std::unique_ptr<int>(new int(3)), nullptr); local
27 assert(p.second == nullptr);
/external/clang/test/SemaCXX/
H A Dnullptr_in_arithmetic_ops.cpp7 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; // expecte
34 a >>= nullptr; // expected-error{{invalid operands to binary expression}} local
35 a <<= nullptr; // expected-error{{invalid operands to binary expression}} local
[all...]
H A Dcxx11-ast-print.cpp3 // CHECK: auto operator "" _foo(const char *p, decltype(sizeof(int))) -> decltype(nullptr);
4 auto operator"" _foo(const char *p, decltype(sizeof(int))) -> decltype(nullptr); variable
/external/llvm/include/llvm/Analysis/
H A DLibCallAliasAnalysis.h30 explicit LibCallAliasAnalysis(LibCallInfo *LC = nullptr) argument
H A DValueTracking.h39 const DataLayout *TD = nullptr, unsigned Depth = 0);
48 const DataLayout *TD = nullptr, unsigned Depth = 0);
61 bool isKnownNonZero(Value *V, const DataLayout *TD = nullptr,
74 const DataLayout *TD = nullptr, unsigned Depth = 0);
85 unsigned ComputeNumSignBits(Value *Op, const DataLayout *TD = nullptr,
117 Instruction *InsertBefore = nullptr);
148 Value *GetUnderlyingObject(Value *V, const DataLayout *TD = nullptr,
151 GetUnderlyingObject(const Value *V, const DataLayout *TD = nullptr, argument
161 const DataLayout *TD = nullptr,
187 const DataLayout *TD = nullptr);
[all...]
/external/llvm/include/llvm/Support/
H A DErrorHandling.h47 void *user_data = nullptr);
57 void *user_data = nullptr) {
85 llvm_unreachable_internal(const char *msg=nullptr, const char *file=nullptr,
56 ScopedFatalErrorHandler(fatal_error_handler_t handler, void *user_data = nullptr) argument
H A DDynamicLibrary.h68 std::string *errMsg = nullptr);
76 std::string *ErrMsg = nullptr) {
75 LoadLibraryPermanently(const char *Filename, std::string *ErrMsg = nullptr) argument
H A DLEB128.h80 inline uint64_t decodeULEB128(const uint8_t *p, unsigned *n = nullptr) { argument
/external/llvm/lib/MC/
H A DMCInst.cpp37 print(dbgs(), nullptr); local
69 print(dbgs(), nullptr); local
H A DMCValue.cpp42 print(dbgs(), nullptr); local
/external/chromium_org/tools/gyp/test/mac/clang-cxx-language-standard/
H A Dc++98.cc17 nullptr, enumerator in enum:cxx11_keywords
/external/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h41 void FoldSingleEntryPHINodes(BasicBlock *BB, Pass *P = nullptr);
48 bool DeleteDeadPHIs(BasicBlock *BB, const TargetLibraryInfo *TLI = nullptr);
52 bool MergeBlockIntoPredecessor(BasicBlock *BB, Pass *P = nullptr);
91 Pass *P = nullptr,
97 Pass *P = nullptr) {
107 Pass *P = nullptr) {
121 Pass *P = nullptr,
159 const char *Suffix, Pass *P = nullptr);
207 MDNode *BranchWeights = nullptr);
226 MDNode *BranchWeights = nullptr);
96 SplitCriticalEdge(BasicBlock *BB, succ_iterator SI, Pass *P = nullptr) argument
106 SplitCriticalEdge(BasicBlock *Succ, pred_iterator PI, Pass *P = nullptr) argument
120 SplitCriticalEdge(BasicBlock *Src, BasicBlock *Dst, Pass *P = nullptr, bool MergeIdenticalEdges = false, bool DontDeleteUselessPHIs = false) argument
[all...]
H A DCloning.h98 const Twine &NameSuffix = "", Function *F = nullptr,
99 ClonedCodeInfo *CodeInfo = nullptr);
116 ClonedCodeInfo *CodeInfo = nullptr);
132 ClonedCodeInfo *CodeInfo = nullptr,
133 ValueMapTypeRemapper *TypeMapper = nullptr,
134 ValueMaterializer *Materializer = nullptr);
152 ClonedCodeInfo *CodeInfo = nullptr,
153 const DataLayout *DL = nullptr,
154 Instruction *TheCall = nullptr);
160 explicit InlineFunctionInfo(CallGraph *cg = nullptr, cons argument
[all...]
H A DValueMapper.h71 ValueMapTypeRemapper *TypeMapper = nullptr,
72 ValueMaterializer *Materializer = nullptr);
76 ValueMapTypeRemapper *TypeMapper = nullptr,
77 ValueMaterializer *Materializer = nullptr);
83 ValueMapTypeRemapper *TypeMapper = nullptr,
84 ValueMaterializer *Materializer = nullptr) {
90 ValueMapTypeRemapper *TypeMapper = nullptr,
91 ValueMaterializer *Materializer = nullptr) {
81 MapValue(const MDNode *V, ValueToValueMapTy &VM, RemapFlags Flags = RF_None, ValueMapTypeRemapper *TypeMapper = nullptr, ValueMaterializer *Materializer = nullptr) argument
88 MapValue(const Constant *V, ValueToValueMapTy &VM, RemapFlags Flags = RF_None, ValueMapTypeRemapper *TypeMapper = nullptr, ValueMaterializer *Materializer = nullptr) argument
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationValue.h45 explicit AnimationValue(double keyTime, PassRefPtr<TimingFunction> timingFunction = nullptr) argument
65 FloatAnimationValue(double keyTime, float value, PassRefPtr<TimingFunction> timingFunction = nullptr) argument
81 explicit TransformAnimationValue(double keyTime, const TransformOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = nullptr) argument
98 explicit FilterAnimationValue(double keyTime, const FilterOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = nullptr) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DReturnUndefChecker.cpp82 const Expr *TrackingE = nullptr) {
81 emitBug(CheckerContext &C, BuiltinBug &BT, const Expr *RetE, const Expr *TrackingE = nullptr) argument
/external/clang/test/Lexer/
H A Dcxx0x_keyword_as_cxx98.cpp9 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
H A Dkeywords_test.cpp17 CXX11_KEYWORD(nullptr); variable
/external/llvm/include/llvm/IR/
H A DLegacyPassNameParser.h65 return P->getPassArgument() == nullptr || *P->getPassArgument() == 0 ||
66 P->getNormalCtor() == nullptr || ignorablePassImpl(P);
76 llvm_unreachable(nullptr); variable
/external/llvm/include/llvm/MC/
H A DMCValue.h66 const MCSymbolRefExpr *SymB = nullptr,
80 R.SymA = nullptr;
81 R.SymB = nullptr;
65 get(const MCSymbolRefExpr *SymA, const MCSymbolRefExpr *SymB = nullptr, int64_t Val = 0, uint32_t RefKind = 0) argument
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DMutationEvent.h49 const AtomicString& type, bool canBubble, PassRefPtrWillBeRawPtr<Node> relatedNode = nullptr,
48 create( const AtomicString& type, bool canBubble, PassRefPtrWillBeRawPtr<Node> relatedNode = nullptr, const String& prevValue = String(), const String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0) argument
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBRequestTest.cpp85 request->onSuccess(nullptr, IDBKey::createInvalid(), IDBKey::createInvalid(), nullptr, adoptPtr(new Vector<WebBlobInfo>()));
87 request->onSuccess(PassRefPtr<SharedBuffer>(nullptr), adoptPtr(new Vector<WebBlobInfo>()));
88 request->onSuccess(PassRefPtr<SharedBuffer>(nullptr), adoptPtr(new Vector<WebBlobInfo>()), IDBKey::createInvalid(), IDBKeyPath());
91 request->onSuccess(IDBKey::createInvalid(), IDBKey::createInvalid(), nullptr, adoptPtr(new Vector<WebBlobInfo>())); local
/external/clang/include/clang/Edit/
H A DEditedSource.h48 const PPConditionalDirectiveRecord *PPRec = nullptr)
47 EditedSource(const SourceManager &SM, const LangOptions &LangOpts, const PPConditionalDirectiveRecord *PPRec = nullptr) argument
/external/clang/include/clang/Frontend/
H A DFrontendActions.h111 GenerateModuleAction(const FileEntry *ModuleMap = nullptr, argument
204 return nullptr;

Completed in 347 milliseconds

1234567