/external/chromium_org/content/renderer/pepper/ |
ppp_pdf.h | 28 // Requests that the plugin apply the given transform to its view. 29 void (*Transform)(PP_Instance instance, PP_PrivatePageTransformType type);
|
/external/chromium_org/ui/gfx/ |
transform.h | 23 // 4x4 transformation matrix. Transform is cheap and explicitly allows 25 class GFX_EXPORT Transform { 32 Transform() : matrix_(SkMatrix44::kIdentity_Constructor) {} 36 Transform(SkipInitialization) 38 Transform(const Transform& rhs) : matrix_(rhs.matrix_) {} 40 Transform(const Transform& lhs, const Transform& rhs) 42 // Constructs a transform from explicit 16 matrix elements. Element [all...] |
transform.cc | 8 #include "ui/gfx/transform.h" 45 Transform::Transform(SkMScalar col1row1, 83 Transform::Transform(SkMScalar col1row1, 98 void Transform::RotateAboutXAxis(double degrees) { 115 void Transform::RotateAboutYAxis(double degrees) { 134 void Transform::RotateAboutZAxis(double degrees) { 151 void Transform::RotateAbout(const Vector3dF& axis, double degrees) { 167 void Transform::Scale(SkMScalar x, SkMScalar y) { matrix_.preScale(x, y, 1); [all...] |
canvas.cc | 19 #include "ui/gfx/transform.h" 611 void Canvas::Transform(const gfx::Transform& transform) { 612 canvas_->concat(transform.matrix());
|
/external/chromium/third_party/libjingle/source/talk/base/ |
stringencode.h | 109 // Apply any suitable string transform (including the ones above) to an STL 112 typedef size_t (*Transform)(char * buffer, size_t buflen, 114 size_t transform(std::string& value, size_t maxlen, const std::string& source, 115 Transform t); 117 // Return the result of applying transform t to source. 118 std::string s_transform(const std::string& source, Transform t);
|
/external/chromium_org/courgette/ |
patcher_x86_32.h | 45 Status Transform(SourceStreamSet* corrected_parameters,
|
patch_generator_x86_32.h | 55 Status Transform(SourceStreamSet* corrected_parameters,
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/ |
CustomFilterParameter.h | 50 Transform
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
stringencode.h | 136 // Apply any suitable string transform (including the ones above) to an STL 139 typedef size_t (*Transform)(char * buffer, size_t buflen, 141 size_t transform(std::string& value, size_t maxlen, const std::string& source, 142 Transform t); 144 // Return the result of applying transform t to source. 145 std::string s_transform(const std::string& source, Transform t);
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
Transform.java | 29 public abstract class Transform extends SceneGraphBase { 30 Transform mParent; 31 ArrayList<Transform> mChildren; 36 public Transform() { 37 mChildren = new ArrayList<Transform>(); 41 public void appendChild(Transform t) { 61 Transform child = mChildren.get(i);
|
/external/chromium_org/cc/animation/ |
animation_curve.h | 11 #include "ui/gfx/transform.h" 29 enum CurveType { Color, Float, Transform, Filter, ScrollOffset }; 70 virtual gfx::Transform GetValue(double t) const = 0;
|
animation.h | 42 Transform = 0,
|
layer_animation_controller_unittest.cc | 18 #include "ui/gfx/transform.h" 426 // Create simple Transform animation. 435 curve.PassAs<AnimationCurve>(), 1, 0, Animation::Transform)); 443 EXPECT_EQ(gfx::Transform(), dummy_impl.transform()); 448 EXPECT_EQ(gfx::Transform(), start_transform_event->transform); 451 gfx::Transform expected_transform; 456 EXPECT_EQ(expected_transform, dummy_impl.transform()); 461 EXPECT_EQ(expected_transform, end_transform_event->transform); [all...] |
/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 72 // modify the transform 78 // transform data 80 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() { 176 vec2 Transform::transform(const vec2& v) const { function in class:android::Transform 184 vec3 Transform::transform(const vec3& v) const { function in class:android::Transform 193 vec2 Transform::transform(int x, int y) const function in class:android::Transform 203 Rect Transform::transform(const Rect& bounds) const function in class:android::Transform 224 Region Transform::transform(const Region& reg) const function in class:android::Transform [all...] |
/external/chromium_org/media/base/ |
channel_mixer.cc | 333 void ChannelMixer::Transform(const AudioBus* input, AudioBus* output) {
|
/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
AffineTransform.h | 47 typedef double Transform[6]; 172 void setMatrix(const Transform m) 175 memcpy(m_transform, m, sizeof(Transform)); 178 Transform m_transform;
|
/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/ppp/pppd/ |
md5.c | 51 static void Transform (); 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/chromium_org/third_party/skia/src/gpu/gl/ |
GrGLProgramEffects.h | 193 * Helper for setData(). Sets all the transform matrices for an effect. 197 struct Transform { 198 Transform() { fCurrentValue = SkMatrix::InvalidMatrix(); } 204 SkTArray<SkSTArray<2, Transform, true> > fTransforms; 269 * Helper for emitEffect(). Allocates texture units from the builder for each transform in an 282 * Helper for setData(). Sets the TexGen state for each transform in an effect.
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Transform.java | 45 public final class Transform implements Savable, Cloneable, java.io.Serializable { 49 public static final Transform IDENTITY = new Transform(); 55 public Transform(Vector3f translation, Quaternion rot){ 60 public Transform(Vector3f translation, Quaternion rot, Vector3f scale){ 65 public Transform(Vector3f translation){ 69 public Transform(Quaternion rot){ 73 public Transform(){ 82 public Transform setRotation(Quaternion rot) { 92 public Transform setTranslation(Vector3f trans) [all...] |
/external/skia/src/gpu/gl/ |
GrGLProgramEffects.h | 193 * Helper for setData(). Sets all the transform matrices for an effect. 197 struct Transform { 198 Transform() { fCurrentValue = SkMatrix::InvalidMatrix(); } 204 SkTArray<SkSTArray<2, Transform, true> > fTransforms; 269 * Helper for emitEffect(). Allocates texture units from the builder for each transform in an 282 * Helper for setData(). Sets the TexGen state for each transform in an effect.
|
/external/chromium_org/third_party/skia/src/sfnt/ |
SkOTTable_glyf.h | 156 union Transform { 181 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; 187 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; 193 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; 199 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; 201 } transform; member in struct:SkOTTableGlyphData::Composite::Component
|