/external/llvm/lib/CodeGen/ |
StackMapLivenessAnalysis.cpp | 36 STATISTIC(NumStackMapFuncVisited, "Number of functions visited"); 38 STATISTIC(NumBBsVisited, "Number of basic blocks visited"); 40 STATISTIC(NumStackMaps, "Number of StackMaps visited");
|
/external/testng/doc/samplereport/css/ |
maven-classic.css | 91 a:link, #breadcrumbs a:visited, #navcolumn a:visited, .contentBox a:visited, .tasknav a:visited {
99 a:link.selfref, a:visited.selfref {
107 a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover {
116 a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover {
184 a:link.selfref, a:visited.selfref {
193 .contentBox h2 a:link, .contentBox h2 a:visited, .contentBox h3 a:link, .contentBox h3 a:visited {
[all...] |
/external/v8/test/webkit/fast/js/ |
JSON-parse-reviver-expected.txt | 71 Ensure that we visited a value that we have deleted, and that deletion is reflected while filtering. 83 PASS Ensured that property was visited despite Array length being reduced. 122 Ensure that we visited a value that we have deleted, and that deletion is reflected while filtering.
|
/frameworks/base/sax/java/android/sax/ |
Element.java | 40 boolean visited; field in class:Element 180 requiredChildren.get(i).visited = false; 193 if (!child.visited) {
|
/build/tools/ |
java-layers.py | 56 def recurse(obj, dep, visited): 58 if dep in visited: 61 for v in visited: 66 visited.append(dep) 70 recurse(obj, deps[upper], visited)
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
MapKeys.java | 167 * Returns a snippet to create the visited value in code. Expects its parameter to be a class with 258 * Returns a snippet for the visited value. Expects its parameter to be a class with static 261 * <p>Throws {@link IllegalArgumentException} if the visited value is an array. 299 * If the visited type is an array, prefixes the parameter snippet with {@code new T[]}, where 317 * If the visited type is an array, returns the name of its raw component type; otherwise returns
|
/external/llvm/lib/Analysis/ |
CFG.cpp | 33 SmallPtrSet<const BasicBlock*, 8> Visited; 37 Visited.insert(BB); 48 if (Visited.insert(BB).second) { 141 SmallSet<const BasicBlock*, 64> Visited; 144 if (!Visited.insert(BB).second)
|
DemandedBits.cpp | 269 Visited.clear(); 301 // To save memory, we don't add I to the Visited set here. Instead, we 320 Visited.insert(UserI); 344 // been previously visited), then re-queue the operand to be visited 356 } else if (!Visited.count(I)) { 376 return !Visited.count(I) && AliveBits.find(I) == AliveBits.end() &&
|
Lint.cpp | 104 SmallPtrSetImpl<Value *> &Visited) const; 620 SmallPtrSet<Value *, 4> Visited; 621 return findValueImpl(V, OffsetOk, Visited); 626 SmallPtrSetImpl<Value *> &Visited) const { 628 if (!Visited.insert(V).second) 647 return findValueImpl(U, OffsetOk, Visited); 656 return findValueImpl(W, OffsetOk, Visited); 659 return findValueImpl(CI->getOperand(0), OffsetOk, Visited); 664 return findValueImpl(W, OffsetOk, Visited); 671 return findValueImpl(CE->getOperand(0), OffsetOk, Visited); [all...] |
/external/llvm/lib/Transforms/ObjCARC/ |
DependencyAnalysis.cpp | 227 SmallPtrSetImpl<const BasicBlock *> &Visited, 249 if (Visited.insert(PredBB).second) 264 // visited. If not, insert a sentinal indicating that most optimizations are 266 for (const BasicBlock *BB : Visited) { 272 if (Succ != StartBB && !Visited.count(Succ)) {
|
ObjCARCContract.cpp | 80 SmallPtrSetImpl<const BasicBlock *> &Visited, 89 SmallPtrSetImpl<const BasicBlock *> &Visited); 149 SmallPtrSetImpl<const BasicBlock *> &Visited) { 158 DependingInstructions, Visited, PA); 162 DependingInstructions, Visited, PA); 164 Visited.clear(); 407 SmallPtrSetImpl<const BasicBlock *> &Visited, 418 return contractAutorelease(F, Inst, Class, DependingInsts, Visited); 533 SmallPtrSet<const BasicBlock *, 4> Visited; 541 if (tryToPeepholeInstruction(F, Inst, I, DependingInstructions, Visited, [all...] |
/external/tinyxml/docs/ |
doxygen.css | 52 A.qindex:visited { 73 A.qindexHL:visited { text-decoration: none; background-color: #6666cc; color: #ffffff } 77 A.code:visited { text-decoration: none; font-weight: normal; color: #0000FF} 79 A.codeRef:visited { font-weight: normal; color: #0000FF} 296 a:visited {
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/docs/apidoc/ |
epydoc.css | 12 * link colors with 'a:link' and 'a:visited'. 22 a:visited { color: #204080; } 58 table.navbar a:visited { color: #204080; } 76 td.table-header table a:visited { color: #204080; } 98 table.summary a:visited { color: #204080; } 113 table.details a:visited { color: #204080; } 136 table.link-index a:visited { color: #204080; } 144 table.metadata-index a:visited { color: #204080; } 158 table.summary a.summary-sig-name:visited 175 a.summary-name:visited { color: #006080; font-weight: bold [all...] |
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/docs/apidoc/ |
epydoc.css | 12 * link colors with 'a:link' and 'a:visited'. 22 a:visited { color: #204080; } 58 table.navbar a:visited { color: #204080; } 76 td.table-header table a:visited { color: #204080; } 98 table.summary a:visited { color: #204080; } 113 table.details a:visited { color: #204080; } 136 table.link-index a:visited { color: #204080; } 144 table.metadata-index a:visited { color: #204080; } 158 table.summary a.summary-sig-name:visited 175 a.summary-name:visited { color: #006080; font-weight: bold [all...] |
/external/clang/lib/Analysis/ |
ThreadSafetyTIL.cpp | 169 if (Visited) return ID; 170 Visited = true; 192 // Visited is assumed to have been set by the topologicalSort. This pass 193 // assumes !Visited means that we've visited this node before. 194 if (!Visited) return ID; 195 Visited = false;
|
UninitializedValues.cpp | 537 // We track the number of successors of a node which have been visited, and 538 // visit a node once we have visited all of its successors. Only edges where 564 // * Block 7 is not visited because we have only visited one of its two 566 // * Block 8 is visited because we've visited its only successor. 568 // * Block 7 is visited because we've now visited both of its successors. 570 // * Blocks 1, 2, 4, 5, and 6 are not visited because we didn't visit all 572 // * Block 3 is not visited because it initializes 'n' [all...] |
/external/llvm/lib/Target/NVPTX/ |
NVPTXUtilities.cpp | 402 void llvm::dumpInstRec(Value *v, std::set<Instruction *> *visited) { 405 if (visited->find(I) != visited->end()) 408 visited->insert(I); 411 dumpInstRec(I->getOperand(i), visited); 419 std::set<Instruction *> visited; local 423 dumpInstRec(v, &visited);
|
/external/mesa3d/src/gallium/drivers/radeon/ |
R600KernelParameters.cpp | 73 bool IsIndirect(Value *Val, std::set<Value*> &Visited); 139 bool R600KernelParameters::IsIndirect(Value *Val, std::set<Value*> &Visited) { 152 if (Visited.count(Val)) { 156 Visited.insert(Val); 173 if (IsIndirect(V2, Visited)) { 191 std::set<Value*> Visited; 192 P.IsIndirect = IsIndirect(P.Val, Visited);
|
/frameworks/base/core/java/android/provider/ |
Browser.java | 251 * Return a cursor pointing to a list of all visited site urls. The cursor will 306 * Update the visited history to acknowledge that a site has been 307 * visited. 310 * @param url The site being visited. 356 * not bookmarks. Also set all visited bookmarks to unvisited. 439 * The number of time the item has been visited. 445 * The date the item was last visited, in milliseconds since the epoch.
|
/external/clang/lib/Serialization/ |
ModuleManager.cpp | 269 assert(State->NextState == nullptr && "Visited state is in list?"); 337 // stack (if it hasn't already been marked as visited). 344 // queue to be visited. 362 // index that is *not* in that set as 'visited'. 386 // behavior, we mark all of the reachable modules as having been visited. 390 // stack (if it hasn't already been marked as visited).
|
/external/javassist/src/main/javassist/bytecode/ |
StackMap.java | 154 * is visited. 162 * is visited. 170 * visited. 206 * <code>Uninitialized_variable_info</code>) is visited. 212 * is visited. 218 * is visited.
|
/external/llvm/unittests/ADT/ |
DenseMapTest.cpp | 309 bool visited[100]; local 314 visited[i] = false; 323 visited[visitedIndex[it->first]] = true; 325 // Ensure every number was visited. 327 ASSERT_TRUE(visited[i]) << "Entry #" << i << " was never visited";
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICUCurrencyDisplayInfoProvider.java | 238 Set<String> visited = new HashSet<String>(); local 248 if (!visited.contains(isoCode)) { 249 visited.add(isoCode);
|
/external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/ |
ICUCurrencyDisplayInfoProvider.java | 234 Set<String> visited = new HashSet<String>(); local 244 if (!visited.contains(isoCode)) { 245 visited.add(isoCode);
|
/external/llvm/include/llvm/Analysis/ |
BasicAliasAnalysis.h | 115 /// Tracks phi nodes we have visited. 131 /// Tracks instructions visited by pointsToConstantMemory. 132 SmallPtrSet<const Value *, 16> Visited;
|