Searched refs:inverse (Results 26 - 50 of 126) sorted by relevance

123456

/external/webkit/Source/WebCore/svg/
H A DSVGMatrix.h106 SVGMatrix inverse(ExceptionCode& ec) const function in class:WebCore::SVGMatrix
108 AffineTransform transform = AffineTransform::inverse();
H A DSVGMatrix.idl36 SVGMatrix inverse()
/external/guava/guava/src/com/google/common/collect/
H A DImmutableBiMap.java27 * not permit null keys or values. An {@code ImmutableBiMap} and its inverse
220 * <p>The inverse of an {@code ImmutableBiMap} is another
224 public abstract ImmutableBiMap<V, K> inverse(); method in class:ImmutableBiMap
231 return inverse().containsKey(value);
251 return inverse().keySet();
291 @Override public ImmutableBiMap<Object, Object> inverse() { method in class:ImmutableBiMap.EmptyBiMap
308 * for keeping the bimap and its inverse in sync during serialization, the way
H A DImmutableListMultimap.java286 private transient ImmutableListMultimap<V, K> inverse; field in class:ImmutableListMultimap
291 * <p>Because an inverse of a list multimap can contain multiple pairs with the same key and
298 public ImmutableListMultimap<V, K> inverse() { method in class:ImmutableListMultimap
299 ImmutableListMultimap<V, K> result = inverse;
300 return (result == null) ? (inverse = invert()) : result;
309 invertedMultimap.inverse = this;
H A DImmutableSetMultimap.java368 private transient ImmutableSetMultimap<V, K> inverse; field in class:ImmutableSetMultimap
373 * <p>Because an inverse of a set multimap cannot contain multiple pairs with the same key and
380 public ImmutableSetMultimap<V, K> inverse() { method in class:ImmutableSetMultimap
381 ImmutableSetMultimap<V, K> result = inverse;
382 return (result == null) ? (inverse = invert()) : result;
391 invertedMultimap.inverse = this;
H A DRegularImmutableTable.java325 columnBuilder.put(rowKeyToIndex.inverse().get(i), value);
346 rowMapBuilder.put(rowKeyToIndex.inverse().get(r), value);
349 columnMapBuilder.put(columnKeyToIndex.inverse().get(c),
395 rowBuilder.put(columnKeyToIndex.inverse().get(r), value);
416 columnMapBuilder.put(columnKeyToIndex.inverse().get(c), value);
419 rowMapBuilder.put(rowKeyToIndex.inverse().get(r),
H A DMapConstraints.java343 * inverse BiMap could occur after inverse()'s read of the field's initial
344 * null value, leading inverse() to overwrite the existing inverse with a
351 volatile BiMap<V, K> inverse; field in class:MapConstraints.ConstrainedBiMap
353 ConstrainedBiMap(BiMap<K, V> delegate, @Nullable BiMap<V, K> inverse, argument
356 this.inverse = inverse;
370 public BiMap<V, K> inverse() { method in class:MapConstraints.ConstrainedBiMap
371 if (inverse
[all...]
H A DSynchronized.java1109 private transient BiMap<V, K> inverse; field in class:Synchronized.SynchronizedBiMap
1112 @Nullable BiMap<V, K> inverse) {
1114 this.inverse = inverse;
1138 public BiMap<V, K> inverse() { method in class:Synchronized.SynchronizedBiMap
1140 if (inverse == null) {
1141 inverse
1142 = new SynchronizedBiMap<V, K>(delegate().inverse(), mutex, this);
1144 return inverse;
1111 SynchronizedBiMap(BiMap<K, V> delegate, @Nullable Object mutex, @Nullable BiMap<V, K> inverse) argument
/external/webkit/Source/WebCore/rendering/
H A DPaintInfo.h93 rect = localToAncestorTransform.inverse().mapRect(rect);
/external/webkit/Source/WebCore/svg/graphics/filters/
H A DSVGFilter.h45 virtual FloatPoint mapAbsolutePointToLocalPoint(const FloatPoint& point) const { return m_absoluteTransform.inverse().mapPoint(point); }
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableListMultimap.java281 private transient ImmutableListMultimap<V, K> inverse; field in class:ImmutableListMultimap
286 * <p>Because an inverse of a list multimap can contain multiple pairs with the same key and
293 public ImmutableListMultimap<V, K> inverse() { method in class:ImmutableListMultimap
294 ImmutableListMultimap<V, K> result = inverse;
295 return (result == null) ? (inverse = invert()) : result;
304 invertedMultimap.inverse = this;
H A DImmutableSetMultimap.java363 private transient ImmutableSetMultimap<V, K> inverse; field in class:ImmutableSetMultimap
368 * <p>Because an inverse of a set multimap cannot contain multiple pairs with the same key and
375 public ImmutableSetMultimap<V, K> inverse() { method in class:ImmutableSetMultimap
376 ImmutableSetMultimap<V, K> result = inverse;
377 return (result == null) ? (inverse = invert()) : result;
386 invertedMultimap.inverse = this;
H A DSynchronized.java1096 private transient BiMap<V, K> inverse; field in class:Synchronized.SynchronizedBiMap
1099 @Nullable BiMap<V, K> inverse) {
1101 this.inverse = inverse;
1125 public BiMap<V, K> inverse() { method in class:Synchronized.SynchronizedBiMap
1127 if (inverse == null) {
1128 inverse
1129 = new SynchronizedBiMap<V, K>(delegate().inverse(), mutex, this);
1131 return inverse;
1098 SynchronizedBiMap(BiMap<K, V> delegate, @Nullable Object mutex, @Nullable BiMap<V, K> inverse) argument
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableListMultimapTest.java417 ImmutableListMultimap.<String, Integer>of().inverse());
420 ImmutableListMultimap.of("one", 1).inverse());
423 ImmutableListMultimap.of("one", 1, "two", 2).inverse());
425 ImmutableListMultimap.of("of", 'o', "of", 'f', "to", 't', "to", 'o').inverse(),
429 ImmutableListMultimap.of("foo", 'f', "foo", 'o', "foo", 'o').inverse());
442 assertSame(multimap.inverse(), multimap.inverse());
443 assertSame(multimap, multimap.inverse().inverse());
H A DImmutableSetMultimapTest.java423 ImmutableSetMultimap.<String, Integer>of().inverse());
426 ImmutableSetMultimap.of("one", 1).inverse());
429 ImmutableSetMultimap.of("one", 1, "two", 2).inverse());
432 ImmutableSetMultimap.of("of", 'o', "of", 'f', "to", 't', "to", 'o').inverse());
438 assertSame(multimap.inverse(), multimap.inverse());
439 assertSame(multimap, multimap.inverse().inverse());
H A DMapsTest.java612 Functions.forMap(INT_TO_STRING_MAP.inverse()));
624 Functions.forMap(INT_TO_STRING_MAP.inverse()));
647 Functions.forMap(INT_TO_STRING_MAP.inverse()));
654 Functions.forMap(INT_TO_STRING_MAP.inverse()));
812 /* No aliasing on inverse operations. */
813 assertSame(unmod.inverse(), unmod.inverse());
814 assertSame(unmod, unmod.inverse().inverse());
819 assertEquals(true, unmod.inverse()
[all...]
/external/skia/src/gpu/
H A DGrTesselatedPathRenderer.cpp307 const GrMatrix& inverse,
344 inverse.mapPoints(&vertices[i], 1);
471 GrMatrix inverse, matrix = drawState->getViewMatrix(); local
472 drawState->getViewInverse(&inverse);
474 count = computeEdgesAndIntersect(matrix, inverse, base, count, &edges, 0.0f);
509 GrMatrix inverse, matrix = drawState->getViewMatrix(); local
510 if (!drawState->getViewInverse(&inverse)) {
529 int newCount = computeEdgesAndIntersect(matrix, inverse, &btess.contourPoints()[i], count, &edges, 1.0f);
306 computeEdgesAndIntersect(const GrMatrix& matrix, const GrMatrix& inverse, GrPoint* vertices, size_t numVertices, GrEdgeArray* edges, float sign) argument
H A DGrTextContext.cpp91 GrMatrix inverse; local
93 if (fExtMatrix.invert(&inverse)) {
94 inverse.mapRect(&r);
110 We need to call preConcatMatrix with our viewmatrix's inverse, for each
111 texture and mask in the paint. However, computing the inverse can be
113 two loops are written such that we only compute the inverse (once) if we
/external/speex/libspeex/
H A Dkiss_fft.c41 if (!st->inverse) {
101 if (st->inverse)
185 if (!st->inverse) {
238 if (!st->inverse) {
300 if (!st->inverse) {
480 st->inverse = inverse_fft;
484 if (!st->inverse)
492 if (st->inverse)
H A Dkiss_fftr.c87 if ( st->substate->inverse) {
141 if (st->substate->inverse == 0) {
180 if ( st->substate->inverse) {
266 if (st->substate->inverse == 0) {
/external/webkit/Source/WebCore/css/
H A DWebKitCSSMatrix.cpp96 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::inverse(ExceptionCode& ec) const function in class:WebCore::WebKitCSSMatrix
103 return WebKitCSSMatrix::create(m_matrix.inverse());
H A DWebKitCSSMatrix.idl66 // Return the inverse of this matrix. Throw an exception if the matrix is not invertible
67 [Immutable] WebKitCSSMatrix inverse() raises (DOMException);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DSurface.cpp389 SkMatrix inverse; local
390 inverse.reset();
391 matrix.invert(&inverse);
394 inverse.postConcat(canvasMatrix);
395 canvas->setMatrix(inverse);
/external/llvm/include/llvm/Support/
H A DConstantRange.h249 /// inverse - Return a new range that is the logical not of the current set.
251 ConstantRange inverse() const;
/external/srec/srec/include/
H A Dpre_desc.h156 imeldata **invmat; /* inverse transformation matrix */
157 int inv_shift; /* inverse Imelda scale factor (in shifts) */
158 covdata **inverse; /* inverse linear transformation matrix, PMC or RN */ member in struct:__anon12429
184 imeldata **pmc_fixinv; /* inverse ENC matrix */
186 covdata **pmc_inverse; /* inverse ENC matrix in float */

Completed in 2424 milliseconds

123456