Searched defs:set (Results 151 - 175 of 843) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/collect/
H A DSerialization.java215 void set(T instance, Object value) { method in class:Serialization.FieldSetter
217 field.set(instance, value);
223 void set(T instance, int value) { method in class:Serialization.FieldSetter
225 field.set(instance, value);
/external/guava/guava/src/com/google/common/hash/
H A DBloomFilterStrategies.java59 bitsChanged |= bits.set(combinedHash % bitSize);
103 bitsChanged |= bits.set((combinedHash & Long.MAX_VALUE) % bitSize);
160 boolean set(long index) { method in class:BloomFilterStrategies.BitArray
178 /** Number of set bits (1s) */
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDoubleArray.java100 public final void set(int i, double newValue) { method in class:AtomicDoubleArray
102 longs.set(i, next);
112 set(i, newValue);
265 set(i, s.readDouble());
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java40 public final void set(int newValue) { method in class:AtomicInteger
45 set(newValue);
H A DAtomicLong.java40 public final void set(long newValue) { method in class:AtomicLong
45 set(newValue);
/external/icu/icu4c/source/common/unicode/
H A Denumset.h38 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
H A Dstringpiece.h143 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/
H A Duset_props.cpp35 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;
71 uset_applyPattern(USet *set, const UChar *pattern, int32_t patternLength, uint32_t options, UErrorCode *status) argument
100 uset_applyIntPropertyValue(USet* set, UProperty prop, int32_t value, UErrorCode* ec) argument
106 uset_applyPropertyAlias(USet* set, const UChar *prop, int32_t propLength, const UChar *value, int32_t valueLength, UErrorCode* ec) argument
129 uset_toPattern(const USet* set, UChar* result, int32_t resultCapacity, UBool escapeUnprintable, UErrorCode* ec) argument
139 uset_closeOver(USet* set, int32_t attributes) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dfuncrepl.cpp113 UnicodeSet set; local
114 toUnionTo.addAll(translit->getTargetSet(set));
/external/icu/icu4c/source/test/perf/usetperf/
H A Dusetperf.cpp31 UnicodeSet set; member in class:CmdPattern
39 set.applyPattern(pat, *pErrorCode);
55 bs.set((int32_t) cp);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCalendarData.java106 * data is located in: "calendar/key/set/contextKey/subKey"
110 * @param set Resource key to data
115 public ICUResourceBundle get(String key, String set, String contextKey, String subKey) { argument
117 return fBundle.getWithFallback("calendar/" + fMainType + "/" + key + "/" + set + "/" + contextKey + "/" + subKey);
120 return fBundle.getWithFallback("calendar/" + fFallbackType + "/" + key + "/" + set + "/" + contextKey + "/" + subKey);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeSetIterator.java20 * for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.next();) {
27 * for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.nextRange();) {
77 * Create an iterator over the given set.
78 * @param set set to iterate over
81 public UnicodeSetIterator(UnicodeSet set) { argument
82 reset(set);
88 * constructor allowing the target to be set later.
96 * Returns the next element in the set, either a single code point
97 * or a string. If there are no more elements in the set, retur
233 private UnicodeSet set; field in class:UnicodeSetIterator
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DByteArrayWrapper.java135 public final ByteArrayWrapper set(byte[] src, int start, int limit) method in class:ByteArrayWrapper
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DLocaleDataTest.java137 // We keep a set of combinations that have already been tested, to
139 // Instances of this class must be well behaved as members of a set.
142 private UnicodeSet set; field in class:LocaleDataTest.ExemplarGroup
145 set = s;
158 set.equals(o.set);
228 // Note: The case-folded set should sometimes be a strict superset
309 // Note: The case-folded set should sometimes be a strict superset
345 UnicodeSet set = LocaleData.getExemplarSet(loc, 0, testTypes[i]);
346 if (set
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodeMapIterator.java22 * UnicodeSetIterator it = new UnicodeSetIterator(set);
23 * while (set.next()) {
24 * if (set.codepoint != UnicodeSetIterator.IS_STRING) {
25 * processCodepoint(set.codepoint);
27 * processString(set.string);
34 * UnicodeSetIterator it = new UnicodeSetIterator(set);
35 * while (set.nextRange()) {
36 * if (set.codepoint != UnicodeSetIterator.IS_STRING) {
37 * processCodepointRange(set.codepoint, set
86 UnicodeMapIterator(UnicodeMap set) argument
190 reset(UnicodeMap set) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DDefineList.java90 // public void set(String key, String val){
95 public boolean set(String key, VarType type, Object val){ method in class:DefineList
/external/libxml2/include/libxml/
H A Dxlink.h68 * a set of callback registered at parsing time.
132 * This is the prototype for a extended link set detection callback.
145 * This is the structure containing a set of Links detection callbacks.
155 xlinkExtendedLinkSetFunk set; member in struct:_xlinkHandler
169 * Routines to set/get the default handlers.
/external/lldb/include/lldb/Utility/
H A DCleanUp.h23 // - the current value will be cleaned up when a new value is set using
24 // set(T value) as long as the current value hasn't already been cleaned.
121 set (const value_type value) function in class:lldb_utility::CleanUp
125 // Now set the new value and mark our callback as not called
254 set (const value_type value) function in class:lldb_utility::CleanUp2
258 // Now set the new value and mark our callback as not called
/external/llvm/include/llvm/MC/
H A DMachineLocation.h60 void set(unsigned R) { function
66 void set(unsigned R, int O) { function
/external/marisa-trie/lib/marisa/
H A Dintvector.h34 void set(std::size_t i, UInt32 value) { function in class:marisa::IntVector
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dintvector.h34 void set(std::size_t i, UInt32 value) { function in class:marisa_alpha::IntVector
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_linkage.c35 util_semantic_set_test_and_set(struct util_semantic_set *set, unsigned value) argument
38 unsigned long *p = &set->masks[value / (sizeof(long) * 8)];
45 util_semantic_set_from_program_file(struct util_semantic_set *set, const struct tgsi_token *tokens, enum tgsi_file_type file) argument
74 memset(set->masks, 0, sizeof(set->masks));
90 if(!util_semantic_set_test_and_set(set, semantic_index[idx]))
103 if(!util_semantic_set_test_and_set(set, semantic_index[idx]))
115 #define UTIL_SEMANTIC_SET_FOR_EACH(i, set) for(i = 0; i < 256; ++i) if(set->masks[i / (sizeof(long) * 8)] & (1 << (i % (sizeof(long) * 8))))
118 util_semantic_layout_from_set(unsigned char *layout, const struct util_semantic_set *set, unsigne argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_blorp.cpp47 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/
H A Dstencil.c34 * front OR back face state (as set by glActiveStencilFaceEXT) is set.
158 /* set both front and back state */
229 /* set both front and back state */
289 /* set both front and back state */
344 /* only set active face state */
362 /* set both front and back state */
422 GLboolean set = GL_FALSE; local
447 /* set front */
455 set
[all...]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DInvocationRecord.java38 * calling the {@link #set(String, Object)} method will throw an <code>AssertFailedException</code>.
65 * calling the {@link #set(String, Object)} method will throw an
112 public void set(String key, Object value) { method in class:InvocationRecord
145 * explicitly set to null for the key. The containsKey operation may be used to
162 * explicitly set to null for the key. The containsKey operation may be used to

Completed in 1183 milliseconds

1234567891011>>