Home
last modified time | relevance | path

Searched refs:Dot (Results 1 – 25 of 55) sorted by relevance

123

/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph_tests/
Dtest_dot.py4 from altgraph import Dot
24 dot = Dot.Dot(g)
47 dot = Dot.Dot(g, nodes=[1,2],
78 self.assertRaises(GraphError, Dot.Dot, g, nodes=[1,2, 9])
83 dot = Dot.Dot(g)
106 dot = Dot.Dot(g)
138 dot = Dot.Dot(g)
170 dot = Dot.Dot(g)
261 dot = Dot.Dot(g)
297 …dot = Dot.Dot(g, dot='/usr/local/bin/!!dot', dotty='/usr/local/bin/!!dotty', neato='/usr/local/bin…
/external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/
Ddot.rst1 :mod:`altgraph.Dot` --- Interface to the dot language
4 .. module:: altgraph.Dot
7 The :py:mod:`~altgraph.Dot` module provides a simple interface to the
24 from altgraph import Graph, Dot
31 dot = Dot.Dot(graph)
46 Dot class can use for both directed graph and non-directed graph
52 dot = Dot.Dot(graph, graphtype="digraph")
55 dot = Dot.Dot(graph, graphtype="graph")
82 dotty (invoked via :py:func:`~altgraph.Dot.display`) may not be able to
89 - dot styles, passed via the :py:meth:`Dot.style` method::
[all …]
Dchangelog.rst57 - The order of attributes in the Dot output
138 - ``altgraph.Dot.edge_style`` raises ``GraphError`` when
143 - ``altgraph.Dot.save_img`` now works when the mode is
/external/vulkan-validation-layers/libs/glm/gtx/
Dvector_angle.inl60 T const Dot = clamp(dot(x, y), T(-1), T(1)); local
63 T const Angle(acos(Dot));
66 T const Angle(degrees(acos(Dot)));
85 T const Dot = clamp(dot(x, y), T(-1), T(1)); local
88 T const Angle(acos(Dot));
91 T const Angle(degrees(acos(Dot)));
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreePatternLexer.cs45 public const int Dot = 7; field in Antlr.Runtime.Tree.TreePatternLexer
116 return Dot; in NextToken()
DTreePatternParser.cs84 ttype == TreePatternLexer.Dot ) in ParseTree()
130 if ( ttype == TreePatternLexer.Dot ) in ParseNode()
/external/chromium-trace/catapult/telemetry/third_party/altgraph/
DPKG-INFO74 - The order of attributes in the Dot output
155 - ``altgraph.Dot.edge_style`` raises ``GraphError`` when
160 - ``altgraph.Dot.save_img`` now works when the mode is
/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph.egg-info/
DPKG-INFO74 - The order of attributes in the Dot output
155 - ``altgraph.Dot.edge_style`` raises ``GraphError`` when
160 - ``altgraph.Dot.save_img`` now works when the mode is
DSOURCES.txt6 altgraph/Dot.py
/external/skia/src/utils/
DSkCamera.cpp48 SkScalar SkUnit3D::Dot(const SkUnit3D& a, const SkUnit3D& b) { in Dot() function in SkUnit3D
220 SkScalar dot = SkUnit3D::Dot(*SkTCast<const SkUnit3D*>(&fZenith), axis); in doUpdate()
264 dot = SkUnit3D::Dot(*SkTCast<const SkUnit3D*>(&diff), in patchToMatrix()
/external/skia/site/dev/testing/
Dskiagold.md126 * Access the Dot diagram to see history of commits for the trace
129 + Dot colors distinguish between digests
/external/llvm/include/llvm/MC/MCParser/
DMCAsmLexer.h47 Star, Dot, Comma, Dollar, Equal, EqualEqual, enumerator
/external/skia/include/utils/
DSkCamera.h23 static SkScalar Dot(const SkUnit3D&, const SkUnit3D&);
/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
DDot.py111 class Dot(object): class
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/
Dusage.apt.vm98 for each rule in <a href="http://www.graphviz.org">Dot format</a>
107 for each decision in the grammar in <a href="http://www.graphviz.org">Dot format</a>
/external/vulkan-validation-layers/demos/smoke/android/src/main/jni/
DSmoke.push_constant.vert.h142 78: 6(float) Dot 76 77
DSmoke.vert.h143 78: 6(float) Dot 76 77
/external/llvm/lib/Object/
DMachOObjectFile.cpp790 StringRef Foo, F, DotFramework, V, Dylib, Lib, Dot, Qtx; in guessLibraryShortName() local
856 Dot = Name.slice(a-2, a-1); in guessLibraryShortName()
857 if (Dot == ".") in guessLibraryShortName()
877 Dot = Lib.slice(Lib.size()-2, Lib.size()-1); in guessLibraryShortName()
878 if (Dot == ".") in guessLibraryShortName()
894 Dot = Lib.slice(Lib.size()-2, Lib.size()-1); in guessLibraryShortName()
895 if (Dot == ".") in guessLibraryShortName()
/external/llvm/lib/Target/PowerPC/AsmParser/
DPPCAsmParser.cpp1544 case AsmToken::Dot: in ParseOperand()
1649 size_t Dot = Name.find('.'); in ParseInstruction() local
1650 StringRef Mnemonic = Name.slice(0, Dot); in ParseInstruction()
1656 if (Dot != StringRef::npos) { in ParseInstruction()
1657 SMLoc DotLoc = SMLoc::getFromPointer(NameLoc.getPointer() + Dot); in ParseInstruction()
1658 StringRef DotStr = Name.slice(Dot, StringRef::npos); in ParseInstruction()
/external/eigen/doc/
DTutorialMatrixArithmetic.dox149 \section TutorialArithmeticDotAndCross Dot product and cross product
161 Remember that cross product is only for vectors of size 3. Dot product is for vectors of any sizes.
/external/ImageMagick/coders/
Ddds.c733 #define Dot(left, right) (left.x*right.x) + (left.y*right.y) + (left.z*right.z) macro
1267 min = max = Dot(points[0],principle); in CompressRangeFit()
1270 val = Dot(points[i],principle); in CompressRangeFit()
1313 d = Dot(dist,dist); in CompressRangeFit()
1510 dps[i] = Dot(points[i],axis); in ConstructOrdering()
/external/clang/include/clang/AST/
DCommentCommands.td176 defm Dot : VerbatimBlockCommand<"dot", "enddot">;
/external/llvm/lib/MC/MCParser/
DAsmLexer.cpp162 return AsmToken(AsmToken::Dot, StringRef(TokStart, 1)); in LexIdentifier()
/external/mesa3d/docs/
DRELNOTES-3.5105 Dot product texture environment.
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/node_modules/mocha/
Dmocha.js2443 exports = module.exports = Dot;
2452 function Dot(runner) { class
2495 Dot.prototype = new F; class
2496 Dot.prototype.constructor = Dot;
2835 exports.Dot = require('./dot');

123