HomeSort by relevance Sort by last modified time
    Searched defs:Transform (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /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/icu/android_icu4j/src/main/java/android/icu/text/
Transform.java 19 public interface Transform<S,D> {
21 * Transform the input in some way, to be determined by the subclass.
25 public D transform(S source); method in interface:Transform
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Transform.java 18 public interface Transform<S,D> {
20 * Transform the input in some way, to be determined by the subclass.
25 public D transform(S source); method in interface:Transform
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_path.cpp 20 void CPDF_PathObject::Transform(const CFX_Matrix& matrix) {
39 rect.Transform(&m_Matrix);
fpdf_page_image.cpp 35 void CPDF_ImageObject::Transform(const CFX_Matrix& matrix) {
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IRTransformLayer.h 35 TransformFtor Transform = TransformFtor())
36 : BaseLayer(BaseLayer), Transform(std::move(Transform)) {}
38 /// @brief Apply the transform functor to each module in the module set, then
50 *I = Transform(std::move(*I));
87 /// @brief Access the transform functor directly.
88 TransformFtor& getTransform() { return Transform; }
91 const TransformFtor& getTransform() const { return Transform; }
95 TransformFtor Transform;
ObjectTransformLayer.h 35 TransformFtor Transform = TransformFtor())
36 : BaseLayer(BaseLayer), Transform(std::move(Transform)) {}
38 /// @brief Apply the transform functor to each object in the object set, then
49 *I = Transform(std::move(*I));
90 /// @brief Access the transform functor directly.
91 TransformFtor &getTransform() { return Transform; }
94 const TransformFtor &getTransform() const { return Transform; }
98 TransformFtor Transform;
  /external/v8/src/interpreter/
bytecode-pipeline.cc 97 void BytecodeNode::Transform(Bytecode new_bytecode, uint32_t extra_operand) {
  /external/webrtc/webrtc/base/
stringencode.h 120 // Apply any suitable string transform (including the ones above) to an STL
123 typedef size_t (*Transform)(char * buffer, size_t buflen,
125 size_t transform(std::string& value, size_t maxlen, const std::string& source,
126 Transform t);
128 // Return the result of applying transform t to source.
129 std::string s_transform(const std::string& source, Transform t);
  /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/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)
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
Transform.java 21 /** Encodes a Box2D transform. We are lazy so we only store a 4 float wide array. First two floats are the position of the
24 public class Transform {
35 public Transform () {
39 /** Constructs a new Transform instance with the given position and angle
42 public Transform (Vector2 position, float angle) {
46 /** Constructs a new Transform instance with the given position and orientation
48 * @param orientation where the transform is pointing*/
49 public Transform (Vector2 position, Vector2 orientation) {
54 /** Transforms the given vector by this transform
65 /** @return the position, modification of the vector has no effect on the Transform */
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
Transform.java 21 /** Encodes a Box2D transform. We are lazy so we only store a 4 float wide array. First two floats are the position of the
24 public class Transform {
35 public Transform () {
39 /** Constructs a new Transform instance with the given position and angle
42 public Transform (Vector2 position, float angle) {
46 /** Constructs a new Transform instance with the given position and orientation
48 * @param orientation where the transform is pointing*/
49 public Transform (Vector2 position, Vector2 orientation) {
54 /** Transforms the given vector by this transform
65 /** @return the position, modification of the vector has no effect on the Transform */
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
WorldManifold.java 29 import org.jbox2d.common.Transform;
65 public final void initialize(final Manifold manifold, final Transform xfA, float radiusA,
66 final Transform xfB, float radiusB) {
79 // Transform.mulToOutUnsafe(xfA, manifold.localPoint, pointA);
80 // Transform.mulToOutUnsafe(xfB, manifold.points[0].localPoint, pointB);
108 Transform.mulToOut(xfA, manifold.localPoint, planePoint);
118 Transform.mulToOut(xfB, manifold.points[i].localPoint, clipPoint);
146 Transform.mulToOut(xfB, manifold.localPoint, planePoint);
164 Transform.mulToOut(xfA, manifold.points[i].localPoint, clipPoint);
  /external/skia/src/gpu/glsl/
GrGLSLPrimitiveProcessor.h 100 struct Transform {
101 Transform() : fType(kVoid_GrSLType) { fCurrentValue = SkMatrix::InvalidMatrix(); }
107 SkSTArray<8, SkSTArray<2, Transform, true> > fInstalledTransforms;
  /frameworks/native/services/surfaceflinger/
Transform.h 36 class Transform
39 Transform();
40 Transform(const Transform& other);
41 explicit Transform(uint32_t orientation);
42 ~Transform();
62 // query the transform
71 // modify the transform
77 // transform data
79 vec2 transform(int x, int y) const
    [all...]
Transform.cpp 24 #include "Transform.h"
32 Transform::Transform() {
36 Transform::Transform(const Transform& other)
40 Transform::Transform(uint32_t orientation) {
44 Transform::~Transform() {
172 vec2 Transform::transform(const vec2& v) const { function in class:android::Transform
180 vec3 Transform::transform(const vec3& v) const { function in class:android::Transform
189 vec2 Transform::transform(int x, int y) const function in class:android::Transform
199 Rect Transform::transform(const Rect& bounds, bool roundOutwards) const function in class:android::Transform
227 Region Transform::transform(const Region& reg) const function in class:android::Transform
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
All.h 15 #include "Transform.h"
37 #define Transform eigen2_Transform
68 #include "Transform.h"
92 #undef Transform
Transform.h 27 * \class Transform
43 class Transform
79 inline Transform() { }
81 inline Transform(const Transform& other)
86 inline explicit Transform(const TranslationType& t) { *this = t; }
87 inline explicit Transform(const ScalingType& s) { *this = s; }
89 inline explicit Transform(const RotationBase<Derived, Dim>& r) { *this = r; }
91 inline Transform& operator=(const Transform& other
    [all...]
  /external/fonttools/Lib/fontTools/misc/
transform.py 3 The Transform class implements various transformation matrix operations,
6 Transform instances are effectively immutable: all methods that operate on the
8 interesting side effect that Transform instances are hashable, ie. they can be
13 Transform -- this is the main class
14 Identity -- Transform instance set to the identity transformation
20 >>> t = Transform(2, 0, 0, 3, 0, 0)
51 __all__ = ["Transform", "Identity", "Offset", "Scale"]
69 class Transform(object):
71 """2x2 transformation matrix plus offset, a.k.a. Affine transform.
72 Transform instances are immutable: all transforming methods, eg
181 def transform(self, other): member in class:Transform
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
Transform.java 31 * A transform contains translation and rotation. It is used to represent the position and
34 public class Transform implements Serializable {
37 /** The translation caused by the transform */
44 public Transform() {
49 /** Initialize as a copy of another transform. */
50 public Transform(final Transform xf) {
56 public Transform(final Vec2 _position, final Rot _R) {
61 /** Set this to equal another transform. */
62 public final Transform set(final Transform xf)
    [all...]
  /external/ppp/pppd/
md5.c 51 static void Transform (UINT4 *buf, UINT4 *in);
144 /* transform if necessary */
151 Transform (mdContext->buf, in);
180 /* append length in bits and transform */
186 Transform (mdContext->buf, in);
203 static void Transform (buf, in)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_conceal.c 28 Transform
58 static void Transform(i32 *data);
72 from the neighbour pixels, applies integer transform (the same
73 transform used in the residual processing) and uses the results as
74 pixel values for concealed macroblocks. Transform produces 4x4
441 Transform(firstPhase);
551 Transform(firstPhase);
579 Function name: Transform
582 Simplified transform, assuming that only dc component and lowest
587 void Transform(i32 *data
    [all...]
  /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
139 const std::string Transform;
142 : RewriteDescriptor(DT), Pattern(P), Transform(T) { }
161 std::string Name = Regex(Pattern).sub(Transform, C.getName(), &Error);
311 std::string Transform;
343 } else if (KeyValue.equals("transform")) {
344 Transform = Value->getValue(ValueStorage)
    [all...]
  /external/pdfium/core/src/fxge/dib/
dib_int.h 30 inline void Transform(int x, int y, int& x1, int& y1) {

Completed in 603 milliseconds

1 2 3 4 5 6