/external/icu4c/common/unicode/ |
enumset.h | 36 inline void add(T toAdd) { set(toAdd, 1); } 37 inline void remove(T toRemove) { set(toRemove, 0); } 39 inline void set(T toSet, int32_t v) { fBools=(fBools&(~flag(toSet)))|(v?(flag(toSet)):0); } function in class:EnumSet
|
errorcode.h | 99 void set(UErrorCode value) { errorCode=value; } function in class:ErrorCode
|
stringpiece.h | 143 void set(const char* xdata, int32_t len) { ptr_ = xdata; length_ = len; } function in class:StringPiece 150 void set(const char* str);
|
/external/icu4c/common/ |
uset_imp.h | 28 USetAdd(USet *set, UChar32 c); 31 USetAddRange(USet *set, UChar32 start, UChar32 end); 34 USetAddString(USet *set, const UChar *str, int32_t length); 37 USetRemove(USet *set, UChar32 c); 40 USetRemoveRange(USet *set, UChar32 start, UChar32 end); 45 * Calls will look like sa->add(sa->set, c); 48 USet *set; member in struct:USetAdder
|
uset_props.cpp | 35 UnicodeSet* set = new UnicodeSet(pat, *ec); local 37 if(set == 0) { 43 delete set; 44 set = NULL; 46 return (USet*) set; 55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec); local 57 if(set == 0) { 63 delete set; 64 set = NULL; 66 return (USet*) set; [all...] |
/external/icu4c/test/perf/usetperf/ |
bitset.cpp | 13 // TODO: have a separate capacity, so the len can just be set to 37 void BitSet::set(int32_t bitIndex) { function in class:BitSet
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Transform.java | 56 this.translation.set(translation); 57 this.rot.set(rot); 62 this.scale.set(scale); 83 this.rot.set(rot); 93 this.translation.set(trans); 111 this.scale.set(scale); 121 this.scale.set(scale, scale, scale); 141 trans.set(this.translation); 153 quat.set(rot); 173 scale.set(this.scale) 284 public Transform set(Transform matrixQuat) { method in class:Transform [all...] |
Triangle.java | 72 pointa.set(p1);
73 pointb.set(p2);
74 pointc.set(p3);
111 * <code>set</code> sets one of the triangle's points to that specified as
114 * @param point the point to set.
116 public void set(int i, Vector3f point) {
method in class:Triangle 119 pointa.set(point);
122 pointb.set(point);
125 pointc.set(point);
132 * <code>set</code> sets one of the triangle's points to that specified as 136 public void set(int i, float x, float y, float z) { method in class:Triangle 162 public void set(Vector3f v1, Vector3f v2, Vector3f v3) { method in class:Triangle [all...] |
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/ |
FaceInfo.java | 50 public void set(FaceInfo o) {
method in class:FaceInfo
|
/external/llvm/include/llvm/MC/ |
MachineLocation.h | 56 void set(unsigned R) { function in class:llvm::MachineLocation 62 void set(unsigned R, int O) { function in class:llvm::MachineLocation
|
/external/llvm/include/llvm/Support/ |
ThreadLocal.h | 54 // set - Associates a pointer to an object with the current thread. 55 void set(T* d) { setInstance(d); } function in class:llvm::sys::ThreadLocal
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_blorp.cpp | 47 brw_blorp_mip_info::set(struct intel_mipmap_tree *mt, function in class:brw_blorp_mip_info 67 brw_blorp_surface_info::set(struct brw_context *brw, function in class:brw_blorp_surface_info 71 brw_blorp_mip_info::set(mt, level, layer); 79 /* The miptree is a W-tiled stencil buffer. Surface states can't be set 190 depth.set(mt, level, layer);
|
/external/mesa3d/src/mesa/main/ |
stencil.c | 34 * front OR back face state (as set by glActiveStencilFaceEXT) is set. 97 * Set the clear value for the stencil buffer. 122 * Set the function and reference value for stencil testing. 158 /* set both front and back state */ 181 * Set the function and reference value for stencil testing. 229 /* set both front and back state */ 252 * Set the stencil writing mask. 289 /* set both front and back state */ 306 * Set the stencil test actions 422 GLboolean set = GL_FALSE; local [all...] |
/external/mockito/src/org/mockito/internal/configuration/ |
SpyAnnotationEngine.java | 65 field.set(testInstance, Mockito.mock(instance.getClass(), withSettings()
|
/external/mockito/src/org/mockito/internal/util/reflection/ |
Whitebox.java | 18 throw new RuntimeException("Unable to set internal state on a private field. Please report to mockito mailing list.", e);
27 f.set(target, value);
29 throw new RuntimeException("Unable to set internal state on a private field. Please report to mockito mailing list.", e);
41 "You want me to set value to this field: '" + field +
|
/external/oprofile/libutil++/ |
comma_list.h | 20 * hold a list of item of type T, tracking also if item has been set. 35 void set(std::string const & str); 66 void comma_list<T>::set(std::string const & str) function in class:comma_list
|
/external/qemu/audio/ |
audio_pt_int.c | 28 sigset_t set, old_set; local 32 err = sigfillset (&set); 50 err = pthread_sigmask (SIG_BLOCK, &set, &old_set);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/ |
AppSingletonizer.java | 23 set(shadowApplication, instance); method 30 protected abstract void set(ShadowApplication shadowApplication, T instance); method in class:AppSingletonizer
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowPeriodicSync.java | 28 f.set(realObject, obj);
|
ShadowPoint.java | 28 public void set(int x, int y) { method in class:ShadowPoint
|
ShadowPointF.java | 30 public void set(float x, float y) { method in class:ShadowPointF
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
AnimationSetTest.java | 19 private AnimationSet set; field in class:AnimationSetTest 24 set = new AnimationSet(true); 25 shadow = shadowOf(set); 34 set.addAnimation(alpha); 35 set.addAnimation(translate); 36 set.addAnimation(rotate);
|
/external/skia/include/gpu/ |
GrRect.h | 22 void set(const SkIRect& r) { function in struct:GrIRect16
|
/external/skia/src/animator/ |
SkDrawMatrix.h | 49 void set(SkMatrix& src) { function in class:SkDrawMatrix
|
/external/skia/src/core/ |
SkRefDict.cpp | 40 void SkRefDict::set(const char name[], SkRefCnt* data) { function in class:SkRefDict 73 rec->fName.set(name);
|