Searched defs:NewValue (Results 1 - 11 of 11) sorted by relevance

/external/llvm/include/llvm/Support/
H A DSaveAndRestore.h24 SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) { argument
25 X = NewValue;
/external/chromium_org/chrome/browser/ui/webui/quota_internals/
H A Dquota_internals_types.cc40 base::Value* GlobalStorageInfo::NewValue() const { function in class:quota_internals::GlobalStorageInfo
61 base::Value* PerHostStorageInfo::NewValue() const { function in class:quota_internals::PerHostStorageInfo
84 base::Value* PerOriginStorageInfo::NewValue() const { function in class:quota_internals::PerOriginStorageInfo
/external/chromium_org/v8/src/
H A Dinterface.h44 static Interface* NewValue() { function in class:v8::internal::Interface
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp218 void VariantValue::setUnsigned(unsigned NewValue) { argument
221 Value.Unsigned = NewValue;
233 void VariantValue::setString(const std::string &NewValue) { argument
236 Value.String = new std::string(NewValue);
248 void VariantValue::setMatcher(const VariantMatcher &NewValue) { argument
251 Value.Matcher = new VariantMatcher(NewValue);
/external/clang/lib/Analysis/
H A DBodyFarm.cpp302 const ParmVarDecl *NewValue = D->getParamDecl(1); local
303 QualType NewValueTy = NewValue->getType();
333 M.makeLvalueToRvalue(M.makeDeclRefExpr(NewValue), NewValueTy),
/external/clang/unittests/Tooling/
H A DRecursiveASTVisitorTest.cpp472 void setShouldVisitImplicitCode(bool NewValue) { argument
473 ShouldVisitImplicitCode = NewValue;
/external/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp213 Value *NewValue = C; local
225 NewValue = getOrInsertCVTA(M, F, I->second, Builder);
232 NewValue = remapConstantVectorOrConstantAggregate(M, F, C, Builder);
237 NewValue = remapConstantExpr(M, F, cast<ConstantExpr>(C), Builder);
240 ConstantToValueMap[C] = NewValue;
241 return NewValue;
267 Value *NewValue = UndefValue::get(C->getType()); local
271 NewValue = Builder.CreateInsertElement(NewValue, NewOperands[i], Idx);
275 NewValue
[all...]
/external/clang/include/clang/AST/
H A DExternalASTSource.h412 void set(T NewValue) { argument
414 LazyVal->LastValue = NewValue;
417 Value = NewValue;
421 void setNotUpdated(T NewValue) { Value = NewValue; } argument
/external/clang/include/clang/Basic/
H A DIdentifierTable.h332 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue) argument
335 II->setIsPoisoned(NewValue);
/external/clang/lib/Parse/
H A DRAIIObjectsForParser.h344 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) argument
345 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue),
346 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue),
347 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue),
348 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue),
349 Ident__exception_code(Self.Ident__exception_code, NewValue),
350 Ident__exception_info(Self.Ident__exception_info, NewValue),
351 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue),
352 Ident___exception_code(Self.Ident___exception_code, NewValue),
353 Ident___exception_info(Self.Ident___exception_info, NewValue) {
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp447 void SetKnownSafe(const bool NewValue) { argument
448 RRI.KnownSafe = NewValue;
455 void SetTailCallRelease(const bool NewValue) { argument
456 RRI.IsTailCallRelease = NewValue;
467 void SetReleaseMetadata(MDNode *NewValue) { argument
468 RRI.ReleaseMetadata = NewValue;
475 void SetCFGHazardAfflicted(const bool NewValue) { argument
476 RRI.CFGHazardAfflicted = NewValue;
1339 llvm::Value *NewValue = UndefValue::get(CI->getType()); local
1341 "\nOld = " << *CI << "\nNew = " << *NewValue << "\ local
1359 llvm::Value *NewValue = UndefValue::get(CI->getType()); local
1361 "\\nOld = " << *CI << "\\nNew = " << *NewValue << "\\n"); local
[all...]

Completed in 6410 milliseconds