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

1 2 3 4

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ScheduleDAGEmit.cpp 60 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second;
61 (void)isNew; // Silence compiler warning.
62 assert(isNew && "Node emitted out of order - early");
MachineLICM.cpp 710 bool isNew = RegSeen.insert(Reg);
717 if (isNew && !isKill)
720 else if (!isNew && isKill)
742 bool isNew = RegSeen.insert(Reg);
745 else if (!isNew && isOperandKill(MO, MRI)) {
    [all...]
RegAllocLinearScan.cpp     [all...]
TwoAddressInstructionPass.cpp 706 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second;
707 if (!isNew)
719 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
720 if (!isNew)
724 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second;
725 if (!isNew)
756 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
757 if (!isNew)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 95 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
96 (void)isNew; // Silence compiler warning.
97 assert(isNew && "Node emitted out of order - early");
184 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
185 (void)isNew; // Silence compiler warning.
186 assert(isNew && "Node emitted out of order - early");
275 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
276 (void)isNew; // Silence compiler warning.
277 assert(isNew && "Node emitted out of order - early");
578 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 75 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second;
76 (void)isNew; // Silence compiler warning.
77 assert(isNew && "Node emitted out of order - early");
164 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
165 (void)isNew; // Silence compiler warning.
166 assert(isNew && "Node emitted out of order - early");
238 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
239 (void)isNew; // Silence compiler warning.
240 assert(isNew && "Node emitted out of order - early");
533 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 197 bool IsNew;
198 ExplodedNode *Node = G.getNode(StartLoc, InitState, false, &IsNew);
199 assert (IsNew);
530 bool IsNew;
531 ExplodedNode *Node = G.getNode(Loc, State, false, &IsNew);
536 assert (IsNew);
541 if (IsNew) WList->enqueue(Node);
585 bool IsNew;
586 ExplodedNode *Succ = G.getNode(Loc, N->getState(), false, &IsNew);
589 if (IsNew)
    [all...]
ExprEngineCallAndReturn.cpp 61 bool isNew;
62 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew);
64 if (isNew) {
290 bool isNew;
291 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew);
293 if (!isNew)
316 bool isNew;
318 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew);
320 if (!isNew)
438 bool isNew;
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllog/model/
CoalescedRow.java 60 public abstract boolean isNew();
101 public abstract Builder setIsNew(boolean isNew);
  /prebuilts/go/darwin-x86/misc/cgo/testshared/
shared_test.go 747 // isNew returns if the path is newer than the time stamp used by touch.
748 func isNew(t *testing.T, path string) bool {
757 // isNew)
760 if !isNew(t, path) {
765 // Fail if path has been rebuilt (i.e. is newer than the time stamp used by isNew)
768 if isNew(t, path) {
  /prebuilts/go/linux-x86/misc/cgo/testshared/
shared_test.go 747 // isNew returns if the path is newer than the time stamp used by touch.
748 func isNew(t *testing.T, path string) bool {
757 // isNew)
760 if !isNew(t, path) {
765 // Fail if path has been rebuilt (i.e. is newer than the time stamp used by isNew)
768 if isNew(t, path) {
  /external/freetype/src/psaux/
pshints.h 75 FT_Bool isNew;
  /external/proguard/src/proguard/optimize/peephole/
BranchTargetFinder.java 241 public boolean isNew(int offset)
445 (isNew(index) ? " ["+initializationOffset(index)+"] " : " ---- ") +
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/
SystemCallLogDataSource.java 306 int isNew = cursor.getInt(newColumn);
336 contentValues.put(AnnotatedCallLog.NEW, isNew);
  /external/llvm/lib/CodeGen/
MachineLICM.cpp 809 bool isNew = ConsiderSeen ? RegSeen.insert(Reg).second : false;
818 if (isNew && !isKill && ConsiderUnseenAsDef)
821 else if (!isNew && isKill)
    [all...]
TwoAddressInstructionPass.cpp 753 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second;
754 if (!isNew)
766 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
767 if (!isNew)
771 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second;
772 if (!isNew)
801 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
802 if (!isNew)
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
Call.java     [all...]
  /external/guice/extensions/persist/lib/
servlet-api-2.5.jar 
  /external/guice/extensions/servlet/lib/build/
servlet-api-2.5.jar 
  /external/guice/extensions/struts2/lib/
servlet-api-2.5.jar 
jetty-util-6.1.0.jar 
jetty-6.1.0.jar 
  /prebuilts/tools/common/m2/repository/javax/servlet/servlet-api/2.3/
servlet-api-2.3.jar 
  /prebuilts/sdk/current/extras/constraint-layout-x/solver/
constraintlayout-solver-1.1.0.jar 

Completed in 855 milliseconds

1 2 3 4