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

1 2 3 4 5 6

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Offsettable.java 59 public Offsettable(RawDexObject item, boolean isNew) {
61 if (isNew) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
NetworkUpdateResult.java 67 public void setIsNewNetwork(boolean isNew) {
68 isNewNetwork = isNew;
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderInterface.h 34 virtual Decode_Status signalRenderDone(void * graphichandler, bool isNew = false) = 0;
VideoDecoderBase.h 75 virtual Decode_Status signalRenderDone(void * graphichandler, bool isNew = false);
VideoDecoderBase.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msrdc.h 152 STDMETHOD_(HRESULT,CreateTable)(THIS_ wchar_t *path,WINBOOL truncate,BYTE *securityDescriptor,DWORD recordSize,RdcCreatedTables *isNew) PURE;
153 STDMETHOD_(HRESULT,CreateTableIndirect)(THIS_ IRdcFileWriter *fileIdFile,WINBOOL truncate,DWORD recordSize,RdcCreatedTables *isNew) PURE;
166 #define ISimilarityFileIdTable_CreateTable(This,path,truncate,securityDescriptor,recordSize,isNew) (This)->lpVtbl->CreateTable(This,path,truncate,securityDescriptor,recordSize,isNew)
167 #define ISimilarityFileIdTable_CreateTableIndirect(This,fileIdFile,truncate,recordSize,isNew) (This)->lpVtbl->CreateTableIndirect(This,fileIdFile,truncate,recordSize,isNew)
324 STDMETHOD_(HRESULT,CreateTable)(THIS_ wchar_t *path,WINBOOL truncate,BYTE *securityDescriptor,DWORD recordSize,RdcCreatedTables *isNew) PURE;
325 STDMETHOD_(HRESULT,CreateTableIndirect)(THIS_ ISimilarityTraitsMapping *mapping,IRdcFileWriter *fileIdFile,WINBOOL truncate,DWORD recordSize,RdcCreatedTables *isNew) PURE;
338 #define ISimilarity_CreateTable(This,path,truncate,securityDescriptor,recordSize,isNew) (This)->lpVtbl->CreateTable(This,path,truncate,securityDescriptor,recordSize,isNew)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 94 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
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;
184 (void)isNew; // Silence compiler warning.
185 assert(isNew && "Node emitted out of order - early");
274 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
275 (void)isNew; // Silence compiler warning.
276 assert(isNew && "Node emitted out of order - early");
574 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second
    [all...]
ScheduleDAGSDNodes.cpp 785 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second;
786 (void)isNew; // Silence compiler warning.
787 assert(isNew && "Node emitted out of order - early");
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 61 bool isNew;
62 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew);
64 if (isNew)
287 bool isNew;
288 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew);
290 if (!isNew)
313 bool isNew;
315 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew);
317 if (!isNew)
450 bool isNew;
    [all...]
CoreEngine.cpp 513 bool IsNew;
514 ExplodedNode *Node = G.getNode(Loc, State, false, &IsNew);
519 assert (IsNew);
524 if (IsNew) WList->enqueue(Node);
568 bool IsNew;
569 ExplodedNode *Succ = G.getNode(Loc, N->getState(), false, &IsNew);
572 if (IsNew)
584 bool isNew;
585 ExplodedNode *Node = G.getNode(Loc, N->getState(), false, &isNew);
587 return isNew ? Node : nullptr
    [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/freetype/src/cff/
cf2hints.h 76 FT_Bool isNew;
cf2intrp.c 87 return hintmask->isNew;
95 hintmask->isNew = val;
124 hintmask->isNew = TRUE;
    [all...]
  /external/pdfium/third_party/freetype/src/cff/
cf2hints.h 76 FT_Bool isNew;
cf2intrp.c 86 return hintmask->isNew;
94 hintmask->isNew = val;
123 hintmask->isNew = TRUE;
    [all...]
  /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*/,
  /frameworks/base/media/java/android/media/
RemoteController.java 560 boolean isNew = false;
564 isNew = true;
571 if (isNew || clearing) {
    [all...]
  /external/llvm/lib/CodeGen/
TwoAddressInstructionPass.cpp 756 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second;
757 if (!isNew)
769 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
770 if (!isNew)
774 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second;
775 if (!isNew)
804 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
805 if (!isNew)
    [all...]
MachineLICM.cpp     [all...]
  /external/proguard/src/proguard/optimize/peephole/
BranchTargetFinder.java 241 public boolean isNew(int offset)
445 (isNew(index) ? " ["+initializationOffset(index)+"] " : " ---- ") +
  /external/jetty/src/java/org/eclipse/jetty/servlets/
QoSFilter.java 260 if (session!=null && !session.isNew())
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java     [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/session/
AbstractSession.java 395 public boolean isNew() throws IllegalStateException
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
javax.servlet_2.5.0.v200910301333.jar 

Completed in 2276 milliseconds

1 2 3 4 5 6