/external/emma/core/java12/com/vladium/jcd/cls/ |
IInterfaceCollection.java | 78 int set (int offset, int interface_index); method in interface:IInterfaceCollection
|
IMethodCollection.java | 88 Method_info set (int offset, Method_info method); method in interface:IMethodCollection
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
IDeclaredExceptionTable.java | 81 int set (int offset, int exception_index); method in interface:IDeclaredExceptionTable
|
IExceptionHandlerTable.java | 80 Exception_info set (int offset, Exception_info exception); method in interface:IExceptionHandlerTable
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
T_S_I__0.py | 42 def set(self, indices, extra_indices): member in class:table_T_S_I__0
|
_l_o_c_a.py | 35 self.set([]) 49 def set(self, locations): member in class:table__l_o_c_a
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/ |
TranscoderRegistry.java | 49 GET_KEY.set(decodedClass, transcodedClass);
|
/external/glide/library/src/main/java/com/bumptech/glide/provider/ |
DataLoadProviderRegistry.java | 45 GET_KEY.set(dataClass, resourceClass);
|
/external/glide/library/src/main/java/com/bumptech/glide/util/ |
MultiClassKey.java | 15 set(first, second); method 18 public void set(Class<?> first, Class<?> second) { method in class:MultiClassKey
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
gmock_class.py | 41 _dummy = set 44 set = sets.Set variable 47 # How many spaces to indent. Can set me with the INDENT environment variable. 122 processed_class_names = set() 189 desired_class_names = set(argv[2:])
|
keywords.py | 31 if not hasattr(builtins, 'set'): 33 from sets import Set as set namespace 36 TYPES = set('bool char int long short double float void wchar_t unsigned signed'.split()) 37 TYPE_MODIFIERS = set('auto register const inline extern static virtual volatile mutable'.split()) 38 ACCESS = set('public protected private friend'.split()) 40 CASTS = set('static_cast const_cast dynamic_cast reinterpret_cast'.split()) 42 OTHERS = set('true false asm class namespace using explicit this operator sizeof'.split()) 43 OTHER_TYPES = set('new delete typedef struct union enum typeid typename template'.split()) 45 CONTROL = set('case switch default if else return goto'.split() [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Count.java | 50 public void set(int newValue) { method in class:Count
|
ForwardingListIterator.java | 67 public void set(E element) { method in class:ForwardingListIterator 68 delegate().set(element);
|
TransformedListIterator.java | 63 public void set(T element) { method in class:TransformedListIterator
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
PowerSetBenchmark.java | 25 import java.util.Set; 35 Set<Set<Integer>> powerSet; 38 Set<Integer> set = ContiguousSet.create(Range.closed(1, elements), integers()); local 39 powerSet = Sets.powerSet(set); 45 for (Set<Integer> subset : powerSet) {
|
/external/icu/icu4c/source/common/unicode/ |
enumset.h | 38 inline void add(T toAdd) { set(toAdd, 1); } 39 inline void remove(T toRemove) { set(toRemove, 0); } 41 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/icu/icu4c/source/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/icu/icu4c/source/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/lldb/source/Host/macosx/cfcpp/ |
CFCMutableSet.cpp | 55 CFMutableSetRef set = get(); local 56 if (set) 57 return ::CFSetGetCount (set); 64 CFMutableSetRef set = get(); local 65 if (set) 66 return ::CFSetGetCountOfValue (set, value); 73 CFMutableSetRef set = get(); local 74 if (set) 75 return ::CFSetGetValue(set, value); 83 CFMutableSetRef set = get() local 102 CFMutableSetRef set = get(); local 110 CFMutableSetRef set = get(); local [all...] |