Searched refs:NewValue (Results 1 - 18 of 18) 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_handler.cc42 scoped_ptr<base::Value> value(data.NewValue());
51 values.Append(itr->NewValue());
62 origins_value.Append(itr->NewValue());
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
H A Dquota_internals_types.h41 base::Value* NewValue() const;
66 base::Value* NewValue() const;
99 base::Value* NewValue() const;
/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/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/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/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/chromium_org/v8/src/
H A Dscopes.h28 Interface* interface = Interface::NewValue());
135 Interface* interface = Interface::NewValue());
147 Interface* interface = Interface::NewValue(),
H A Dvariables.h58 Interface* interface = Interface::NewValue());
H A Dinterface.h44 static Interface* NewValue() { function in class:v8::internal::Interface
H A Dparser.cc1904 VariableProxy* proxy = NewUnresolved(name, VAR, Interface::NewValue());
1945 VariableProxy* proxy = NewUnresolved(name, mode, Interface::NewValue());
1979 VariableProxy* proxy = NewUnresolved(name, mode, Interface::NewValue());
2201 is_const ? Interface::NewConst() : Interface::NewValue();
2988 NewUnresolved(names->at(i), LET, Interface::NewValue());
3024 NewUnresolved(names->at(i), LET, Interface::NewValue());
3127 is_const ? Interface::NewConst() : Interface::NewValue();
3193 scope_->NewUnresolved(factory(), name, Interface::NewValue());
H A Dast.h3377 Interface* interface = Interface::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/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...]
/external/clang/include/clang/Basic/
H A DIdentifierTable.h332 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue) argument
335 II->setIsPoisoned(NewValue);
/external/clang/unittests/Tooling/
H A DRecursiveASTVisitorTest.cpp472 void setShouldVisitImplicitCode(bool NewValue) { argument
473 ShouldVisitImplicitCode = NewValue;
/external/clang/lib/AST/
H A DExprConstant.cpp2067 APValue NewValue(APValue::UninitArray(), NewElts, Size);
2069 NewValue.getArrayInitializedElt(I).swap(Array.getArrayInitializedElt(I));
2071 NewValue.getArrayInitializedElt(I) = Array.getArrayFiller();
2072 if (NewValue.hasArrayFiller())
2073 NewValue.getArrayFiller() = Array.getArrayFiller();
2074 Array.swap(NewValue);

Completed in 571 milliseconds