HomeSort by relevance Sort by last modified time
    Searched defs:transform (Results 276 - 300 of 572) sorted by null

<<11121314151617181920>>

  /external/droiddriver/src/com/google/android/droiddriver/finders/
ByXPath.java 37 import javax.xml.transform.OutputKeys;
38 import javax.xml.transform.Transformer;
39 import javax.xml.transform.TransformerFactory;
40 import javax.xml.transform.dom.DOMSource;
41 import javax.xml.transform.stream.StreamResult;
176 transformer.transform(new DOMSource(uiElement.getDomNode()), new StreamResult(bos));
179 Logs.log(Log.ERROR, e, "Failed to transform node");
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedUpdateEntryTask.java 22 import javax.xml.transform.Transformer;
23 import javax.xml.transform.TransformerException;
24 import javax.xml.transform.dom.DOMSource;
25 import javax.xml.transform.stream.StreamResult;
144 transformer.transform(new DOMSource(newNode),new StreamResult(System.out));
153 transformer.transform(new DOMSource(document),new StreamResult(new PrintStream(file)));
252 transformer.transform(new DOMSource(getParentNode(document,aNode,null,NS)), new StreamResult(System.out)); //$NON-NLS-1$
  /external/guava/guava/src/com/google/common/collect/
Collections2.java 257 * {@link Lists#transform}. If only an {@code Iterable} is available, use
258 * {@link Iterables#transform}.
260 public static <F, T> Collection<T> transform(Collection<F> fromCollection, method in class:Collections2
284 return Iterators.transform(fromCollection.iterator(), function);
321 sb, Iterables.transform(collection, new Function<Object, Object>() {
Lists.java 322 * <p>Since functions are not reversible, the transform is one-way and new
341 * {@link Collections2#transform} or {@link Iterables#transform}.
343 public static <F, T> List<T> transform( method in class:Lists
353 * @see Lists#transform
435 * @see Lists#transform
RegularImmutableMap.java 233 @Override K transform(Entry<K, V> element) { method in class:RegularImmutableMap.KeySet
  /external/guava/guava-tests/test/com/google/common/math/
MathTesting.java 126 Iterables.concat(Iterables.transform(POSITIVE_INTEGER_CANDIDATES, NEGATE_INT),
149 longValues.addAll(Iterables.transform(POSITIVE_INTEGER_CANDIDATES, TO_LONG));
160 Iterables.concat(Iterables.transform(POSITIVE_LONG_CANDIDATES, NEGATE_LONG),
182 bigValues.addAll(Iterables.transform(POSITIVE_LONG_CANDIDATES, TO_BIGINTEGER));
196 Iterables.transform(POSITIVE_BIGINTEGER_CANDIDATES, NEGATE_BIGINT);
  /external/icu4c/common/
brkeng.cpp 312 const int32_t transform = indexes[DictionaryData::IX_TRANSFORM]; local
314 m = new BytesDictionaryMatcher(characters, transform, file);
  /external/icu4c/tools/gendict/
gendict.cpp 95 { "transform", NULL, NULL, NULL, '\1', UOPT_REQUIRES_ARG, 0}, /* 8 */
124 "\t--transform the kind of transform to use (eg --transform offset-40A3,\n"
125 "\t which specifies an offset transform with constant 0x40A3)\n",
177 char transform(UChar32 c, UErrorCode &status) { function in class:DataDict
183 fprintf(stderr, "Codepoint U+%04lx out of range for --transform offset-%04lx!\n",
188 } else { // no such transform type
190 return (char)c; // it should be noted this transform type will not generally work
194 void transform(const UnicodeString &word, CharString &buf, UErrorCode &errorCode) function in class:DataDict
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_aapoint.c 129 * TGSI declaration transform callback.
164 * TGSI instruction transform callback.
499 struct aa_transform_context transform; local
508 memset(&transform, 0, sizeof(transform));
509 transform.colorOutput = -1;
510 transform.maxInput = -1;
511 transform.maxGeneric = -1;
512 transform.colorTemp = -1;
513 transform.tmp0 = -1
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_pstipple.c 193 * TGSI declaration transform callback.
248 * TGSI instruction transform callback.
410 struct pstip_transform_context transform; local
426 memset(&transform, 0, sizeof(transform));
427 transform.wincoordInput = -1;
428 transform.maxInput = -1;
429 transform.texTemp = -1;
430 transform.firstInstruction = TRUE;
431 transform.coordOrigin = TGSI_FS_COORD_ORIGIN_UPPER_LEFT
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_composite.h 95 float transform[9]; member in struct:xa_picture
  /external/openssl/crypto/dso/
dso_dlfcn.c 374 int len, rsize, transform; local
378 transform = (strstr(filename, "/") == NULL);
379 if(transform)
393 if(transform)
  /external/pixman/test/
affine-test.c 31 pixman_transform_t transform; local
98 pixman_transform_init_identity (&transform);
107 pixman_transform_init_scale (&transform, scale_x, scale_y);
116 pixman_transform_translate (&transform, NULL, translate_x, translate_y);
149 pixman_transform_rotate (&transform, NULL, c, s);
150 pixman_transform_translate (&transform, NULL, tx, ty);
162 transform.matrix[i][j] ^= 1 << bitnum;
168 pixman_image_set_transform (src_img, &transform);
201 transform.matrix[r][c]
204 printf ("op=%s, repeat=%d, transform=\n"
    [all...]
scaling-test.c 56 pixman_transform_t transform; local
168 pixman_transform_init_scale (&transform, scale_x, scale_y);
169 pixman_transform_translate (&transform, NULL, translate_x, translate_y);
170 pixman_image_set_transform (src_img, &transform);
179 pixman_transform_init_scale (&transform, mask_scale_x, mask_scale_y);
180 pixman_transform_translate (&transform, NULL, mask_translate_x, mask_translate_y);
181 pixman_image_set_transform (mask_img, &transform);
  /frameworks/av/services/camera/libcameraservice/api2/
CameraDeviceClient.cpp 373 * Set the stream transform flags to automatically
376 int32_t transform = 0; local
377 res = getRotationTransformLocked(&transform);
384 res = mDevice->setStreamTransform(streamId, transform);
386 ALOGE("%s: Failed to set stream transform (stream id %d)",
619 status_t CameraDeviceClient::getRotationTransformLocked(int32_t* transform) {
622 if (transform == NULL) {
623 ALOGW("%s: null transform", __FUNCTION__);
627 *transform = 0;
637 int32_t& flags = *transform;
    [all...]
  /frameworks/base/libs/hwui/
SkiaShader.cpp 412 // Apply this compose shader's local transform and pass it down to
413 // the child shaders. They will in turn apply their local transform
415 mat4 transform; local
416 computeScreenSpaceMatrix(transform, modelView);
418 mFirst->setupProgram(program, transform, snapshot, textureUnit);
419 mSecond->setupProgram(program, transform, snapshot, textureUnit);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 119 * The transform is applied by multiplying each point (x, y, 1) by the matrix.
130 * Returns the transformation matrix to transform the source Quad to the target Quad.
137 // We only use the first 3 points as they sufficiently specify the transform
138 Matrix transform = new Matrix(); local
139 transform.setPolyToPoly(source.asCoords(), 0, target.asCoords(), 0, 3);
140 return transform;
197 * Transform the quad with the given transformation matrix.
199 * The transform is applied by multiplying each point (x, y, 1) by the matrix.
  /frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
TransformTestActivity.java 17 package com.google.android.test.transform;
  /frameworks/native/libs/input/
Input.cpp 423 // Apply perspective transform like Skia.
436 // Construct and transform a vector oriented at the specified clockwise angle from vertical.
454 void MotionEvent::transform(const float matrix[9]) { function in class:android::MotionEvent
469 // can transform orientation vectors.
  /frameworks/native/opengl/tests/hwc/
hwcRects.cpp 40 * transform: none | fliph | flipv | rot90 | rot180 | rot270
51 * YV12 [50, 80, 200, 300] transform: none \
146 Rectangle() : format(defaultFormat), transform(defaultTransform),
153 uint32_t transform; member in class:Rectangle
322 layer->transform = it->transform;
418 // Transform
419 if (attrName == "transform:") { // Transform
424 rect.transform = 0
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
VirtualDisplaySurface.cpp 185 NATIVE_WINDOW_SCALING_MODE_FREEZE, 0 /* transform */,
349 uint32_t transform; local
352 &transform, &async, &mFbFence);
  /frameworks/native/services/surfaceflinger/
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...]
  /hardware/qcom/display/msm8960/liboverlay/
overlay.cpp 171 utils::eTransform transform = local
173 mPipeBook[index].mPipe->setTransform(transform);
  /hardware/qcom/display/msm8974/liboverlay/
overlay.cpp 192 utils::eTransform transform = local
194 mPipeBook[index].mPipe->setTransform(transform);
  /hardware/qcom/display/msm8x26/liboverlay/
overlay.cpp 171 utils::eTransform transform = local
173 mPipeBook[index].mPipe->setTransform(transform);

Completed in 552 milliseconds

<<11121314151617181920>>