/frameworks/base/wifi/java/android/net/wifi/ |
NetworkUpdateResult.java | 67 public void setIsNewNetwork(boolean isNew) { 68 isNewNetwork = isNew;
|
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineCallAndReturn.cpp | 54 bool isNew; 55 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew); 57 if (isNew) 182 bool isNew; 183 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew); 185 if (!isNew) 207 bool isNew; 209 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew); 211 if (!isNew) 471 bool isNew; [all...] |
CoreEngine.cpp | 478 bool IsNew; 479 ExplodedNode *Node = G->getNode(Loc, State, false, &IsNew); 484 assert (IsNew); 489 if (IsNew) WList->enqueue(Node); 528 bool IsNew; 529 ExplodedNode *Succ = G->getNode(Loc, N->getState(), false, &IsNew); 532 if (IsNew) 544 bool isNew; 545 ExplodedNode *Node = G->getNode(Loc, N->getState(), false, &isNew); 547 return isNew ? Node : 0 [all...] |
/external/webkit/Source/WebCore/storage/ |
AbstractDatabase.h | 59 bool isNew() const { return m_new; }
|
DatabaseSync.cpp | 69 if (database->isNew() && creationCallback.get()) {
|
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/ |
parseDiffWithMockFiles.pl | 166 isNew => 1, 180 isNew => 1, 249 isNew => 1, 263 isNew => 1,
|
parseGitDiffHeader.pl | 80 isNew => 1, 309 isNew => 1, 441 isNew => 1,
|
parseSvnDiffHeader.pl | 86 isNew => 1,
|
/external/webkit/Tools/Scripts/ |
VCSUtils.pm | 561 # isNew: the value 1 if the diff is for a new file. 590 my $isNew; 607 $isNew = 1 if $1; 654 $header{isNew} = $isNew if $isNew; 680 # isNew: the value 1 if the diff is for a new file. 703 my $isNew; 718 $isNew = 1 if !$sourceRevision; # if revision 0. 750 $header{isNew} = $isNew if $isNew [all...] |
svn-unapply | 154 $addition = 1 if ($diffHashRef->{isNew} || $diffHashRef->{copiedFromPath} || $patch =~ /\n@@ -0,0 .* @@/);
|
svn-apply | 248 my $isFileAddition = $diffHashRef->{isNew}; 322 $addition = 1 if ($diffHashRef->{isNew} || $patch =~ /\n@@ -0,0 .* @@/);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
InstrEmitter.cpp | 92 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; 93 (void)isNew; // Silence compiler warning. 94 assert(isNew && "Node emitted out of order - early"); 183 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; 184 (void)isNew; // Silence compiler warning. 185 assert(isNew && "Node emitted out of order - early"); 258 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; 259 (void)isNew; // Silence compiler warning. 260 assert(isNew && "Node emitted out of order - early"); 564 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second [all...] |
ScheduleDAGSDNodes.cpp | 783 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"); [all...] |
/external/webkit/Source/WebCore/page/animation/ |
AnimationBase.h | 118 bool running() const { return !isNew() && !postActive(); } 120 bool isNew() const { return m_animState == AnimationStateNew; }
|
ImplicitAnimation.cpp | 74 if (isNew())
|
/tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/ui/wizards/ |
AddTableFieldDialog.java | 166 Boolean isNew = (field != null) && (field.isPrimaryKey()); 167 if (isNew) 181 primaryKeyOptions.setEnabled(isNew);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidContentAssist.java | 199 boolean isNew = replaceLength == 0 && nextNonspaceChar(viewer, offset) == '<'; 205 isNew = true; 215 false /* isAttribute */, isNew, false /*isComplete*/, 244 boolean isNew = replaceLength == 0 248 wordPrefix, needTag, true /* isAttribute */, isNew, info.skipEndTag, 489 false /*isNew*/, 546 boolean isAttribute, boolean isNew, boolean skipEndTag, int replaceLength) { 621 } else if (!isAttribute && isNew) { 633 if (choice instanceof AttributeDescriptor && isNew) { [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
BranchTargetFinder.java | 230 public boolean isNew(int offset) 439 (isNew(index) ? " ["+initializationOffset(index)+"] " : " ---- ") +
|
/packages/apps/Contacts/src/com/android/contacts/calllog/ |
CallLogQueryHandler.java | 171 fetchCalls(QUERY_NEW_CALLS_TOKEN, requestId, true /*isNew*/, callType); 172 fetchCalls(QUERY_OLD_CALLS_TOKEN, requestId, false /*isNew*/, callType); 181 private void fetchCalls(int token, int requestId, boolean isNew, int callType) { 189 if (!isNew) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/ |
ValuesContentAssist.java | 130 needTag, true /* isAttribute */, false /* isNew */, 193 boolean isNew = false; 196 prefix, needTag, isAttribute, isNew, 233 prefix, (char) 0 /*needTag*/, true /* isAttribute */, false /*isNew*/,
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
EmailContent.java | [all...] |
/external/llvm/lib/CodeGen/ |
TwoAddressInstructionPass.cpp | 655 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; 656 if (!isNew) 668 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; 669 if (!isNew) 673 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; 674 if (!isNew) 705 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; 706 if (!isNew) [all...] |
MachineLICM.cpp | 821 bool isNew = RegSeen.insert(Reg); 828 if (isNew && !isKill) 831 else if (!isNew && isKill) 853 bool isNew = RegSeen.insert(Reg); 856 else if (!isNew && isOperandKill(MO, MRI)) { [all...] |
/external/chromium/chrome/browser/resources/ntp/ |
apps.js | 131 app.isNew = true; 134 app.isNew = true; 136 app.isNew = false; 688 if (app.isNew) {
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
MessagingNotification.java | [all...] |