HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 226 - 250 of 4356) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
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/guava/guava-tests/test/com/google/common/collect/
ConstraintsTest.java 33 import java.util.Set;
94 Set<String> set = Sets.newLinkedHashSet(asList("foo", "bar")); local
95 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT);
96 set.add(TEST_ELEMENT);
99 assertTrue(set.equals(constrained));
100 assertTrue(constrained.equals(set));
101 assertEquals(set.toString(), constrained.toString());
102 assertEquals(set.hashCode(), constrained.hashCode())
109 Set<String> set = Sets.newLinkedHashSet(asList("foo", "bar")); local
    [all...]
  /external/guice/core/src/com/google/inject/internal/
SingleFieldInjector.java 55 field.set(o, value);
  /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/jsr330/tck/org/atinject/tck/
Tck.java 114 Convertible.localConvertible.set((Convertible) car);
  /external/libchrome/base/
stl_util_unittest.cc 7 #include <set>
38 std::set<int> set; local
39 set.insert(24);
40 set.insert(1);
41 set.insert(12);
42 EXPECT_TRUE(STLIsSorted(set));
46 std::set<ComparableValue> set; local
47 set.insert(ComparableValue(24))
    [all...]
  /external/libcxx/test/std/algorithms/alg.sorting/alg.merge/
inplace_merge.pass.cpp 39 void set(int i) { i_ = i; } function in struct:S
inplace_merge_comp.pass.cpp 50 void set(int i) { i_ = i; } function in struct:S
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/client/
IReflectionCache.java 36 public void set (Field field, Object obj, Object value) throws IllegalAccessException; method in interface:IReflectionCache

Completed in 1158 milliseconds

1 2 3 4 5 6 7 8 91011>>