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

  /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/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(),
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPath.cpp 137 // Identifier => {Dot, End}
138 // Dot => {Identifier}
140 enum ParserState { Identifier, Dot, End };
165 state = Dot;
174 case Dot: {
  /external/chromium_org/ui/gfx/
transform_util.cc 25 double Dot(const double* a, const double* b) {
56 double product = Dot<4>(q1, q2);
211 decomp->skew[0] = Dot<3>(row[0], row[1]);
222 decomp->skew[1] = Dot<3>(row[0], row[2]);
224 decomp->skew[2] = Dot<3>(row[1], row[2]);
240 if (Dot<3>(row[0], pdum3) < 0) {
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 45 Star, Dot, Comma, Dollar, Equal, EqualEqual,
  /external/chromium_org/third_party/skia/include/utils/
SkCamera.h 41 static SkUnitScalar Dot(const SkUnit3D&, const SkUnit3D&);
101 // dot a unit vector with the patch's normal
  /external/skia/include/utils/
SkCamera.h 41 static SkUnitScalar Dot(const SkUnit3D&, const SkUnit3D&);
101 // dot a unit vector with the patch's normal
  /external/chromium_org/third_party/skia/src/utils/
SkCamera.cpp 98 SkUnitScalar SkUnit3D::Dot(const SkUnit3D& a, const SkUnit3D& b) {
272 SkScalar dot = SkUnit3D::Dot(*SkTCast<const SkUnit3D*>(&fZenith), axis); local
274 zenith.fX = fZenith.fX - SkUnitScalarMul(dot, axis.fX);
275 zenith.fY = fZenith.fY - SkUnitScalarMul(dot, axis.fY);
276 zenith.fZ = fZenith.fZ - SkUnitScalarMul(dot, axis.fZ);
310 SkScalar dot; local
316 dot = SkUnit3D::Dot(*SkTCast<const SkUnit3D*>(&diff),
320 matrix->set(SkMatrix::kMScaleX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot));
    [all...]
  /external/skia/src/utils/
SkCamera.cpp 98 SkUnitScalar SkUnit3D::Dot(const SkUnit3D& a, const SkUnit3D& b) {
272 SkScalar dot = SkUnit3D::Dot(*SkTCast<const SkUnit3D*>(&fZenith), axis); local
274 zenith.fX = fZenith.fX - SkUnitScalarMul(dot, axis.fX);
275 zenith.fY = fZenith.fY - SkUnitScalarMul(dot, axis.fY);
276 zenith.fZ = fZenith.fZ - SkUnitScalarMul(dot, axis.fZ);
310 SkScalar dot; local
316 dot = SkUnit3D::Dot(*SkTCast<const SkUnit3D*>(&diff),
320 matrix->set(SkMatrix::kMScaleX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot));
    [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/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/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/python/linux-x86/2.7.5/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:
  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 71 /// The leading integral digit sequence and dot should have already been
113 return AsmToken(AsmToken::Dot, StringRef(TokStart, 1));
AsmParser.cpp 848 case AsmToken::Dot: {
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 280 case AsmToken::Dot: Out->os() << "Dot"; break;
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
box2d.js     [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp     [all...]
  /prebuilts/tools/common/freemarker/
freemarker-2.3.19.jar 
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]

Completed in 721 milliseconds