/external/llvm/lib/CodeGen/ |
CalcSpillWeights.cpp | 139 SmallPtrSet<MachineInstr*, 8> visited; local 158 if (!visited.insert(mi).second)
|
ScheduleDAGInstrs.cpp | 97 SmallPtrSet<const Value *, 16> Visited; 108 if (!Visited.insert(V).second) 360 // Defs are pushed in the order they are visited and never reordered. 642 SmallPtrSetImpl<const SUnit *> &Visited) { 646 // Remember visited nodes. 647 if (!Visited.insert(SUb).second) 677 iterateChainSucc(AA, MFI, DL, SUa, I->getSUnit(), ExitSU, Depth, Visited); 692 SmallPtrSet<const SUnit*, 16> Visited; 706 // successors. Keep track of visited nodes. 711 Visited); [all...] |
/external/llvm/lib/Target/X86/ |
X86PadShortFunction.cpp | 79 // VisitedBBs - Cache of previously visited BBs. 171 // Return cached result if BB was previously visited
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
ClassVisitor.java | 114 * necessarily a member of the class being visited.
193 * the class have been visited.
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/ |
AbstractVisitor.java | 98 * visited in sequential order, one method after the other, but can be
101 * not possible to print the visited instructions directly to a sequential
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
HeaderFactoryExt.java | 160 * P-Visited-Network-ID header 161 * @return newly created P-Visited-Network-ID header
|
/external/proguard/src/proguard/classfile/editor/ |
MemberAdder.java | 61 * @param targetClass the class to which all visited class members will be 73 * @param targetClass the class to which all visited class members
|
/external/regex-re2/re2/ |
walker-inl.h | 72 // at most max_visits nodes will be visited and then 76 // visited rather than calling PreVisit/PostVisit.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
cfg-flags.def | 89 /* A general visited flag for passes to use. */ 90 DEF_BASIC_BLOCK_FLAG(VISITED, 13)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
LayoutEditorDelegate.java | [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaMethod.java | 755 BitSet visited = new BitSet(blocks.size()); local 774 if (!visited.get(cur.getIndex())) { 782 visited.set(cur.getIndex()); 796 BitSet visited = new BitSet(getBlocks().size()); local 805 if (!visited.get(cur.getIndex())) { 811 visited.set(cur.getIndex());
|
/external/clang/lib/Analysis/ |
ReachableCode.cpp | 345 llvm::BitVector Visited; 357 : Visited(reachable.size()), 377 if (Reachable[blockID] || Visited[blockID]) 379 Visited[blockID] = true; 390 if (Visited[blockID]) { 396 Visited[blockID] = true;
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaMethod.java | 756 BitSet visited = new BitSet(blocks.size()); local 775 if (!visited.get(cur.getIndex())) { 783 visited.set(cur.getIndex()); 797 BitSet visited = new BitSet(getBlocks().size()); local 806 if (!visited.get(cur.getIndex())) { 812 visited.set(cur.getIndex());
|
/external/javassist/src/main/javassist/bytecode/ |
StackMapTable.java | 184 * Invoked when the next entry of the stack map frames is visited. 223 * Invoked if the visited frame is a <code>same_frame</code> or 254 * Invoked if the visited frame is a <code>same_locals_1_stack_item_frame</code> 269 * Invoked if the visited frame is a <code>chop_frame</code>. 301 * Invoked if the visited frame is a <code>append_frame</code>. 327 * Invoked if the visited frame is <code>full_frame</code>.
|
/external/llvm/lib/Transforms/ObjCARC/ |
ObjCARCOpts.cpp | 88 SmallPtrSet<const Value *, 4> Visited; 98 if (!Visited.insert(P).second) 870 SmallPtrSet<const BasicBlock *, 4> Visited; [all...] |
/external/zlib/src/examples/ |
enough.c | 10 Prune examine() search on previously visited states 67 are remembered and previously visited branches are pruned. The memory 77 codes of root bits or less in length.) Third, the visited states in the 150 /* The array for tracking visited states, done[], is itself indexed identically 155 element is simply one bit indicating whether the state has been visited or 157 vector is of a variable size, and grows as needed to accommodate the visited
|
/external/llvm/lib/Analysis/ |
GlobalsModRef.cpp | 625 SmallPtrSet<const Value *, 8> Visited; 627 Visited.insert(V); 656 if (Visited.insert(LHS).second) 658 if (Visited.insert(RHS).second) 665 if (Visited.insert(Op).second) 711 SmallPtrSet<const Value *, 8> Visited; 713 Visited.insert(V); 773 if (Visited.insert(LHS).second) 775 if (Visited.insert(RHS).second) 782 if (Visited.insert(Op).second [all...] |
/build/blueprint/ |
context.go | [all...] |
/external/chromium-trace/catapult/tracing/tracing/model/ |
global_memory_dump.html | 518 * the order in which dumps are visited. [all...] |
/external/clang/lib/CodeGen/ |
CoverageMappingGen.cpp | 155 SmallVector<FileID, 8> Visited; 160 if (std::find(Visited.begin(), Visited.end(), File) != Visited.end()) 162 Visited.push_back(File); 339 /// \brief A location in the most recently visited file or macro. 439 /// \brief Adjust the most recently visited location to \c EndLoc. [all...] |
/external/llvm/include/llvm/Analysis/ |
RegionInfoImpl.h | 263 void RegionBase<Tr>::verifyWalk(BlockT *BB, std::set<BlockT *> *visited) const { 266 visited->insert(BB); 273 if (*SI != exit && visited->find(*SI) == visited->end()) 274 verifyWalk(*SI, visited); 286 std::set<BlockT *> visited; 287 verifyWalk(getEntry(), &visited); local
|
/external/llvm/lib/Transforms/Scalar/ |
TailRecursionElimination.cpp | 180 SmallPtrSet<Use *, 32> Visited; 184 if (!Visited.insert(&U).second) 273 // contain the escaping instruction will be marked as being visited without an 280 DenseMap<BasicBlock *, VisitType> Visited; 345 auto &State = Visited[SuccBB]; 362 if (Visited[NextBB] == UNESCAPED) { 372 if (Visited[CI->getParent()] != ESCAPED) { [all...] |
/external/llvm/utils/TableGen/ |
DFAPacketizerEmitter.cpp | 899 std::map<std::set<unsigned>, const State*> Visited; 909 // Visited = {} [all...] |
/libcore/ojluni/src/main/java/sun/misc/ |
URLClassPath.java | 846 HashSet<String> visited = new HashSet<String>(); 847 return getResource(name, check, visited); 852 * visited by linking through the index files. This helper method uses 858 Set<String> visited) { [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3collections.c | [all...] |