Searched defs:set (Results 326 - 350 of 1028) sorted by relevance

<<11121314151617181920>>

/external/clang/include/clang/Basic/
H A DTargetCXXABI.h103 void set(Kind kind) { function in class:clang::TargetCXXABI
/external/clang/test/Analysis/
H A Dreinterpret-cast.cpp11 void set() { x = 42; } function in struct:Child
18 wrapper->set();
/external/clang/test/SemaCXX/
H A Dcaptured-statements.cpp67 void set(const T &v0) { function in class:Val
80 Obj.set(0.0f); // OK
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DBasicBlockList.java60 * this with the index for an element which was never set; if you
74 * @param bb {@code null-ok;} the element to set at {@code n}
76 public void set(int n, BasicBlock bb) { method in class:BasicBlockList
77 super.set(n, bb);
199 result.set(i, one.withRegisterOffset(delta));
H A DRegisterSpecList.java41 result.set(0, spec);
55 result.set(0, spec0);
56 result.set(1, spec1);
71 result.set(0, spec0);
72 result.set(1, spec1);
73 result.set(2, spec2);
90 result.set(0, spec0);
91 result.set(1, spec1);
92 result.set(2, spec2);
93 result.set(
188 public void set(int n, RegisterSpec spec) { method in class:RegisterSpecList
[all...]
H A DRegisterSpecSet.java23 * may appear only once in the set.
37 /** {@code >= -1;} size of the set or {@code -1} if not yet calculated */
189 * Returns the spec in this set that's currently associated with a
216 * Returns the spec in this set that's currently associated with a given
237 * Removes a spec from the set. Only the register number
253 * Puts the given spec into the set. If there is already an element in
254 * the set with the same register number, it is replaced. Additionally,
293 * Put the entire contents of the given set into this one.
295 * @param set {@code non-null;} the set t
297 putAll(RegisterSpecSet set) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntList.java190 public void set(int n, int value) { method in class:IntList
/external/droiddriver/src/com/google/android/droiddriver/scroll/
H A DAccessibilityEventScrollStepStrategy.java60 public void set(Finder containerFinder, PhysicalDirection direction) { method in class:AccessibilityEventScrollStepStrategy.EndData
66 set(null, null);
118 endData.set(containerFinder, direction);
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_build_id.c53 found_build_id (Dwfl_Module *mod, bool set, argument
56 if (!set)
79 check_notes (Dwfl_Module *mod, bool set, Elf_Data *data, GElf_Addr data_vaddr) argument
89 return found_build_id (mod, set,
98 __libdwfl_find_build_id (Dwfl_Module *mod, bool set, Elf *elf) argument
122 result = check_notes (mod, set,
146 result = check_notes (mod, set, elf_getdata (scn, NULL), vaddr);
/external/emma/core/java12/com/vladium/jcd/cls/
H A DConstantCollection.java136 public CONSTANT_info set (final int index, final CONSTANT_info constant) method in class:ConstantCollection
145 throw new IllegalArgumentException ("assertion failure: can't set entry of type [" + result.getClass ().getName () + "] to an entry of type [" + result.getClass ().getName () + "] at pool slot " + index);
147 m_constants.set (zindex, constant);
229 public CONSTANT_info set (final CONSTANT_info constant) method in class:ConstantCollection.ConstantIterator
238 throw new IllegalArgumentException ("assertion failure: can't set entry of type [" + result.getClass ().getName () + "] to an entry of type [" + result.getClass ().getName () + "] at pool slot " + m_prev_index);
240 m_constants.set (zindex, constant);
/external/guava/guava/src/com/google/common/collect/
H A DForwardingList.java105 public E set(int index, E element) { method in class:ForwardingList
106 return delegate().set(index, element);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractFuture.java39 * Subclasses should provide a way to set the result of the computation through
40 * the protected methods {@link #set(Object)} and
159 * Subclasses should invoke this method to set the result of the computation
160 * to {@code value}. This will set the state of the future to
167 protected boolean set(@Nullable V value) { method in class:AbstractFuture
168 boolean result = sync.set(value);
176 * Subclasses should invoke this method to set the result of the computation
177 * to an error, {@code throwable}. This will set the state of the future to
209 * RUNNING to COMPLETING, that thread will then set the result of the
318 * Transition to the COMPLETED state and set th
320 boolean set(@Nullable V v) { method in class:AbstractFuture.Sync
[all...]
H A DAtomicDouble.java95 public final void set(double newValue) { method in class:AtomicDouble
106 set(newValue);
254 set(s.readDouble());
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DUnmodifiableCollectionTests.java59 * <p>This test only works with iterators that iterate over a finite set.
75 * <p>This test only works with iterators that iterate over a finite set.
168 * Verifies that a set is immutable.
170 * <p>A set is considered immutable if:
175 * set throw UnsupportedOperationException when those mutators
179 * @param set the presumed-immutable set
181 * {@code set}. {@code set} may or may not have {@code sampleElement} as a
185 Set<E> set,
184 assertSetIsUnmodifiable( Set<E> set, E sampleElement) argument
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DJdkFutureAdaptersTest.java56 abstractFuture.set(DATA1);
66 assertTrue(listenableFuture.isDone()); // We call AbstractFuture#set above.
69 // already finished (we explicitly set the result of it above).
97 abstractFuture.set(DATA1);
122 void set(V value) { method in class:JdkFutureAdaptersTest.NonListenableSettableFuture
123 delegate.set(value);
140 * value is set in addition to the call we'll make after then.
/external/harfbuzz_ng/src/
H A Dhb-set.cc27 #include "hb-set-private.hh"
43 hb_set_t *set; local
45 if (!(set = hb_object_create<hb_set_t> ()))
48 set->clear ();
50 return set;
75 * @set: a set.
82 hb_set_reference (hb_set_t *set) argument
84 return hb_object_reference (set);
89 * @set
94 hb_set_destroy(hb_set_t *set) argument
116 hb_set_set_user_data(hb_set_t *set, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
135 hb_set_get_user_data(hb_set_t *set, hb_user_data_key_t *key) argument
167 hb_set_clear(hb_set_t *set) argument
183 hb_set_is_empty(const hb_set_t *set) argument
200 hb_set_has(const hb_set_t *set, hb_codepoint_t codepoint) argument
216 hb_set_add(hb_set_t *set, hb_codepoint_t codepoint) argument
233 hb_set_add_range(hb_set_t *set, hb_codepoint_t first, hb_codepoint_t last) argument
250 hb_set_del(hb_set_t *set, hb_codepoint_t codepoint) argument
267 hb_set_del_range(hb_set_t *set, hb_codepoint_t first, hb_codepoint_t last) argument
286 hb_set_is_equal(const hb_set_t *set, const hb_set_t *other) argument
302 hb_set_set(hb_set_t *set, const hb_set_t *other) argument
318 hb_set_union(hb_set_t *set, const hb_set_t *other) argument
334 hb_set_intersect(hb_set_t *set, const hb_set_t *other) argument
350 hb_set_subtract(hb_set_t *set, const hb_set_t *other) argument
366 hb_set_symmetric_difference(hb_set_t *set, const hb_set_t *other) argument
381 hb_set_invert(hb_set_t *set) argument
397 hb_set_get_population(const hb_set_t *set) argument
413 hb_set_get_min(const hb_set_t *set) argument
429 hb_set_get_max(const hb_set_t *set) argument
446 hb_set_next(const hb_set_t *set, hb_codepoint_t *codepoint) argument
466 hb_set_next_range(const hb_set_t *set, hb_codepoint_t *first, hb_codepoint_t *last) argument
[all...]
/external/icu/icu4c/source/common/
H A Duniset_closure.cpp127 // _applyPattern calls add() etc., which set pat to empty.
144 _set_add(USet *set, UChar32 c) { argument
145 ((UnicodeSet *)set)->add(c);
149 _set_addRange(USet *set, UChar32 start, UChar32 end) { argument
150 ((UnicodeSet *)set)->add(start, end);
154 _set_addString(USet *set, const UChar *str, int32_t length) { argument
155 ((UnicodeSet *)set)->add(UnicodeString((UBool)(length<0), str, length));
162 // add the result of a full case mapping to the set
165 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) { argument
169 set
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationiterator.h68 inline int64_t set(int32_t i, int64_t ce) { function in class:CollationIterator::CEBuffer
127 return ceBuffer.set(cesIndex++,
135 return ceBuffer.set(cesIndex++, Collation::NO_CE);
142 return ceBuffer.set(cesIndex++,
150 return ceBuffer.set(cesIndex++,
167 ceBuffer.set(cesIndex - 1, ce);
H A Dname2uni.cpp40 _set_add(USet *set, UChar32 c) { argument
41 uset_add(set, c);
46 _set_addRange(USet *set, UChar32 start, UChar32 end) {
47 ((UnicodeSet *)set)->add(start, end);
51 _set_addString(USet *set, const UChar *str, int32_t length) {
52 ((UnicodeSet *)set)->add(UnicodeString((UBool)(length<0), str, length));
65 // Get the legal character set
/external/icu/icu4c/source/test/intltest/
H A Dtrnserr.cpp110 errln("FAIL: Error code wasn't set either.");
122 errln("FAIL: Error code wasn't set either.");
157 errln("FAIL: The parse error offset isn't set correctly when fails.");
169 UnicodeSet set; local
173 if (!set.isEmpty()) {
176 set.applyPattern(badPattern, status);
219 /*UnicodeSet *set = new UnicodeSet(goodPattern, status);
227 //delete set;
/external/icu/icu4c/source/test/perf/unisetperf/draft/
H A Dbitset.cpp15 * using a folded bit set consisting of a 1k-entry index table and a
18 * Uses the original set for supplementary code points.
86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) { argument
96 UnicodeSetIterator iter(set);
/external/javassist/src/main/javassist/bytecode/
H A DAttributeInfo.java161 public void set(byte[] newinfo) { info = newinfo; } method in class:AttributeInfo
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.cpp47 void operator() (const DWARFDebugArangeSet& set) argument
49 count += set.NumDescriptors();
65 DWARFDebugArangeSet set; local
67 while (set.Extract(debug_aranges_data, &offset))
69 const uint32_t num_descriptors = set.NumDescriptors();
72 const dw_offset_t cu_offset = set.GetCompileUnitDIEOffset();
76 const DWARFDebugArangeSet::Descriptor &descriptor = set.GetDescriptorRef(i);
80 set.Clear();
H A DDWARFDebugPubnames.cpp45 DWARFDebugPubnamesSet set; local
48 if (set.Extract(data, &offset))
50 m_sets.push_back(set);
51 offset = set.GetOffsetOfNextEntry();
/external/nist-sip/java/gov/nist/core/
H A DDuplicateNameValueList.java103 public void set(NameValue nv) { method in class:DuplicateNameValueList
110 public void set(String name, Object value) { method in class:DuplicateNameValueList
193 retval.set((NameValue) ((NameValue) it.next()).clone());

Completed in 484 milliseconds

<<11121314151617181920>>