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

1 2 3 4 5 6 7 8 91011>>

  /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");
289 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=0 ];\n" };
291 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=10];\n" };
311 open DOT, "| $DotPath -Tgif > libdeps.gif";
313 print DOT "digraph LibDeps {\n";
314 print DOT " size=\"40,15\"; \n";
315 print DOT " ratio=\"1.33333\"; \n";
316 print DOT " margin=\"0.25\"; \n"
    [all...]
  /external/swiftshader/third_party/LLVM/utils/
GenLibDeps.pl 38 # Find the "dot" program
41 chomp($DotPath = `which dot`);
42 die "Can't find 'dot'" if (! -x "$DotPath");
293 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=0 ];\n" };
295 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=10];\n" };
315 open DOT, "| $DotPath -Tgif > libdeps.gif";
317 print DOT "digraph LibDeps {\n";
318 print DOT " size=\"40,15\"; \n";
319 print DOT " ratio=\"1.33333\"; \n";
320 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/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
ArrowType.java 33 DOT("dot"),
  /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
34 namespace DOT { // Private functions...
44 DOT,
53 GraphProgram::Name program = GraphProgram::DOT);
85 O << "<s" << i << ">" << DOT::EscapeString(label);
117 O << "digraph \"" << DOT::EscapeString(Title) << "\" {\n";
119 O << "digraph \"" << DOT::EscapeString(GraphName) << "\" {\n";
127 O << "\tlabel=\"" << DOT::EscapeString(Title) << "\";\n"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
morse.py 4 # Space between DOTs and DAHs should be one DOT.
6 # Space between two words should be DOT DAH DAH.
10 DOT = 30
11 DAH = 3 * DOT
122 sine(dev, DOT, wave)
126 pause(dev, DAH + DOT)
127 pause(dev, DOT)
  /external/swiftshader/third_party/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...
41 DOT,
49 void DisplayGraph(const sys::Path& Filename, bool wait=true, GraphProgram::Name program = GraphProgram::DOT);
81 O << "<s" << i << ">" << DOT::EscapeString(label);
113 O << "digraph \"" << DOT::EscapeString(Title) << "\" {\n";
115 O << "digraph \"" << DOT::EscapeString(GraphName) << "\" {\n";
123 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;
  /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;
  /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); }
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
token.h 35 #define DOT 23
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
token.h 35 #define DOT 23
  /prebuilts/gdb/darwin-x86/include/python2.7/
token.h 35 #define DOT 23
  /prebuilts/gdb/linux-x86/include/python2.7/
token.h 35 #define DOT 23
  /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/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
reference.py 35 if (nodes[i].children[0].type != token.DOT or
72 snippet.TokenSnippet.Create(token.DOT, '.'),
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CertImpl.java 77 private static final String DOT = ".";
92 public static final String SUBJECT_DN = NAME + DOT + INFO + DOT +
93 X509CertInfo.SUBJECT + DOT + X509CertInfo.DN_NAME;
95 public static final String ISSUER_DN = NAME + DOT + INFO + DOT +
96 X509CertInfo.ISSUER + DOT + X509CertInfo.DN_NAME;
98 public static final String SERIAL_ID = NAME + DOT + INFO + DOT +
99 X509CertInfo.SERIAL_NUMBER + DOT
    [all...]
  /system/tools/hidl/
hidl-gen_l.ll 25 DOT [.]
26 PATH {COMPONENT}({DOT}{COMPONENT})*
28 VERSION {AT}{D}+{DOT}{D}+
163 {COMPONENT}({DOT}{COMPONENT})+ { yylval->str = strdup(yytext); return token::FQNAME; }
  /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 : '.' ;

Completed in 1378 milliseconds

1 2 3 4 5 6 7 8 91011>>