Searched defs:set (Results 176 - 200 of 583) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/rop/code/
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/elfutils/tests/
H A Dallregs.c100 const char *set, *pfx; member in struct:reginfo
111 if (a->set == b->set)
113 if (a->set == NULL)
115 if (b->set == NULL)
117 if (!strcmp (a->set, "integer"))
119 if (!strcmp (b->set, "integer"))
121 return strcmp (a->set, b->set);
144 state->info[regno].set
198 const char *set = NULL; local
[all...]
/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/icu4c/i18n/
H A Dname2uni.cpp39 _set_add(USet *set, UChar32 c) { argument
40 uset_add(set, c);
45 _set_addRange(USet *set, UChar32 start, UChar32 end) {
46 ((UnicodeSet *)set)->add(start, end);
50 _set_addString(USet *set, const UChar *str, int32_t length) {
51 ((UnicodeSet *)set)->add(UnicodeString((UBool)(length<0), str, length));
64 // Get the legal character set
/external/icu4c/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/icu4c/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/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DCompactArray.java118 public final void set(int index, T value) { method in class:CompactArray
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DLineSegment.java92 public void set(LineSegment ls) { method in class:LineSegment
H A DRay.java249 store.set(origin).addLocal(direction.x * t,
260 store.set(t, w1, w2);
380 loc.set(direction).multLocal(ratio).addLocal(origin);
415 tempVb.set(origin);
441 this.origin.set(origin);
480 this.direction.set(direction);
489 public void set(Ray source) { method in class:Ray
490 origin.set(source.getOrigin());
491 direction.set(source.getDirection());
H A DTransform.java56 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(thi
284 public Transform set(Transform matrixQuat) { method in class:Transform
[all...]
/external/kernel-headers/original/linux/
H A Dmoduleparam.h39 param_set_fn set; member in struct:kernel_param
55 param_set_fn set; member in struct:kparam_array
65 #define __module_param_call(prefix, name, set, get, arg, perm) \
70 = { __param_str_##name, perm, set, get, arg }
72 #define module_param_call(name, set, get, arg, perm) \
73 __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
147 /* Comma-separated array: *nump is set to number they actually specified. */
H A Dsignal.h39 static inline void sigaddset(sigset_t *set, int _sig) argument
43 set->sig[0] |= 1UL << sig;
45 set->sig[sig / _NSIG_BPW] |= 1UL << (sig % _NSIG_BPW);
48 static inline void sigdelset(sigset_t *set, int _sig) argument
52 set->sig[0] &= ~(1UL << sig);
54 set->sig[sig / _NSIG_BPW] &= ~(1UL << (sig % _NSIG_BPW));
57 static inline int sigismember(sigset_t *set, int _sig) argument
61 return 1 & (set->sig[0] >> sig);
63 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
73 static inline int sigisemptyset(sigset_t *set) argument
155 sigemptyset(sigset_t *set) argument
167 sigfillset(sigset_t *set) argument
181 sigaddsetmask(sigset_t *set, unsigned long mask) argument
186 sigdelsetmask(sigset_t *set, unsigned long mask) argument
191 sigtestsetmask(sigset_t *set, unsigned long mask) argument
196 siginitset(sigset_t *set, unsigned long mask) argument
208 siginitsetinv(sigset_t *set, unsigned long mask) argument
[all...]
/external/llvm/include/llvm/
H A DDefaultPasses.h76 /// or more flags that must be set when constructing the set for the pass to
89 // Run an inliner pass as part of this set.
95 /// setting passes, this should set the minimum optimization level at which
100 // Flags that must be set
102 // Flags that may not be set.
108 /// Returns the optimisation level from a set of flags.
112 /// Returns the maximum optimization level for this set of flags
116 /// Constructs a set of flags from the specified minimum and maximum
125 /// Returns the flags that must be set fo
138 RegisterStandardPass(StandardSet set, unsigned char *runBefore=0, unsigned flags=0, unsigned char *ID=0) argument
142 ID ? ID : (unsigned char*)&passName::ID, runBefore, set, flags); local
[all...]
/external/llvm/include/llvm/MC/
H A DMachineLocation.h57 void set(unsigned R) { function in class:llvm::MachineLocation
62 void set(unsigned R, int O) { function in class:llvm::MachineLocation
/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());
/external/openfst/src/include/fst/extensions/pdt/
H A Dcollection.h35 // integer ID (of type I) of each unique set. The IDs are allocated
76 I id_; // Iterator set node id
77 Node node_; // Iterator set node
83 // Lookups integer ID from set. If it doesn't exist, then adds it.
85 I FindId(const vector<T> &set) { argument
87 for (ssize_t i = set.size() - 1; i >= 0; --i) {
88 Node node(node_id, set[i]);
94 // Finds set given integer ID. Returns true if ID corresponds
95 // to set. Use iterators below to traverse result.
/external/openssl/crypto/x509/
H A Dx509name.c153 /* else we need to fixup the set field */
155 set_prev=(sk_X509_NAME_ENTRY_value(sk,loc-1))->set;
157 set_prev=ret->set-1;
158 set_next=sk_X509_NAME_ENTRY_value(sk,loc)->set;
160 /* set_prev is the previous set
161 * set is the current set
164 * set 1 1 2 2
170 sk_X509_NAME_ENTRY_value(sk,i)->set--;
175 unsigned char *bytes, int len, int loc, int set)
174 X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, unsigned char *bytes, int len, int loc, int set) argument
186 X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, unsigned char *bytes, int len, int loc, int set) argument
198 X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set) argument
212 X509_NAME_add_entry(X509_NAME *name, X509_NAME_ENTRY *ne, int loc, int set) argument
[all...]

Completed in 4701 milliseconds

1234567891011>>