Searched defs:left (Results 126 - 150 of 1025) sorted by relevance

1234567891011>>

/external/guava/guava-tests/test/com/google/common/primitives/
H A DCharArrayAsListTest.java115 private static Character[] concat(Character[] left, Character[] right) { argument
116 Character[] result = new Character[left.length + right.length];
117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
H A DDoubleArrayAsListTest.java115 private static Double[] concat(Double[] left, Double[] right) { argument
116 Double[] result = new Double[left.length + right.length];
117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
H A DFloatArrayAsListTest.java115 private static Float[] concat(Float[] left, Float[] right) { argument
116 Float[] result = new Float[left.length + right.length];
117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
H A DIntArrayAsListTest.java116 private static Integer[] concat(Integer[] left, Integer[] right) { argument
117 Integer[] result = new Integer[left.length + right.length];
118 System.arraycopy(left, 0, result, 0, left.length);
119 System.arraycopy(right, 0, result, left.length, right.length);
H A DLongArrayAsListTest.java115 private static Long[] concat(Long[] left, Long[] right) { argument
116 Long[] result = new Long[left.length + right.length];
117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
H A DShortArrayAsListTest.java115 private static Short[] concat(Short[] left, Short[] right) { argument
116 Short[] result = new Short[left.length + right.length];
117 System.arraycopy(left, 0, result, 0, left.length);
118 System.arraycopy(right, 0, result, left.length, right.length);
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestQ3.java62 private boolean left=false,right=false,up=false,down=false; field in class:TestQ3
128 if(left)
157 left=true;
159 left=false;
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
H A DHelloCollision.java66 private boolean left = false, right = false, up = false, down = false; field in class:HelloCollision
147 if (value) { left = true; } else { left = false; }
171 if (left) { walkDirection.addLocal(camLeft); }
H A DHelloTerrainCollision.java70 private boolean left = false, right = false, up = false, down = false; field in class:HelloTerrainCollision
192 if (value) { left = true; } else { left = false; }
216 if (left) { walkDirection.addLocal(camLeft); }
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
H A DTerrainGridTest.java177 private boolean left; field in class:TerrainGridTest
187 TerrainGridTest.this.left = true;
189 TerrainGridTest.this.left = false;
221 if (this.left) {
H A DTerrainGridTileLoaderTest.java174 private boolean left; field in class:TerrainGridTileLoaderTest
184 TerrainGridTileLoaderTest.this.left = true;
186 TerrainGridTileLoaderTest.this.left = false;
218 if (this.left) {
/external/openfst/src/lib/
H A Dsymbol-table-ops.cc21 SymbolTable *MergeSymbolTable(const SymbolTable &left, const SymbolTable &right, argument
24 // copied version of SymbolTable of left or right if either symbol table is
26 SymbolTable *merged = new SymbolTable("merge_" + left.Name() + "_" +
28 // copy everything from the left symbol table
30 SymbolTableIterator liter(left);
61 // Symbol doesn't exist from left
76 return left.Copy();
/external/qemu/distrib/zlib-1.2.3/
H A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
270 left = (int)(1 << curr);
272 left -= count[curr + drop];
273 if (left <= 0) break;
275 left <<
[all...]
/external/skia/src/core/
H A DSkBlitter_Sprite.cpp21 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, argument
24 fLeft = left;
55 int left, int top,
60 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap,
84 blitter->setup(device, left, top, paint);
52 ChooseSprite( const SkBitmap& device, const SkPaint& paint, const SkBitmap& source, int left, int top, void* storage, size_t storageSize) argument
H A DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
22 if (left < fLeft) fLeft = left;
133 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, argument
135 if (left < right && top < bottom && !this->isEmpty() && // check for empties
136 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
138 if (fLeft < left) fLeft = left;
167 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/skia/src/gpu/
H A DGrRenderTarget.cpp16 bool GrRenderTarget::readPixels(int left, int top, int width, int height, argument
27 left, top, width, height,
32 void GrRenderTarget::writePixels(int left, int top, int width, int height, argument
43 left, top, width, height,
/external/skia/tests/
H A DPathOpsCubicLineIntersectionTest.cpp99 double left[3] = { line.isLeft(prev), line.isLeft(sect), line.isLeft(cubic[3]) }; local
100 SkDebugf("cubic=(%1.9g, %1.9g, %1.9g)\n", left[0], left[1], left[2]);
H A DPathOpsLineIntersectionTest.cpp100 double left = SkTMin(line1[0].fX, line1[1].fX); local
103 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
107 double left = SkTMin(line2[0].fX, line2[1].fX); local
110 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
143 double left = SkTMin(line1[0].fX, line1[1].fX); local
146 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
152 double left local
[all...]
/external/smack/src/org/jivesoftware/smackx/muc/
H A DDefaultParticipantStatusListener.java37 public void left(String participant) { method in class:DefaultParticipantStatusListener
H A DParticipantStatusListener.java42 * Called when a room occupant has left the room on its own. This means that the occupant was
45 * @param participant the participant that has left the room on its own.
48 public abstract void left(String participant); method in interface:ParticipantStatusListener
/external/valgrind/main/memcheck/tests/
H A Dmempool.c26 int size, left; member in struct:_pool
47 p->size = p->left = SUPERBLOCK_SIZE;
102 p->left -= size + (REDZONE_SIZE*2);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha1-pbkdf2.c77 size_t left = buflen, plen; local
80 while (left > 0) {
85 plen = left > SHA1_MAC_LEN ? SHA1_MAC_LEN : left;
88 left -= plen;
/external/wpa_supplicant_8/src/crypto/
H A Dsha1-pbkdf2.c77 size_t left = buflen, plen; local
80 while (left > 0) {
85 plen = left > SHA1_MAC_LEN ? SHA1_MAC_LEN : left;
88 left -= plen;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha1-pbkdf2.c77 size_t left = buflen, plen; local
80 while (left > 0) {
85 plen = left > SHA1_MAC_LEN ? SHA1_MAC_LEN : left;
88 left -= plen;
/external/zlib/src/contrib/infback9/
H A Dinftree9.c46 int left; /* number of prefix codes available */ local
125 left = 1;
127 left <<= 1;
128 left -= count[len];
129 if (left < 0) return -1; /* over-subscribed */
131 if (left > 0 && (type == CODES || max != 1))
263 left = (int)(1 << curr);
265 left -= count[curr + drop];
266 if (left <= 0) break;
268 left <<
[all...]

Completed in 510 milliseconds

1234567891011>>