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

1 2

  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
LocalSdkParser.java 78 HashSet<File> visited = new HashSet<File>(); local
84 visited.add(dir);
91 visited.add(dir);
118 visited.add(samplesDir);
130 visited.add(new File(target.getLocation()));
134 scanMissingSamples(osSdkRoot, visited, packages, log);
135 scanExtras(osSdkRoot, visited, packages, log);
144 * Find any other directory <em>at the top level</em> that hasn't been visited yet
148 HashSet<File> visited,
159 if (dir.isDirectory() && !visited.contains(dir)) {
    [all...]
  /cts/tools/signature-tools/templates/
Styles.st 8 a.default:visited {color: blue; text-decoration: none}
12 a.discreet:visited {color: black; text-decoration: none}
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ElementDescriptor.java 300 Set<ElementDescriptor> visited) {
301 if (recursive && visited == null) {
302 visited = new HashSet<ElementDescriptor>();
311 if (visited != null) {
312 visited.add(this);
317 if (visited != null) {
318 if (!visited.add(e)) { // Set.add() returns false if element is already present
323 recursive, visited);
  /frameworks/base/sax/java/android/sax/
Element.java 42 boolean visited; field in class:Element
182 requiredChildren.get(i).visited = false;
195 if (!child.visited) {
RootElement.java 166 e.visited = true;
  /external/bzip2/
bzip.css 13 a, a:link, a:visited, a:active { color: #336699; }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 381 * @param visited A set we use to remember which descriptors have already been visited,
387 Set<ElementDescriptor> visited) {
388 if (visited == null) {
389 visited = new HashSet<ElementDescriptor>();
394 if (visited.add(desc)) {
396 // That means we haven't visited this descriptor yet.
405 internalFindFqcnViewDescritor(fqcn, desc.getChildren(), visited);
  /dalvik/dx/src/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());
Dominators.java 121 HashSet<SsaBasicBlock> visited = new HashSet<SsaBasicBlock>(); local
132 if (visited.add(vAncestor) && vabbInfo.ancestor != null) {
  /dalvik/vm/compiler/
CompilerIR.h 138 int visited; member in struct:BasicBlock
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-ssa-sccvn.h 144 unsigned visited : 1; member in struct:vn_ssa_aux
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-ssa-sccvn.h 144 unsigned visited : 1; member in struct:vn_ssa_aux
  /external/chromium/third_party/icu/source/test/perf/perldriver/
Output.pm 228 A:visited { color: blue; font-weight: normal; text-decoration: none } /* visited links */
  /external/icu4c/test/perf/perldriver/
Output.pm 228 A:visited { color: blue; font-weight: normal; text-decoration: none } /* visited links */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 1113 HashSet<Node> visited = new HashSet<Node>(); local
1347 HashSet<String> visited = new HashSet<String>(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 819 HashSet<ElementDescriptor> visited = new HashSet<ElementDescriptor>(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 226 HashSet<String> visited = new HashSet<String>(); local
241 visited.add(uri);
248 // visited above.
251 for (int i = 1; visited.contains(prefix); i++) {
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 1671 forEachNonSubBlockDepthFirst0(result.get(idx), v, visited); local
    [all...]
  /external/bluetooth/glib/glib/
gbookmarkfile.h 164 time_t visited);
  /external/webkit/WebCore/history/
HistoryItem.h 163 void visited(const String& title, double time, VisitCountBehavior);
HistoryItem.cpp 326 void HistoryItem::visited(const String& title, double time, VisitCountBehavior visitCountBehavior) function in class:WebCore::HistoryItem
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-core.css 68 .rebox.green a:link, .rebox.green a:visited {
98 a:visited,
99 a:visited code {
520 #footerlinks a:visited {
  /external/webkit/WebCore/css/
CSSSelector.cpp 148 DEFINE_STATIC_LOCAL(AtomicString, visited, ("visited"));
380 else if (m_value == visited)
  /build/tools/droiddoc/templates/assets/
android-developer-core.css 44 a:visited,
45 a:visited code {
480 #footerlinks a:visited {
  /external/v8/tools/
test.py     [all...]

Completed in 2134 milliseconds

1 2