HomeSort by relevance Sort by last modified time
    Searched refs:Transform (Results 101 - 125 of 541) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
SourceTargetUtility.java 20 final Transform<String, String> transform; field in class:SourceTargetUtility
27 public SourceTargetUtility(Transform<String, String> transform) {
28 this(transform, null);
31 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) {
32 this.transform = transform;
64 String s = transform.transform(UTF16.valueOf(i))
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
__init__.py 19 def _TransformFile(transform, file_path):
21 result = transform(module)
26 def Transform(transform, file_paths):
27 transform = functools.partial(_TransformFile, transform)
28 return multiprocessing.Pool().map(transform, file_paths)
  /external/mesa3d/src/mesa/tnl/
t_vb_normals.c 106 GLuint transform = NORM_TRANSFORM_NO_ROT; local
109 /* need to do full (3x3) matrix transform */
110 transform = NORM_TRANSFORM;
113 if (ctx->Transform.Normalize) {
114 store->NormalTransform = _mesa_normal_tab[transform | NORM_NORMALIZE];
116 else if (ctx->Transform.RescaleNormals &&
118 store->NormalTransform = _mesa_normal_tab[transform | NORM_RESCALE];
121 store->NormalTransform = _mesa_normal_tab[transform];
127 * transform normal vectors (just leave them in object coordinates)
130 if (ctx->Transform.Normalize)
    [all...]
t_vb_vertex.c 68 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; \
72 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; \
73 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; \
74 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; \
75 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]; \
126 if (ctx->Transform.DepthClamp) {
194 !ctx->Transform.DepthClamp );
203 !ctx->Transform.DepthClamp );
213 if (ctx->Transform.ClipPlanesEnabled) {
t_vb_cliptmp.h 139 GLbitfield enabled = ctx->Transform.ClipPlanesEnabled;
142 const GLfloat a = ctx->Transform._ClipUserPlane[p][0];
143 const GLfloat b = ctx->Transform._ClipUserPlane[p][1];
144 const GLfloat c = ctx->Transform._ClipUserPlane[p][2];
145 const GLfloat d = ctx->Transform._ClipUserPlane[p][3];
227 GLbitfield enabled = ctx->Transform.ClipPlanesEnabled;
230 const GLfloat a = ctx->Transform._ClipUserPlane[p][0];
231 const GLfloat b = ctx->Transform._ClipUserPlane[p][1];
232 const GLfloat c = ctx->Transform._ClipUserPlane[p][2];
233 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_formobject.cpp 15 void CPDF_FormObject::Transform(const CFX_Matrix& matrix) {
cpdf_imageobject.h 24 void Transform(const CFX_Matrix& matrix) override;
cpdf_pageobjectholder.cpp 40 void CPDF_PageObjectHolder::Transform(const CFX_Matrix& matrix) {
42 pObj->Transform(matrix);
cpdf_path.cpp 40 void CPDF_Path::Transform(const CFX_Matrix* pMatrix) {
41 m_Ref.GetPrivateCopy()->Transform(pMatrix);
cpdf_pageobjectholder.h 47 void Transform(const CFX_Matrix& matrix);
cpdf_path.h 35 void Transform(const CFX_Matrix* pMatrix);
cpdf_pathobject.cpp 17 void CPDF_PathObject::Transform(const CFX_Matrix& matrix) {
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
eigen.h 35 // `Transform` class, instead of a raw `Matrix`.
44 // mat4 transform;
46 // vec3 transformed = transform.linear() * position;
53 using AffineMatrix = Transform<T, N-1, Projective>;
  /prebuilts/gradle-plugin/com/android/tools/build/transform-api/1.4.0-beta3/
transform-api-1.4.0-beta3.jar 
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
BasicPipeline.java 46 Matrix m = state.mTransform.getMatrix(Transform.VOLUME_SPACE, Transform.SCREEN_SPACE);
47 state.mCubeVolume.transform(m, state.mCubeScreen);
  /external/eigen/bench/
geometry.cpp 25 EIGEN_DONT_INLINE void transform(const Transformation& t, Data& data) function
33 EIGEN_DONT_INLINE void transform(const Quaternion<Scalar>& t, Data& data) function
50 EIGEN_DONT_INLINE void transform(const ToRotationMatrixWrapper<QType>& t, Data& data) function
58 EIGEN_DONT_INLINE void transform(const Transform<Scalar,Dim,Projective>& t, Data& data) function
76 BENCH(timer,10,100000,transform(t,data));
100 Transform<Scalar,3,Isometry> iso3(mat34);
101 Transform<Scalar,3,Affine> aff3(mat34);
102 Transform<Scalar,3,AffineCompact> caff3(mat34);
103 Transform<Scalar,3,Projective> proj3(mat34)
    [all...]
  /external/skia/src/sfnt/
SkOTTable_glyf.h 155 union Transform {
180 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
186 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
192 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
198 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
200 } transform; member in struct:SkOTTableGlyphData::Composite::Component
  /frameworks/native/services/surfaceflinger/
DisplayDevice.cpp 186 // initialize the display orientation transform.
387 false, Transform::ROT_0);
409 const Transform& planeTransform(mGlobalTransform);
410 dirty = planeTransform.transform(this->dirtyRegion);
464 uint32_t transform = 0; local
467 transform = Transform::ROT_0;
470 transform = Transform::ROT_90;
473 transform = Transform::ROT_180
593 uint32_t transform = 0; local
    [all...]
  /external/eigen/Eigen/src/Geometry/
RotationBase.h 48 * This function is added to be conform with the Transform class' naming scheme.
56 EIGEN_DEVICE_FUNC inline Transform<Scalar,Dim,Isometry> operator*(const Translation<Scalar,Dim>& t) const
57 { return Transform<Scalar,Dim,Isometry>(*this) * t; }
80 EIGEN_DEVICE_FUNC friend inline Transform<Scalar,Dim,Affine> operator*(const DiagonalMatrix<Scalar,Dim>& l, const Derived& r)
82 Transform<Scalar,Dim,Affine> res(r);
89 EIGEN_DEVICE_FUNC inline Transform<Scalar,Dim,Mode> operator*(const Transform<Scalar,Dim,Mode,Options>& t) const
112 typedef Transform<Scalar,Dim,Affine> ReturnType;
177 * Currently toRotationMatrix is only used by Transform.
179 * \sa class Transform, class Rotation2D, class Quaternion, class AngleAxi
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip_state.c 123 clip->clip5.userclip_enable_flags = ctx->Transform.ClipPlanesEnabled;
126 clip->clip5.userclip_enable_flags = (ctx->Transform.ClipPlanesEnabled & 0x3f) | 0x40;
149 if (!ctx->Transform.DepthClamp)
153 if (ctx->Transform.ClipDepthMode == GL_ZERO_TO_ONE)
  /external/webrtc/webrtc/base/
transformadapter.h 23 // Transform should convert the in_len bytes of input into the out_len-sized
28 // Note: Transform should not return SR_BLOCK, as there is no asynchronous
30 virtual StreamResult Transform(const void * input, size_t * in_len,
46 TransformInterface * transform,
  /external/fonttools/Lib/fontTools/pens/
transformPen.py 18 be a six-tuple, or a fontTools.misc.transform.Transform object.
21 from fontTools.misc.transform import Transform
22 transformation = Transform(*transformation)
55 transformation = self._transformation.transform(transformation)
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLES20RenderEngine.h 25 #include <Transform.h>
70 Transform::orientation_flags rotation);
  /system/tpm/attestation/common/
mock_tpm_utility.cc 30 *out = attestation::MockTpmUtility::Transform(method_, in);
78 std::string MockTpmUtility::Transform(const std::string& method,
  /external/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 31 // + Transform (pattern transformation)
36 // + Transform (pattern transformation)
40 // + Transform (pattern transformation)
42 // Note that source and exactly one of [Target, Transform] must be provided
138 const std::string Transform;
141 : RewriteDescriptor(DT), Pattern(P), Transform(T) { }
160 std::string Name = Regex(Pattern).sub(Transform, C.getName(), &Error);
310 std::string Transform;
342 } else if (KeyValue.equals("transform")) {
343 Transform = Value->getValue(ValueStorage)
    [all...]

Completed in 428 milliseconds

1 2 3 45 6 7 8 91011>>