/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
Intersection.java | 49 minMax.set(x0, x0, 0);
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/event/ |
TouchEvent.java | 108 set(Type.IDLE, 0f, 0f, 0f, 0f); method 112 set(type, x, y, deltax, deltay); method 115 public void set(Type type) { method in class:TouchEvent 116 set(type, 0f, 0f, 0f, 0f); method 119 public void set(Type type, float x, float y, float deltax, float deltay) { method in class:TouchEvent
|
/external/jmonkeyengine/engine/src/core/com/jme3/material/ |
Technique.java | 117 needReload = defines.set(defineName, type, value); 192 newDefines.set(defineName, param.getVarType(), param.getValue());
|
TechniqueDef.java | 77 * is only set to the ambient light color on the first pass, future 78 * passes have it set to black. 120 * @param name The name of the technique, should be set to <code>null</code> 153 * Set the light mode 172 * Set the shadow mode. 262 * {@link DefineList#set(java.lang.String, com.jme3.shader.VarType, java.lang.Object) } 294 * {@link DefineList#set(java.lang.String, com.jme3.shader.VarType, java.lang.Object) } 303 presetDefines.set(defineName, type, value);
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
ColorRGBA.java | 38 * be between 0 and 1. If any value is set higher or lower than these
40 * than zero is set the value clamps to zero. If a value higher than 1 is
169 * <code>set</code> sets the RGBA values of this color. The values are then
178 public ColorRGBA set(float r, float g, float b, float a) {
method in class:ColorRGBA 187 * <code>set</code> sets the values of this color to those set by a parameter
190 * @param rgba ColorRGBA the color to set this color to.
193 public ColorRGBA set(ColorRGBA rgba) {
method in class:ColorRGBA 210 * are less than 0 they are set to zero. If any are more than 1 they are
211 * set to one. [all...] |
Matrix4f.java | 50 * storage order is column major. However, the get() and set() functions on float
69 * Constructor instantiates a new <code>Matrix</code> that is set to the
110 set(array, false);
method 114 * Constructor instantiates a new <code>Matrix</code> that is set to the
127 * matrix. If a null matrix is supplied, this matrix is set to the identity
161 Vector3f f = vars.vect1.set(direction);
162 Vector3f s = vars.vect2.set(f).crossLocal(up);
163 Vector3f u = vars.vect3.set(s).crossLocal(f);
203 // set(transMatrix);
211 * the matrix to set the values into. 452 public void set(int i, int j, float value) { method in class:Matrix4f 529 public void set(float[][] matrix) { method in class:Matrix4f 559 public Matrix4f set(Matrix4f matrix) { method in class:Matrix4f 586 public void set(float[] matrix) { method in class:Matrix4f 587 set(matrix, true); method 599 public void set(float[] matrix, boolean rowMajor) { method in class:Matrix4f [all...] |
Plane.java | 80 * and constant values are set at creation.
92 this.normal.set(normal);
106 this.normal.set(normal);
114 this.normal.set(x,y,z);
148 // return store.set(normal).multLocal(t).addLocal(point);
150 return store.set(normal).multLocal(t).addLocal(point);
162 store.set(normal).negateLocal().multLocal(d * 2f);
226 this.normal.set(normal);
241 normal.set(v2).subtractLocal(v1);
|
Vector2f.java | 79 * Creates a Vector2f with x and y set to 0. Equivalent to Vector2f(0,0). 97 * set the x and y values of the vector 105 public Vector2f set(float x, float y) { method in class:Vector2f 112 * set the x and y values of the vector from another vector 118 public Vector2f set(Vector2f vec) { method in class:Vector2f 435 * negated and set to a new vector.
|
Vector4f.java | 126 this.set(copy); 130 * <code>set</code> sets the x,y,z,w values of the vector based on passed 143 public Vector4f set(float x, float y, float z, float w) { method in class:Vector4f 152 * <code>set</code> sets the x,y,z values of the vector by copying the 159 public Vector4f set(Vector4f vect) { method in class:Vector4f 504 return store.set(x * vec.x, y * vec.y, z * vec.z, w * vec.w); 570 * negated and set to a new vector. 979 * which field index in this vector to set. 981 * to set to one of x, y, z or w. 985 public void set(int index, float value) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/ |
BillboardControl.java | 120 * rotate the billboard based on the type set 149 look.set(camera.getLocation()).subtractLocal( 154 xzp.set(look.x, 0, look.z); 166 orient.set(0, 0, xzp.z); 167 orient.set(0, 1, xzp.x * -look.y); 168 orient.set(0, 2, xzp.x * cosp); 169 orient.set(1, 0, 0); 170 orient.set(1, 1, cosp); 171 orient.set(1, 2, look.y); 172 orient.set(2, 0, -xzp.x) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Torus.java | 141 radialAxis.set(cosTheta, sinTheta, 0); 152 tempNormal.set(radialAxis).multLocal(cosPhi); 227 * Rebuilds this torus based on a new set of parameters.
|
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
SafeArrayList.java | 46 * <p>All modifications, including set() operations will cause a copy of the 63 * modification method. add() and set() are not supported on the iterator. 265 public E set(int index, E element) { method in class:SafeArrayList 266 return getBuffer().set(index, element); 394 public void set(E e) { method in class:SafeArrayList.ArrayIterator
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/ |
Converter.java | 95 newQuat.set(oldQuat.x, oldQuat.y, oldQuat.z, oldQuat.w); 140 return newQuaternion.set(x, y, z, w); 183 newMatrix.set(0, 0, oldMatrix.m00); 184 newMatrix.set(0, 1, oldMatrix.m01); 185 newMatrix.set(0, 2, oldMatrix.m02); 186 newMatrix.set(1, 0, oldMatrix.m10); 187 newMatrix.set(1, 1, oldMatrix.m11); 188 newMatrix.set(1, 2, oldMatrix.m12); 189 newMatrix.set(2, 0, oldMatrix.m20); 190 newMatrix.set(2, 1, oldMatrix.m21) [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
FieldSerializer.java | 142 field.set(object, value);
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
ADefCommand.java | 198 i.set((TWord) newChild); 216 i.set((PVariable) newChild);
|
/external/linux-tools-perf/src/tools/perf/ |
perf.c | 439 sigset_t set; local 441 sigemptyset(&set); 442 sigaddset(&set, SIGWINCH); 443 pthread_sigmask(SIG_BLOCK, &set, NULL); 448 sigset_t set; local 450 sigemptyset(&set); 451 sigaddset(&set, SIGWINCH); 452 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
|
/external/llvm/include/llvm/ADT/ |
BitVector.h | 120 /// count - Returns the number of bits which are set. 128 /// any - Returns true if any bit is set. 136 /// all - Returns true if all bits are set. 149 /// none - Returns true if none of the bits are set. 154 /// find_first - Returns the index of the first set bit, -1 if none 155 /// of the bits are set. 163 /// find_next - Returns the index of the next set bit following the 164 /// "Prev" bit. Returns -1 if the next set bit is not found. 199 // Set any old unused bits that are now included in the BitVector. This 200 // may set bits that are not included in the new vector, but we will clea 218 BitVector &set() { function in class:llvm::BitVector 224 BitVector &set(unsigned Idx) { function in class:llvm::BitVector 231 BitVector &set(unsigned I, unsigned E) { function in class:llvm::BitVector [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/test/ |
AbstractTestCase.java | 37 import java.util.Set;
83 * @param mock - the mock to set in replay mode
245 * Create and return a Set containing the Objects passed as arguments to this method
249 * @return the Set containing the specified elements
251 protected static Set set(Object e1, Object e2) {
method in class:AbstractTestCase 252 Set set = new HashSet();
local 253 set.add(e1);
254 set.add(e2); 266 protected static Set set(Object e1, Object e2, Object e3) { method in class:AbstractTestCase 267 Set set = set(e1, e2); local [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/ |
AbstractTest.java | 29 import java.util.Set;
82 * @param mock - the mock to set in replay mode
233 * Create and return a Set containing the Objects passed as arguments to this method
236 * @return the Set containing the specified elements
238 protected static Set set(Object e1, Object e2) {
method in class:AbstractTest 239 Set set = new HashSet();
local 240 set.add(e1);
241 set.add(e2); 252 protected static Set set(Object e1, Object e2, Object e3) { method in class:AbstractTest 253 Set set = set(e1, e2); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
Contact.java | 81 /** Set a parameter. 91 this.parameters.set(nv); 162 /** Set the expiry time in seconds. 168 this.parameters.set(EXPIRES, deltaSeconds); 178 /** set the Contact List 179 * @param cl ContactList to set 186 * Set the wildCardFlag member 187 * @param w boolean to set 196 * Set the address member 198 * @param address Address to set [all...] |
ParametersHeader.java | 76 * Returns the value of the named parameter, or null if it is not set. A 154 this.parameters.set(nv); 185 this.parameters.set(nv); 206 this.parameters.set(name,val); 227 this.parameters.set(name,val); 251 this.parameters.set(nv); 274 this.parameters.set(name,value); 303 /** Set the parameter given a name and value. 305 * @param nameValue - the name value of the parameter to set. 308 this.parameters.set(nameValue) [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
Settings.java | 69 /** If set, flow control is disabled for streams directed to the sender of these settings. */ 73 private int set; field in class:Settings 85 set = persistValue = persisted = 0; 89 Settings set(int id, int idFlags, int value) { method in class:Settings 95 set |= bit; 114 return (set & bit) != 0; 132 return Integer.bitCount(set); 138 return (bit & set) != 0 ? values[UPLOAD_BANDWIDTH] : defaultValue; 144 return (bit & set) != 0 ? values[HEADER_TABLE_SIZE] : -1; 150 return (bit & set) != 0 ? values[DOWNLOAD_BANDWIDTH] : defaultValue 236 set(i, other.flags(i), other.get(i)); method [all...] |
/external/okhttp/okio/okio/src/main/java/okio/ |
ByteString.java | 352 field.set(this, byteString.data);
|
/external/opencv/cxcore/include/ |
cxcore.hpp | 252 void set( CvMat* m, bool add_ref ) function in class:CvMatrix 265 set( cvCreateMat( rows, cols, type ), false );
|
/external/proguard/src/proguard/optimize/peephole/ |
ClassMerger.java | 393 * Returns the set of indirectly implemented interfaces. 395 private Set indirectlyImplementedInterfaces(Clazz clazz) 397 Set set = new HashSet(); local 402 new ClassCollector(set))); 410 return set; 415 * Returns the set of interface subclasses, not including the given class. 417 private Set subInterfaces(Clazz clazz, Clazz exceptClass) 419 Set set = new HashSet() local 436 Set set = new HashSet(); local 454 Set set = new HashSet(); local 479 Set set = new HashSet(); local [all...] |