/external/llvm/lib/Transforms/ObjCARC/ |
D | PtrState.h | 120 void SetKnownSafe(const bool NewValue) { RRI.KnownSafe = NewValue; } in SetKnownSafe() argument 124 void SetTailCallRelease(const bool NewValue) { in SetTailCallRelease() argument 125 RRI.IsTailCallRelease = NewValue; in SetTailCallRelease() 134 void SetReleaseMetadata(MDNode *NewValue) { RRI.ReleaseMetadata = NewValue; } in SetReleaseMetadata() argument 138 void SetCFGHazardAfflicted(const bool NewValue) { in SetCFGHazardAfflicted() argument 139 RRI.CFGHazardAfflicted = NewValue; in SetCFGHazardAfflicted()
|
D | ObjCARCOpts.cpp | 723 llvm::Value *NewValue = UndefValue::get(CI->getType()); in OptimizeIndividualCalls() local 725 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n"); in OptimizeIndividualCalls() 726 CI->replaceAllUsesWith(NewValue); in OptimizeIndividualCalls() 743 llvm::Value *NewValue = UndefValue::get(CI->getType()); in OptimizeIndividualCalls() local 745 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n"); in OptimizeIndividualCalls() 747 CI->replaceAllUsesWith(NewValue); in OptimizeIndividualCalls()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXGenericToNVVM.cpp | 216 Value *NewValue = C; in remapConstant() local 228 NewValue = getOrInsertCVTA(M, F, I->second, Builder); in remapConstant() 234 NewValue = remapConstantVectorOrConstantAggregate(M, F, C, Builder); in remapConstant() 239 NewValue = remapConstantExpr(M, F, cast<ConstantExpr>(C), Builder); in remapConstant() 242 ConstantToValueMap[C] = NewValue; in remapConstant() 243 return NewValue; in remapConstant() 269 Value *NewValue = UndefValue::get(C->getType()); in remapConstantVectorOrConstantAggregate() local 273 NewValue = Builder.CreateInsertElement(NewValue, NewOperands[i], Idx); in remapConstantVectorOrConstantAggregate() 277 NewValue = in remapConstantVectorOrConstantAggregate() 278 Builder.CreateInsertValue(NewValue, NewOperands[i], makeArrayRef(i)); in remapConstantVectorOrConstantAggregate() [all …]
|
/external/clang/lib/Parse/ |
D | RAIIObjectsForParser.h | 350 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) in PoisonSEHIdentifiersRAIIObject() argument 351 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue), in PoisonSEHIdentifiersRAIIObject() 352 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue), in PoisonSEHIdentifiersRAIIObject() 353 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue), in PoisonSEHIdentifiersRAIIObject() 354 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject() 355 Ident__exception_code(Self.Ident__exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject() 356 Ident__exception_info(Self.Ident__exception_info, NewValue), in PoisonSEHIdentifiersRAIIObject() 357 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue), in PoisonSEHIdentifiersRAIIObject() 358 Ident___exception_code(Self.Ident___exception_code, NewValue), in PoisonSEHIdentifiersRAIIObject() 359 Ident___exception_info(Self.Ident___exception_info, NewValue) { in PoisonSEHIdentifiersRAIIObject()
|
/external/clang/test/Analysis/ |
D | objc-properties.m | 53 - (void) setY:(MyClass*) NewValue { 54 _Y = NewValue; // no-warning 57 - (void) setZ:(MyClass*) NewValue { 58 _Z = NewValue; // no-warning
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | VariantValue.cpp | 307 void VariantValue::setUnsigned(unsigned NewValue) { in setUnsigned() argument 310 Value.Unsigned = NewValue; in setUnsigned() 322 void VariantValue::setString(StringRef NewValue) { in setString() argument 325 Value.String = new std::string(NewValue); in setString() 337 void VariantValue::setMatcher(const VariantMatcher &NewValue) { in setMatcher() argument 340 Value.Matcher = new VariantMatcher(NewValue); in setMatcher()
|
/external/llvm/include/llvm/Support/ |
D | SaveAndRestore.h | 24 SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) { in SaveAndRestore() 25 X = NewValue; in SaveAndRestore()
|
D | Endian.h | 222 void operator=(value_type NewValue) { 223 endian::write<value_type, endian, alignment>(Ptr, NewValue);
|
/external/clang/include/clang/AST/ |
D | ExternalASTSource.h | 422 void set(T NewValue) { in set() 424 LazyVal->LastValue = NewValue; in set() 427 Value = NewValue; in set() 431 void setNotUpdated(T NewValue) { Value = NewValue; } in setNotUpdated()
|
/external/clang/unittests/Tooling/ |
D | RecursiveASTVisitorTestExprVisitor.cpp | 116 void setShouldVisitImplicitCode(bool NewValue) { in setShouldVisitImplicitCode() argument 117 ShouldVisitImplicitCode = NewValue; in setShouldVisitImplicitCode()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/ |
D | feedWatch.emf.properties | 61 # feedWatchAction.NewValue.0 - The changed value of the node you asked for, from the latest versi… 76 # If the node is found and the feed has been changed, the property feedWatchAction.NewValue.0 77 # (and/or feedWatchAction.NewValue.1, feedWatchAction.NewValue.2, etc.) will be set to the new chan…
|
D | feedWatch.uml2.properties | 58 # feedWatchAction.NewValue.0 - The changed value of the node you asked for, from the latest versi… 73 # If the node is found and the feed has been changed, the property feedWatchAction.NewValue.0 74 # (and/or feedWatchAction.NewValue.1, feedWatchAction.NewValue.2, etc.) will be set to the new chan…
|
/external/clang/lib/Analysis/ |
D | BodyFarm.cpp | 299 const ParmVarDecl *NewValue = D->getParamDecl(1); in create_OSAtomicCompareAndSwap() local 300 QualType NewValueTy = NewValue->getType(); in create_OSAtomicCompareAndSwap() 330 M.makeLvalueToRvalue(M.makeDeclRefExpr(NewValue), NewValueTy), in create_OSAtomicCompareAndSwap()
|
/external/spirv-llvm/lib/SPIRV/ |
D | OCL20ToSPIRV.cpp | 1205 Value * NewValue = new LoadInst(BV, "", CI); in transWorkItemBuiltinsToVariables() local 1206 DEBUG(dbgs() << "Transform: " << *CI << " => " << *NewValue << '\n'); in transWorkItemBuiltinsToVariables() 1208 NewValue = ExtractElementInst::Create(NewValue, in transWorkItemBuiltinsToVariables() 1211 DEBUG(dbgs() << *NewValue << '\n'); in transWorkItemBuiltinsToVariables() 1213 NewValue->takeName(CI); in transWorkItemBuiltinsToVariables() 1214 CI->replaceAllUsesWith(NewValue); in transWorkItemBuiltinsToVariables()
|
/external/clang/include/clang/Basic/ |
D | IdentifierTable.h | 375 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue) in PoisonIdentifierRAIIObject() argument 378 II->setIsPoisoned(NewValue); in PoisonIdentifierRAIIObject()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 2266 APValue NewValue(APValue::UninitArray(), NewElts, Size); in expandArray() local 2268 NewValue.getArrayInitializedElt(I).swap(Array.getArrayInitializedElt(I)); in expandArray() 2270 NewValue.getArrayInitializedElt(I) = Array.getArrayFiller(); in expandArray() 2271 if (NewValue.hasArrayFiller()) in expandArray() 2272 NewValue.getArrayFiller() = Array.getArrayFiller(); in expandArray() 2273 Array.swap(NewValue); in expandArray()
|
/external/llvm/lib/IR/ |
D | Core.cpp | 3079 void LLVMSetAtomicSingleThread(LLVMValueRef AtomicInst, LLVMBool NewValue) { in LLVMSetAtomicSingleThread() argument 3081 SynchronizationScope Sync = NewValue ? SingleThread : CrossThread; in LLVMSetAtomicSingleThread()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 6000 SDValue NewValue = DAG.getNode(ISD::CONCAT_VECTORS, DL, DstVT, Loads); in CombineExtLoad() local 6002 CombineTo(N, NewValue); in CombineExtLoad() 6007 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(), NewValue); in CombineExtLoad() 6009 ExtendSetCCUses(SetCCs, Trunc, NewValue, DL, in CombineExtLoad()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 9582 SDValue NewValue = DAG.getNode(CondOpcode, SDLoc(SubsNode), VTs, Ops); in performCONDCombine() local 9583 DAG.ReplaceAllUsesWith(SubsNode, NewValue.getNode()); in performCONDCombine()
|