Searched refs:isNew (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A DVCSUtils.pm644 # isNew: the value 1 if the diff is for a new file.
673 my $isNew;
690 $isNew = 1 if $1;
737 $header{isNew} = $isNew if $isNew;
763 # isNew: the value 1 if the diff is for a new file.
786 my $isNew;
801 $isNew = 1 if !$sourceRevision; # if revision 0.
848 $header{isNew}
[all...]
H A Dsvn-unapply155 $addition = 1 if ($diffHashRef->{isNew} || $diffHashRef->{copiedFromPath} || $patch =~ /\n@@ -0,0 .* @@/);
H A Dsvn-apply253 my $isFileAddition = $diffHashRef->{isNew};
328 $addition = 1 if ($diffHashRef->{isNew} || $patch =~ /\n@@ -0,0 .* @@/);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp94 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; local
95 (void)isNew; // Silence compiler warning.
96 assert(isNew && "Node emitted out of order - early");
183 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; local
184 (void)isNew; // Silence compiler warning.
185 assert(isNew && "Node emitted out of order - early");
271 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; local
272 (void)isNew; // Silence compiler warning.
273 assert(isNew && "Node emitted out of order - early");
570 bool isNew
[all...]
H A DScheduleDAGSDNodes.cpp783 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second;
784 (void)isNew; // Silence compiler warning.
785 assert(isNew && "Node emitted out of order - early");
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseDiffWithMockFiles.pl269 isNew => 1,
284 isNew => 1,
426 isNew => 1,
441 isNew => 1,
H A DparseGitDiffHeader.pl80 isNew => 1,
309 isNew => 1,
441 isNew => 1,
H A DparseSvnDiffHeader.pl87 isNew => 1,
112 isNew => 1,
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp61 bool isNew; local
62 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew);
64 if (isNew)
287 bool isNew; local
288 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew);
290 if (!isNew)
313 bool isNew; local
315 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew);
317 if (!isNew)
450 bool isNew; local
[all...]
H A DCoreEngine.cpp567 bool isNew; local
568 ExplodedNode *Node = G->getNode(Loc, N->getState(), false, &isNew);
570 return isNew ? Node : nullptr;
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabase.h86 bool isNew() const { return m_new; } function in class:blink::FINAL
H A DDatabaseManager.cpp206 if (database->isNew() && creationCallback) {
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2hints.h76 FT_Bool isNew; member in struct:CF2_HintMaskRec_
H A Dcf2intrp.c86 return hintmask->isNew;
94 hintmask->isNew = val;
123 hintmask->isNew = TRUE;
/external/freetype/src/cff/
H A Dcf2hints.h76 FT_Bool isNew; member in struct:CF2_HintMaskRec_
H A Dcf2intrp.c86 return hintmask->isNew;
94 hintmask->isNew = val;
123 hintmask->isNew = TRUE;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2hints.h76 FT_Bool isNew; member in struct:CF2_HintMaskRec_
H A Dcf2intrp.c86 return hintmask->isNew;
94 hintmask->isNew = val;
123 hintmask->isNew = TRUE;
/external/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp681 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; local
682 if (!isNew)
694 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; local
695 if (!isNew)
699 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; local
700 if (!isNew)
729 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; local
730 if (!isNew)
H A DMachineLICM.cpp825 bool isNew = RegSeen.insert(Reg); local
832 if (isNew && !isKill)
835 else if (!isNew && isKill)
857 bool isNew = RegSeen.insert(Reg); local
860 else if (!isNew && isOperandKill(MO, MRI)) {
/external/proguard/src/proguard/optimize/peephole/
H A DBranchTargetFinder.java236 public boolean isNew(int offset) method in class:BranchTargetFinder
447 (isNew(index) ? " ["+initializationOffset(index)+"] " : " ---- ") +
/external/chromium_org/third_party/sqlite/src/src/
H A Dtrigger.c1073 ** Parameter isNew must be either 1 or 0. If it is 0, then the mask returned
1086 int isNew, /* 1 for new.* ref mask, 0 for old.* ref mask */
1095 assert( isNew==1 || isNew==0 );
1103 mask |= pPrg->aColmask[isNew];
1082 sqlite3TriggerColmask( Parse *pParse, Trigger *pTrigger, ExprList *pChanges, int isNew, int tr_tm, Table *pTab, int orconf ) argument
H A Dtest_malloc.c749 int isNew; local
760 pEntry = Tcl_CreateHashEntry(&aMallocLog, (const char *)aKey, &isNew);
761 if( isNew ){
/external/clang/lib/Parse/
H A DParseExprCXX.cpp2094 bool isNew = Tok.getKind() == tok::kw_new; local
2109 Op = isNew? OO_Array_New : OO_Array_Delete;
2111 Op = isNew? OO_New : OO_Delete;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp589 bool isNew = isInitialFrontendLoad || !m_cssStyleSheetToInspectorStyleSheet.contains(cssStyleSheet); local
590 if (isNew) {

Completed in 465 milliseconds

12