HomeSort by relevance Sort by last modified time
    Searched refs:flip (Results 1 - 25 of 236) sorted by null

1 2 3 4 5 6 7 8 910

  /external/replicaisland/src/com/replica/replicaisland/
CollisionVolume.java 55 public abstract boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other,
58 public float getMinXPosition(FlipInfo flip) {
60 if (flip != null && flip.flipX) {
62 value = flip.parentWidth - maxX;
69 public float getMaxXPosition(FlipInfo flip) {
71 if (flip != null && flip.flipX) {
73 value = flip.parentWidth - minX;
80 public float getMinYPosition(FlipInfo flip) {
    [all...]
SphereCollisionVolume.java 85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other,
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) {
160 if (flip != null && (flip.flipX || flip.flipY)) {
161 if (flip.flipX) {
162 position.x += flip.parentWidth - center.x;
167 if (flip.flipY)
    [all...]
AABoxCollisionVolume.java 73 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other,
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;
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInts.java 50 static int flip(int value) { method in class:UnsignedInts
64 return Ints.compare(flip(a), flip(b));
84 int min = flip(array[0]);
86 int next = flip(array[i]);
91 return flip(min);
104 int max = flip(array[0]);
106 int next = flip(array[i]);
111 return flip(max);
UnsignedLongs.java 58 private static long flip(long a) { method in class:UnsignedLongs
72 return Longs.compare(flip(a), flip(b));
85 long min = flip(array[0]);
87 long next = flip(array[i]);
92 return flip(min);
105 long max = flip(array[0]);
107 long next = flip(array[i]);
112 return flip(max);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/
flip_one.pass.cpp 10 // test bitset<N>& flip(size_t pos);
34 v.flip(50);
39 v.flip(50);
41 v.flip(50);
flip_all.pass.cpp 10 // test bitset<N>& flip();
33 v2.flip();
op_eq_eq.pass.cpp 39 v2[N/2].flip();
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 89 bool flip = false; local
178 /* Flip dest Y if it's a window system framebuffer. */
182 flip = !flip;
185 /* Flip source Y if it's a window system framebuffer. */
188 flip = !flip;
199 width, height, flip,
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 89 bool flip = false; local
178 /* Flip dest Y if it's a window system framebuffer. */
182 flip = !flip;
185 /* Flip source Y if it's a window system framebuffer. */
188 flip = !flip;
199 width, height, flip,
  /libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/
ASCCharsetDecoderTest.java 51 // buffer.flip();
61 buffer.flip();
GBCharsetDecoderTest.java 56 buffer.flip();
UTFCharsetDecoderTest.java 56 buffer.flip();
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java 432 * @param flip Flip the loaded image by Y axis
437 public ByteBuffer readGrayscale2D(boolean flip, int totalSize) throws IOException {
452 if (flip) {
467 * @param flip Flip the image on the Y axis
472 public ByteBuffer readRGB2D(boolean flip, int totalSize) throws IOException {
508 if (flip) {
538 public ByteBuffer readDXT2D(boolean flip, int totalSize) throws IOException {
547 if (flip) {
    [all...]
TGALoader.java 85 boolean flip = ((TextureKey)info.getKey()).isFlipY();
89 Image img = load(in, flip);
104 * @param flip
105 * Flip the image vertically
112 public static Image load(InputStream in, boolean flip) throws IOException {
153 if ((imageDescriptor & 32) != 0) // bit 5 : if 1, flip top/bottom ordering
154 flip = !flip;
155 if ((imageDescriptor & 16) != 0) // bit 4 : if 1, flip left/right ordering
222 if (!flip)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
Grid.java 93 fpb.flip();
94 sib.flip();
  /external/chromium_org/chrome/browser/resources/options/chromeos/
change_picture_options.css 83 .camera.flip-x #user-image-preview-img {
106 .flip-x #user-image-stream-crop {
138 #flip-photo {
151 html[dir=rtl] #flip-photo {
156 /* "Flip photo" button is hidden during flip animation. */
157 .camera.online:not(.animation) #flip-photo,
158 .camera:not(.live):not(.animation) #flip-photo {
  /external/llvm/lib/CodeGen/
RegisterCoalescer.h 77 /// flip - Swap SrcReg and DstReg. Return false if swapping is impossible
79 bool flip();
  /frameworks/base/core/java/android/net/dhcp/
DhcpDeclinePacket.java 48 result.flip();
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 77 buffers[0].flip(); method
80 buffers[1].flip(); method
90 buffers[0].put("abcd".getBytes("US-ASCII")).flip(); method
91 buffers[1].put("ABCD".getBytes("US-ASCII")).flip(); method
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
PlaceholderAssets.java 44 tempData.put(imageData).flip();
67 bb.put((byte)0).flip();
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
MessageProtocol.java 75 buffer.flip();
156 current.flip();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
OrientationMenuAction.java 70 State flip = configuration.getNextDeviceState(current); local
71 String flipName = flip != null ? flip.getName() : current.getName();
73 String.format("Switch to %1$s", flipName), flip, false, true));
163 State state, boolean checked, boolean flip) {
171 setImageDescriptor(configuration.getOrientationImage(orientation, flip));
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_user_image.css 109 .camera.flip-x #user-image-preview-img {
138 .flip-x #user-image-stream-crop {
166 #flip-photo {
179 html[dir=rtl] #flip-photo {
184 /* "Flip photo" button is hidden during flip animation. */
185 .camera.online:not(.animation) #flip-photo {
  /packages/apps/Gallery2/jni/filters/
geometry.c 51 __inline__ void flip_fun(int flip, char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
52 int horiz = (flip & 1) != 0;
53 int vert = (flip & 2) != 0;
130 void JNIFUNCF(ImageFilterGeometry, nativeApplyFilterFlip, jobject src, jint srcWidth, jint srcHeight, jobject dst, jint dstWidth, jint dstHeight, jint flip) {
138 flip_fun(flip, source, srcWidth, srcHeight, destination, dstWidth, dstHeight);

Completed in 535 milliseconds

1 2 3 4 5 6 7 8 910