Searched refs:flip (Results 1 - 25 of 132) sorted by relevance

123456

/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java55 public abstract boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
58 public float getMinXPosition(FlipInfo flip) { argument
60 if (flip != null && flip.flipX) {
62 value = flip.parentWidth - maxX;
69 public float getMaxXPosition(FlipInfo flip) { argument
71 if (flip != null && flip.flipX) {
73 value = flip.parentWidth - minX;
80 public float getMinYPosition(FlipInfo flip) { argument
91 getMaxYPosition(FlipInfo flip) argument
[all...]
H A DSphereCollisionVolume.java85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
94 offsetByCenter(mWorkspaceVector, mCenter, flip);
159 private static void offsetByCenter(Vector2 position, Vector2 center, FlipInfo flip) { argument
160 if (flip != null && (flip.flipX || flip.flipY)) {
161 if (flip.flipX) {
162 position.x += flip.parentWidth - center.x;
167 if (flip
[all...]
H A DAABoxCollisionVolume.java73 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
75 final float left = getMinXPosition(flip) + position.x;
76 final float right = getMaxXPosition(flip) + position.x;
77 final float bottom = getMinYPosition(flip) + position.y;
78 final float top = getMaxYPosition(flip) + position.y;
H A DLaunchProjectileComponent.java136 boolean flip = false;
139 flip = true;
148 GameObject object = factory.spawn(mObjectTypeToSpawn, x, y, flip);
159 mWorkingVector.x *= flip ? -mVelocityX : mVelocityX;
/external/guava/guava/src/com/google/common/collect/
H A DBoundType.java33 BoundType flip() {
42 BoundType flip() {
54 abstract BoundType flip(); method in class:BoundType
/external/libcxx/test/std/utilities/template.bitset/bitset.members/
H A Dflip_one.pass.cpp10 // test bitset<N>& flip(size_t pos);
34 v.flip(50);
39 v.flip(50);
41 v.flip(50);
H A Dflip_all.pass.cpp10 // test bitset<N>& flip();
33 v2.flip();
H A Dop_eq_eq.pass.cpp39 v2[N/2].flip();
H A Dindex.pass.cpp50 r.flip();
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DValPixConverter.java29 public static float valToPix(double val, double min, double max, float lengthPix, boolean flip) { argument
38 if(flip) {
60 * @param flip True if the axis should be reversed before calculated. This is the case
64 public static double pixToVal(float pix, double min, double max, float lengthPix, boolean flip) { argument
73 if(flip) {
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInts.java54 static int flip(int value) { method in class:UnsignedInts
68 return Ints.compare(flip(a), flip(b));
88 int min = flip(array[0]);
90 int next = flip(array[i]);
95 return flip(min);
108 int max = flip(array[0]);
110 int next = flip(array[i]);
115 return flip(max);
H A DUnsignedLongs.java59 * longs, that is, {@code a <= b} as unsigned longs if and only if {@code flip(a) <= flip(b)}
62 private static long flip(long a) { method in class:UnsignedLongs
76 return Longs.compare(flip(a), flip(b));
89 long min = flip(array[0]);
91 long next = flip(array[i]);
96 return flip(min);
109 long max = flip(array[0]);
111 long next = flip(arra
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/util/
H A DUriEncoderTest.java35 buff.flip();
43 buff.flip();
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
H A DConsoleActivity.java95 protected ViewFlipper flip = null; field in class:ConsoleActivity
151 flip.removeAllViews();
210 synchronized (flip) {
214 if (flip.getDisplayedChild() == flipIndex) {
217 flip.removeViewAt(flipIndex);
223 final int numChildren = flip.getChildCount();
224 if (flip.getDisplayedChild() >= numChildren && numChildren > 0) {
225 flip.setDisplayedChild(numChildren - 1);
230 if (flip.getChildCount() == 0) {
237 View view = flip
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_pixel_copy.c89 bool flip = false; local
182 flip = !flip;
188 flip = !flip;
199 width, height, flip,
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_pixel_copy.c89 bool flip = false; local
182 flip = !flip;
188 flip = !flip;
199 width, height, flip,
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_pixel_copy.c89 bool flip = false; local
182 flip = !flip;
188 flip = !flip;
199 width, height, flip,
/external/opencv3/modules/core/src/
H A Dopencl_kernels_core.cpp1341 const struct ProgramEntry flip={"flip", member in namespace:cv::ocl::core
1458 ProgramSource flip_oclsrc(flip.programStr);
H A Dopencl_kernels_core.hpp24 extern const struct ProgramEntry flip;
/external/minijail/
H A Dbpf.c131 int flip = 0; local
140 flip = 0;
144 flip = 1;
148 flip = 0;
159 unsigned char jt = flip ? NEXT : SKIP;
160 unsigned char jf = flip ? SKIP : NEXT;
/external/guava/guava/src/com/google/common/hash/
H A DAbstractStreamingHashFunction.java139 bb.flip();
230 buffer.flip();
248 buffer.flip();
/external/opencv3/modules/cudaarithm/src/
H A Dcore.cpp58 void cv::cuda::flip(InputArray, OutputArray, int, Stream&) { throw_no_cuda(); } function in class:cv::cuda
67 // flip
84 typedef NppStatus (*func_t)(const npp_t* pSrc, int nSrcStep, npp_t* pDst, int nDstStep, NppiSize oROI, NppiAxis flip);
109 void cv::cuda::flip(InputArray _src, OutputArray _dst, int flipCode, Stream& stream)
/external/llvm/unittests/ADT/
H A DBitVectorTest.cpp55 Inv.flip();
65 Vec.flip();
119 Vec.flip(60);
122 Vec.flip(60);
133 Vec.flip();
144 Vec.flip();
160 Vec.flip();
168 Inv = TypeParam().flip();
/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.h77 bool flip();
/external/autotest/scheduler/
H A Dquery_managers.py225 def _process_many2many_dict(self, rows, flip=False):
229 if flip:
239 def _get_many2many_dict(self, query, id_list, flip=False):
244 return self._process_many2many_dict(rows, flip)
315 hosts_to_labels = self._process_many2many_dict(rows, flip=True)

Completed in 2596 milliseconds

123456