HomeSort by relevance Sort by last modified time
    Searched refs:isNew (Results 1 - 25 of 65) sorted by null

1 2 3

  /frameworks/base/wifi/java/android/net/wifi/
NetworkUpdateResult.java 67 public void setIsNewNetwork(boolean isNew) {
68 isNewNetwork = isNew;
  /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");
259 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
260 (void)isNew; // Silence compiler warning.
261 assert(isNew && "Node emitted out of order - early");
560 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second
    [all...]
ScheduleDAGSDNodes.cpp 784 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second;
785 (void)isNew; // Silence compiler warning.
786 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())
KeyframeAnimation.cpp 153 if (isNew() && m_animation->playState() == AnimPlayStatePlaying)
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 58 bool isNew;
59 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew);
61 if (isNew)
284 bool isNew;
285 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew);
287 if (!isNew)
310 bool isNew;
312 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew);
314 if (!isNew)
447 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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 205 boolean isNew = replaceLength == 0 && nextNonspaceChar(viewer, offset) == '<';
211 isNew = true;
221 false /* isAttribute */, isNew, false /*isComplete*/,
252 boolean isNew = replaceLength == 0
256 wordPrefix, needTag, true /* isAttribute */, isNew, info.skipEndTag,
507 false /*isNew*/,
564 boolean isAttribute, boolean isNew, boolean skipEndTag, int replaceLength) {
645 } else if (!isAttribute && isNew) {
657 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/Dialer/src/com/android/dialer/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 */,
195 boolean isNew = false;
198 prefix, needTag, isAttribute, isNew,
235 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 678 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second;
679 if (!isNew)
691 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
692 if (!isNew)
696 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second;
697 if (!isNew)
726 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
727 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...]

Completed in 998 milliseconds

1 2 3