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

1 2

  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph_tests/
test_dot.py 4 from altgraph import Dot
24 dot = Dot.Dot(g)
26 self.assertEqual(dot.name, 'G')
27 self.assertEqual(dot.attr, {})
28 self.assertEqual(dot.temp_dot, 'tmp_dot.dot')
29 self.assertEqual(dot.temp_neo, 'tmp_neo.dot')
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PagingIndicator.java 55 private static final Property<Dot, Float> DOT_ALPHA
56 = new Property<Dot, Float>(Float.class, "alpha") {
58 public Float get(Dot dot) {
59 return dot.getAlpha();
63 public void set(Dot dot, Float value) {
64 dot.setAlpha(value);
68 private static final Property<Dot, Float> DOT_DIAMETER
69 = new Property<Dot, Float>(Float.class, "diameter")
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternLexer.cs 45 public const int Dot = 7;
116 return Dot;
TreePatternParser.cs 84 ttype == TreePatternLexer.Dot )
130 if ( ttype == TreePatternLexer.Dot )
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_execfile.py 11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node,
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
fix_dict.py 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
70 [Dot(),
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_execfile.py 11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node,
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
fix_dict.py 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
70 [Dot(),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node,
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
fix_dict.py 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
70 [Dot(),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node,
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
fix_dict.py 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
70 [Dot(),
  /development/ndk/sources/android/ndk_helper/
tapCamera.cpp 292 float w = vec_from.Dot( vec_to );
306 mag = vec.Dot( vec );
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 47 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /external/skia/include/utils/
SkCamera.h 23 static SkScalar Dot(const SkUnit3D&, const SkUnit3D&);
80 // dot a unit vector with the patch's normal
  /external/skia/src/utils/
SkCamera.cpp 48 SkScalar SkUnit3D::Dot(const SkUnit3D& a, const SkUnit3D& b) {
220 SkScalar dot = SkUnit3D::Dot(*SkTCast<const SkUnit3D*>(&fZenith), axis); local
222 zenith.fX = fZenith.fX - dot * axis.fX;
223 zenith.fY = fZenith.fY - dot * axis.fY;
224 zenith.fZ = fZenith.fZ - dot * axis.fZ;
258 SkScalar dot; local
264 dot = SkUnit3D::Dot(*SkTCast<const SkUnit3D*>(&diff),
268 matrix->set(SkMatrix::kMScaleX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot));
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_collections.py 132 Dot = namedtuple('Dot', 'd')
133 self.assertEqual(Dot(1), (1,))
134 self.assertEqual(Dot._make([1]), (1,))
135 self.assertEqual(Dot(1).d, 1)
136 self.assertEqual(repr(Dot(1)), 'Dot(d=1)')
137 self.assertEqual(Dot(1)._asdict(), {'d':1})
138 self.assertEqual(Dot(1)._replace(d=999), (999,))
139 self.assertEqual(Dot(1)._fields, ('d',)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_collections.py 132 Dot = namedtuple('Dot', 'd')
133 self.assertEqual(Dot(1), (1,))
134 self.assertEqual(Dot._make([1]), (1,))
135 self.assertEqual(Dot(1).d, 1)
136 self.assertEqual(repr(Dot(1)), 'Dot(d=1)')
137 self.assertEqual(Dot(1)._asdict(), {'d':1})
138 self.assertEqual(Dot(1)._replace(d=999), (999,))
139 self.assertEqual(Dot(1)._fields, ('d',)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_collections.py 132 Dot = namedtuple('Dot', 'd')
133 self.assertEqual(Dot(1), (1,))
134 self.assertEqual(Dot._make([1]), (1,))
135 self.assertEqual(Dot(1).d, 1)
136 self.assertEqual(repr(Dot(1)), 'Dot(d=1)')
137 self.assertEqual(Dot(1)._asdict(), {'d':1})
138 self.assertEqual(Dot(1)._replace(d=999), (999,))
139 self.assertEqual(Dot(1)._fields, ('d',)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_collections.py 132 Dot = namedtuple('Dot', 'd')
133 self.assertEqual(Dot(1), (1,))
134 self.assertEqual(Dot._make([1]), (1,))
135 self.assertEqual(Dot(1).d, 1)
136 self.assertEqual(repr(Dot(1)), 'Dot(d=1)')
137 self.assertEqual(Dot(1)._asdict(), {'d':1})
138 self.assertEqual(Dot(1)._replace(d=999), (999,))
139 self.assertEqual(Dot(1)._fields, ('d',)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
Dot.py 2 altgraph.Dot - Interface to the dot language
5 The :py:mod:`~altgraph.Dot` module provides a simple interface to the
8 (the **dot** file generation) while transparently exposing most of its features.
11 package needs to be installed on the system, moreover the :command:`dot` and :command:`dotty` programs must
20 from altgraph import Graph, Dot
26 # create a dot representation of the graph
27 dot = Dot.Dot(graph
    [all...]
  /frameworks/rs/api/
rs_quaternion.spec 58 summary: Dot product of two quaternions
60 Returns the dot product of two quaternions.
rs_vector_math.spec 89 function: dot
97 summary: Dot product of two vectors
99 Computes the dot product of two vectors.
103 function: dot
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
fixer_util.py 44 return [obj, Node(syms.trailer, [Dot(), attr])]
50 def Dot():
52 return Leaf(token.DOT, u".")
232 if prev is not None and prev.type == token.DOT:
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
fixer_util.py 44 return [obj, Node(syms.trailer, [Dot(), attr])]
50 def Dot():
52 return Leaf(token.DOT, u".")
232 if prev is not None and prev.type == token.DOT:

Completed in 867 milliseconds

1 2