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

1 2 3 4 5 6 7

  /development/samples/ApiDemos/src/com/example/android/apis/os/
MorseCodeConverter.java 22 static final long DOT = SPEED_BASE;
30 /* A */ new long[] { DOT, GAP, DASH },
31 /* B */ new long[] { DASH, GAP, DOT, GAP, DOT, GAP, DOT },
32 /* C */ new long[] { DASH, GAP, DOT, GAP, DASH, GAP, DOT },
33 /* D */ new long[] { DASH, GAP, DOT, GAP, DOT },
34 /* E */ new long[] { DOT },
    [all...]
  /development/samples/ApiDemos/tests/src/com/example/android/apis/os/
MorseCodeConverterTest.java 36 MorseCodeConverter.DOT,
37 MorseCodeConverter.DOT,
38 MorseCodeConverter.DOT,
39 MorseCodeConverter.DOT,
40 MorseCodeConverter.DOT};
  /external/llvm/utils/
GenLibDeps.pl 38 # Find the "dot" program
41 chomp($DotPath = `which dot`);
42 die "Can't find 'dot'" if (! -x "$DotPath");
291 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=0 ];\n" };
293 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=10];\n" };
313 open DOT, "| $DotPath -Tgif > libdeps.gif";
315 print DOT "digraph LibDeps {\n";
316 print DOT " size=\"40,15\"; \n";
317 print DOT " ratio=\"1.33333\"; \n";
318 print DOT " margin=\"0.25\"; \n"
    [all...]
  /external/clang/test/Preprocessor/
output_paste_avoid.cpp 13 #define DOT .
14 C: ..DOT
  /cts/tools/dasm/src/java_cup/
sym.java 29 static final int DOT = 16;
  /external/llvm/include/llvm/Support/
GraphWriter.h 1 //===-- llvm/Support/GraphWriter.h - Write graph to a .dot file -*- C++ -*-===//
11 // LLVM graphs to ".dot" files. "dot" is a tool that is part of the AT&T
35 namespace DOT { // Private functions...
45 DOT,
54 GraphProgram::Name program = GraphProgram::DOT);
86 O << "<s" << i << ">" << DOT::EscapeString(label);
118 O << "digraph \"" << DOT::EscapeString(Title) << "\" {\n";
120 O << "digraph \"" << DOT::EscapeString(GraphName) << "\" {\n";
128 O << "\tlabel=\"" << DOT::EscapeString(Title) << "\";\n"
    [all...]
  /external/nist-sip/java/gov/nist/core/
Separators.java 50 public static final String DOT = ".";
  /external/nist-sip/java/gov/nist/javax/sip/header/
MimeVersion.java 125 + DOT
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreePatternLexer.cs 44 public const int DOT = 7;
104 return DOT;
TreePatternParser.cs 74 ttype == TreePatternLexer.DOT) {
111 if (ttype == TreePatternLexer.DOT) {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternLexer.java 38 public static final int DOT = 7;
99 return DOT;
TreePatternParser.java 72 ttype==TreePatternLexer.DOT )
110 if ( ttype == TreePatternLexer.DOT ) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 53 private static final String DOT = "."; //$NON-NLS-1$
174 this.getProject().setProperty(feedWatchActionTheValue + DOT + j,!isNullString(newContent)?newContent:oldContent);
180 if (!isNullString(oldContent)) { this.getProject().setProperty(feedWatchActionOldValue + DOT + j,oldContent); }
181 if (!isNullString(newContent)) { this.getProject().setProperty(feedWatchActionNewValue + DOT + j,newContent); }
191 if (!isNullString(out)) { this.getProject().setProperty(feedWatchActionError + DOT + j, out); }
194 if (!isNullString(out)) { this.getProject().setProperty(feedWatchActionOuput + DOT + j, out); }
197 if (!RSSFeedUtil.EXPECTED_RESULT.equals(out)) { this.getProject().setProperty(feedWatchActionResult + DOT + j, out); }
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
token.h 35 #define DOT 23
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
token.h 35 #define DOT 23
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 213 dotted_name: NAME (DOT NAME)*
334 | DOT NAME
342 : DOT DOT DOT
476 DOT : '.' ;
  /external/clang/lib/Frontend/
DependencyGraph.cpp 10 // This code generates a header dependency graph in DOT format, for use
26 namespace DOT = llvm::DOT;
119 OS << DOT::EscapeString(FileName)
  /external/bison/doc/
Makefile.am 104 FIGS_DOT = figs/example.dot figs/example-reduce.dot figs/example-shift.dot
108 $(FIGS_DOT:.dot=.eps) $(FIGS_DOT:.dot=.pdf) $(FIGS_DOT:.dot=.png)
109 SUFFIXES += .dot .eps .pdf .png
111 bison.dvi: $(FIGS_DOT:.dot=.eps)
112 bison.html: $(FIGS_DOT:.dot=.png)
113 bison.pdf: $(FIGS_DOT:.dot=.pdf
    [all...]
  /external/clang/lib/AST/
InheritViz.cpp 11 // generates a GraphViz DOT file that depicts the class inheritance
12 // diagram and then calls Graphviz/dot+gv on it.
47 Out << "digraph \"" << DOT::EscapeString(Type.getAsString()) << "\" {\n";
81 Out << " [ shape=\"box\", label=\"" << DOT::EscapeString(TypeName);
143 sys::fs::createTemporaryFile(Self.getAsString(), "dot", FD, Filename);
  /external/chromium_org/tools/gn/
token.h 35 DOT,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 32 DOT = 23
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 32 DOT = 23
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestExpressionFeatures.g3 45 DOT = '.';
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
program_parse.tab.h 144 DOT = 362
252 #define DOT 362
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
VariableTranslator.java 107 out.add(DOT);
114 private static final JavaExpression DOT = new StringExpression(".");

Completed in 699 milliseconds

1 2 3 4 5 6 7