Searched defs:transformValues (Results 1 - 22 of 22) sorted by relevance

/external/skia/src/gpu/
H A DGrPathRendering.cpp124 const float transformValues[],
135 transformValues, transformType, count);
117 drawPaths(const GrPipeline& pipeline, const GrPrimitiveProcessor& primProc, const GrStencilSettings& stencilPassSettings, const GrPathRange* pathRange, const void* indices, PathIndexType indexType, const float transformValues[], PathTransformType transformType, int count) argument
/external/skqp/src/gpu/
H A DGrPathRendering.cpp134 const float transformValues[],
145 transformValues, transformType, count);
127 drawPaths(const GrPipeline& pipeline, const GrPrimitiveProcessor& primProc, const GrStencilSettings& stencilPassSettings, const GrPathRange* pathRange, const void* indices, PathIndexType indexType, const float transformValues[], PathTransformType transformType, int count) argument
/external/skia/src/gpu/gl/
H A DGrGLPathRendering.cpp178 PathIndexType indexType, const float transformValues[],
180 SkDEBUGCODE(verify_floats(transformValues, gXformType2ComponentCount[transformType] * count));
200 transformValues));
205 gXformType2GLType[transformType], transformValues));
210 gXformType2GLType[transformType], transformValues));
174 onDrawPaths(const GrPipeline& pipeline, const GrPrimitiveProcessor& primProc, const GrStencilSettings& stencilPassSettings, const GrPathRange* pathRange, const void* indices, PathIndexType indexType, const float transformValues[], PathTransformType transformType, int count) argument
H A DGrGLTestInterface.h196 virtual GrGLvoid stencilFillPathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
197 virtual GrGLvoid stencilStrokePathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
200 virtual GrGLvoid coverFillPathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
201 virtual GrGLvoid coverStrokePathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat* transformValues) {} argument
204 virtual GrGLvoid stencilThenCoverFillPathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
205 virtual GrGLvoid stencilThenCoverStrokePathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
/external/skqp/src/gpu/gl/
H A DGrGLPathRendering.cpp178 PathIndexType indexType, const float transformValues[],
180 SkDEBUGCODE(verify_floats(transformValues, gXformType2ComponentCount[transformType] * count));
200 transformValues));
205 gXformType2GLType[transformType], transformValues));
210 gXformType2GLType[transformType], transformValues));
174 onDrawPaths(const GrPipeline& pipeline, const GrPrimitiveProcessor& primProc, const GrStencilSettings& stencilPassSettings, const GrPathRange* pathRange, const void* indices, PathIndexType indexType, const float transformValues[], PathTransformType transformType, int count) argument
H A DGrGLTestInterface.h196 virtual GrGLvoid stencilFillPathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
197 virtual GrGLvoid stencilStrokePathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
200 virtual GrGLvoid coverFillPathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
201 virtual GrGLvoid coverStrokePathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat* transformValues) {} argument
204 virtual GrGLvoid stencilThenCoverFillPathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLenum fillMode, GrGLuint mask, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
205 virtual GrGLvoid stencilThenCoverStrokePathInstanced(GrGLsizei numPaths, GrGLenum pathNameType, const GrGLvoid *paths, GrGLuint pathBase, GrGLint reference, GrGLuint mask, GrGLenum coverMode, GrGLenum transformType, const GrGLfloat *transformValues) {} argument
/external/guava/guava/src/com/google/common/collect/
H A DTables.java332 public static <R, C, V1, V2> Table<R, C, V2> transformValues( method in class:Tables
382 return Maps.transformValues(fromTable.row(rowKey), function);
386 return Maps.transformValues(fromTable.column(columnKey), function);
421 return Maps.transformValues(row, function);
424 return Maps.transformValues(fromTable.rowMap(), rowFunction);
431 return Maps.transformValues(column, function);
434 return Maps.transformValues(fromTable.columnMap(), columnFunction);
495 return Collections.unmodifiableMap(Maps.transformValues(super.columnMap(), wrapper));
526 return Collections.unmodifiableMap(Maps.transformValues(super.rowMap(), wrapper));
575 return Collections.unmodifiableSortedMap(Maps.transformValues(delegat
[all...]
H A DMultimaps.java516 Maps.transformValues(delegate.asMap(), new Function<Collection<V>, Collection<V>>() {
1076 * Multimaps.transformValues(multimap, square);
1107 public static <K, V1, V2> Multimap<K, V2> transformValues( method in class:Multimaps
1116 * multimap's entries. In contrast to {@link #transformValues}, this method's
1289 * ListMultimap<String, Double> transformed = Multimaps.transformValues(map,
1317 public static <K, V1, V2> ListMultimap<K, V2> transformValues( method in class:Multimaps
1328 * {@link #transformValues(ListMultimap, Function)}, this method's
H A DMaps.java1468 * Map<String, Double> transformed = Maps.transformValues(map, sqrt);
1492 public static <K, V1, V2> Map<K, V2> transformValues( method in class:Maps
1510 * Maps.transformValues(map, sqrt);
1536 public static <K, V1, V2> SortedMap<K, V2> transformValues( method in class:Maps
1583 public static <K, V1, V2> NavigableMap<K, V2> transformValues( method in class:Maps
1590 * entries. In contrast to {@link #transformValues}, this method's
1650 * sorted map's entries. In contrast to {@link #transformValues}, this
1709 * #transformValues}, this method's entry-transformation logic may
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMultimaps.java427 Maps.transformValues(delegate.asMap(), new Function<Collection<V>, Collection<V>>() {
987 * Multimaps.transformValues(multimap, square);
1018 public static <K, V1, V2> Multimap<K, V2> transformValues( method in class:Multimaps
1027 * multimap's entries. In contrast to {@link #transformValues}, this method's
1200 * ListMultimap<String, Double> transformed = Multimaps.transformValues(map,
1228 public static <K, V1, V2> ListMultimap<K, V2> transformValues( method in class:Multimaps
1239 * {@link #transformValues(ListMultimap, Function)}, this method's
H A DMaps.java1266 * Map<String, Double> transformed = Maps.transformValues(map, sqrt);
1290 public static <K, V1, V2> Map<K, V2> transformValues( method in class:Maps
1308 * Maps.transformValues(map, sqrt);
1334 public static <K, V1, V2> SortedMap<K, V2> transformValues( method in class:Maps
1341 * entries. In contrast to {@link #transformValues}, this method's
1401 * sorted map's entries. In contrast to {@link #transformValues}, this
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/dagger2/lib/
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 583 milliseconds