Home
last modified time | relevance | path

Searched refs:isNew (Results 1 – 25 of 28) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp47 bool isNew; in processCallEnter() local
48 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew); in processCallEnter()
50 if (isNew) in processCallEnter()
98 bool isNew; in processCallExit() local
99 ExplodedNode *N = G.getNode(Loc, state, false, &isNew); in processCallExit()
101 if (!isNew) in processCallExit()
209 bool isNew; in InlineCall() local
210 if (ExplodedNode *N = G.getNode(Loc, state, false, &isNew)) { in InlineCall()
212 if (isNew) in InlineCall()
DCoreEngine.cpp543 bool isNew; in generateCallExitNode() local
544 ExplodedNode *Node = G->getNode(Loc, N->getState(), false, &isNew); in generateCallExitNode()
546 return isNew ? Node : 0; in generateCallExitNode()
/external/llvm/lib/CodeGen/SelectionDAG/
DInstrEmitter.cpp75 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; in EmitCopyFromReg() local
76 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
77 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
164 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitCopyFromReg() local
165 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
166 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
238 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in CreateVirtualRegisters() local
239 (void)isNew; // Silence compiler warning. in CreateVirtualRegisters()
240 assert(isNew && "Node emitted out of order - early"); in CreateVirtualRegisters()
535 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitSubregNode() local
[all …]
DScheduleDAGSDNodes.cpp747 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second; in EmitPhysRegCopy() local
748 (void)isNew; // Silence compiler warning. in EmitPhysRegCopy()
749 assert(isNew && "Node emitted out of order - early"); in EmitPhysRegCopy()
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
DparseDiffWithMockFiles.pl166 isNew => 1,
180 isNew => 1,
249 isNew => 1,
263 isNew => 1,
DparseGitDiffHeader.pl80 isNew => 1,
309 isNew => 1,
441 isNew => 1,
DparseSvnDiffHeader.pl86 isNew => 1,
DparseDiff.pl1012 isNew => 1,
/external/webkit/Tools/Scripts/
DVCSUtils.pm590 my $isNew;
607 $isNew = 1 if $1;
654 $header{isNew} = $isNew if $isNew;
703 my $isNew;
718 $isNew = 1 if !$sourceRevision; # if revision 0.
750 $header{isNew} = $isNew if $isNew;
925 …$indexPathEOL = firstEOLInFile($headerHashRef->{indexPath}) if !$headerHashRef->{isNew} && !$heade…
971 $diffHash{isNew} = $headerHashRef->{isNew} if $headerHashRef->{isNew};
Dsvn-apply248 my $isFileAddition = $diffHashRef->{isNew};
322 $addition = 1 if ($diffHashRef->{isNew} || $patch =~ /\n@@ -0,0 .* @@/);
Dsvn-unapply154 …$addition = 1 if ($diffHashRef->{isNew} || $diffHashRef->{copiedFromPath} || $patch =~ /\n@@ -0,0 …
/external/webkit/Source/WebCore/page/animation/
DAnimationBase.h118 bool running() const { return !isNew() && !postActive(); } in running()
120 bool isNew() const { return m_animState == AnimationStateNew; } in isNew() function
DImplicitAnimation.cpp74 if (isNew()) in animate()
DKeyframeAnimation.cpp153 if (isNew() && m_animation->playState() == AnimPlayStatePlaying) in animate()
DAnimationBase.cpp1269 if (pause == paused() && !isNew()) in updatePlayState()
1279 if (paused() || isNew() || m_animState == AnimationStateFillingForwards) in timeToNextService()
/external/chromium/chrome/browser/resources/ntp/
Dapps.js131 app.isNew = true;
134 app.isNew = true;
136 app.isNew = false;
688 if (app.isNew) {
/external/webkit/Source/WebCore/storage/
DAbstractDatabase.h59 bool isNew() const { return m_new; } in isNew() function
DDatabaseSync.cpp69 if (database->isNew() && creationCallback.get()) { in openDatabaseSync()
DDatabase.cpp116 if (database->isNew() && creationCallback.get()) { in openDatabase()
/external/proguard/src/proguard/optimize/peephole/
DBranchTargetFinder.java230 public boolean isNew(int offset) in isNew() method in BranchTargetFinder
439 … (isNew(index) ? " ["+initializationOffset(index)+"] " : " ---- ") + in visitCodeAttribute()
/external/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp751 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; in ScanUses() local
752 if (!isNew) in ScanUses()
764 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; in ScanUses() local
765 if (!isNew) in ScanUses()
769 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; in ScanUses() local
770 if (!isNew) in ScanUses()
801 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; in ProcessCopy() local
802 if (!isNew) in ProcessCopy()
DMachineLICM.cpp821 bool isNew = RegSeen.insert(Reg); in InitRegPressure() local
828 if (isNew && !isKill) in InitRegPressure()
831 else if (!isNew && isKill) in InitRegPressure()
853 bool isNew = RegSeen.insert(Reg); in UpdateRegPressure() local
856 else if (!isNew && isOperandKill(MO, MRI)) { in UpdateRegPressure()
/external/clang/lib/Parse/
DParseExprCXX.cpp1820 bool isNew = Tok.getKind() == tok::kw_new; in ParseUnqualifiedIdOperator() local
1835 Op = isNew? OO_Array_New : OO_Array_Delete; in ParseUnqualifiedIdOperator()
1837 Op = isNew? OO_New : OO_Delete; in ParseUnqualifiedIdOperator()
/external/sqlite/dist/
Dsqlite3.c100424 int isNew, /* 1 for new.* ref mask, 0 for old.* ref mask */
100433 assert( isNew==1 || isNew==0 );
100441 mask |= pPrg->aColmask[isNew];
/external/sqlite/dist/orig/
Dsqlite3.c100413 int isNew, /* 1 for new.* ref mask, 0 for old.* ref mask */
100422 assert( isNew==1 || isNew==0 );
100430 mask |= pPrg->aColmask[isNew];

12