/external/icu4c/test/perf/unisetperf/ |
unisetperf.cpp | 53 set.applyPattern(pattern, status); 54 prefrozen=set; 56 set.freeze(); 91 // Count spans of characters that are in the set, 92 // and spans of characters that are not in the set. 93 // If the very first character is in the set, then one additional 111 if(tf!=set.contains(c)) { 128 UnicodeSet set; member in class:UnicodeSetPerformanceTest 158 // Verify that the frozen set is equal to the unfrozen one. 159 UnicodeSet set; local 176 const UnicodeSet &set=testcase.set; local 209 UnicodeSet set; local 238 const UnicodeSet &set=testcase.set; local 260 UnicodeSet set; local 289 const UnicodeSet &set=testcase.set; local 315 UnicodeSet set; local 339 const UnicodeSet &set=testcase.set; local 361 UnicodeSet set; local 385 const UnicodeSet &set=testcase.set; local [all...] |
/external/iptables/include/linux/netfilter/ |
xt_set.h | 7 /* The max length of strings including NUL: set and type identifiers */ 45 #define IP_SET_OP_GET_BYNAME 0x00000006 /* Get set index by name */ 49 union ip_set_name_index set; member in struct:ip_set_req_get_set 52 #define IP_SET_OP_GET_BYINDEX 0x00000007 /* Get set name by index */
|
/external/javassist/src/main/javassist/util/ |
HotSwapper.java | 35 * the same set of methods and fields as the original definition. The 171 Set set = classFiles.entrySet(); local 172 Iterator it = set.iterator();
|
/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/libsepol/src/ |
avtab.c | 377 unsigned set; local 465 set = 0; 468 set++; 470 if (!set || set > 1) {
|
/external/libxslt/libxslt/ |
attributes.c | 81 * an attribute set 90 const xmlChar *set; /* or the attribute set */ member in struct:_xsltAttrElem 205 if ((old->attr == NULL) && (old->set == NULL)) { 215 if ((cur->attr == NULL) && (cur->set == NULL)) { 221 if ((cur->set != NULL) && (cur->set == old->set)) { 225 if (cur->set != NULL) { 231 if (old->set != NULL) [all...] |
/external/llvm/include/llvm/ADT/ |
BitVector.h | 118 /// count - Returns the number of bits which are set. 131 /// any - Returns true if any bit is set. 139 /// all - Returns true if all bits are set. 152 /// none - Returns true if none of the bits are set. 157 /// find_first - Returns the index of the first set bit, -1 if none 158 /// of the bits are set. 171 /// find_next - Returns the index of the next set bit following the 172 /// "Prev" bit. Returns -1 if the next set bit is not found. 217 // Set any old unused bits that are now included in the BitVector. This 218 // may set bits that are not included in the new vector, but we will clea 236 BitVector &set() { function in class:llvm::BitVector 242 BitVector &set(unsigned Idx) { function in class:llvm::BitVector 248 BitVector &set(unsigned I, unsigned E) { function in class:llvm::BitVector [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
FunctionLoweringInfo.cpp | 58 void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf) { function in class:FunctionLoweringInfo 72 // Initialize the mapping of values to registers. This is only set up for 383 /// being passed to this variadic function, and set the MachineModuleInfo's
|
/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/opencv/cxcore/include/ |
cxcore.hpp | 252 void set( CvMat* m, bool add_ref ) function in class:CvMatrix 265 set( cvCreateMat( rows, cols, type ), false );
|