Searched defs:set (Results 451 - 475 of 1028) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/v8/src/
H A Dassert-scope.h44 void set(PerThreadAssertType type, bool allow) { function in class:v8::internal::PerThreadAssertData
104 data_->set(type, allow);
107 ~PerThreadAssertScope() { data_->set(type, old_state_); }
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-graph-reducer.cc186 : set(NodeSet::key_compare(), NodeSet::allocator_type(zone)) {}
188 set.insert(node);
192 CHECK_EQ(1, static_cast<int>(set.count(node)));
194 NodeSet set; member in class:ReducerRecorder
/external/clang/include/clang/Basic/
H A DObjCRuntime.h66 void set(Kind kind, VersionTuple version) { function in class:clang::ObjCRuntime
74 /// \brief Does this runtime follow the set of implied behaviors for a
88 /// The inverse of isNonFragile(): does this runtime follow the set of
/external/clang/include/clang/Sema/
H A DTemplateDeduction.h100 /// \brief Add a new diagnostic to the set of diagnostics
110 /// \brief Iterator over the set of suppressed diagnostics.
237 void set(Decl *Spec, DeductionFailureInfo Info) { function in struct:clang::TemplateSpecCandidate
246 /// TemplateSpecCandidateSet - A set of generalized overload candidates,
278 /// to the overload set.
/external/clang/test/Analysis/
H A Dtemporaries.cpp276 void set(const A*a[]) { function in namespace:PR16629
282 set(args);
/external/clang/test/CXX/class.access/
H A Dp6.cpp60 template <class T> static void set(T &t, typename T::type v) { function in class:test2::A
78 A::set(b, 0);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_thread.cc169 static void ReportIgnoresEnabled(ThreadContext *tctx, IgnoreSet *set) { argument
179 for (uptr i = 0; i < set->Size(); i++) {
181 PrintStack(SymbolizeStackId(set->At(i)));
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.cpp26 #include <set>
50 using std::set;
82 throw std::out_of_range("Value not set");
85 void TypedFieldMap::set (const std::type_info* key, const Entry& value) function in class:de::cmdline::detail::TypedFieldMap
117 typedef set<const OptInfo*> OptSet;
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpec.java67 theInterningItem.set(reg, type, local);
624 public void set(int reg, TypeBearer type, LocalItem local) { method in class:RegisterSpec.ForComparison
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DStdTypeList.java172 result.set(0, type);
185 result.set(0, type0);
186 result.set(1, type1);
200 result.set(0, type0);
201 result.set(1, type1);
202 result.set(2, type2);
218 result.set(0, type0);
219 result.set(1, type1);
220 result.set(2, type2);
221 result.set(
384 public void set(int n, Type type) { method in class:StdTypeList
[all...]
/external/dnsmasq/src/
H A Dlog.c109 /* NOTE: umask is set to 022 by the time this gets called */
397 void set_log_writer(fd_set *set, int *maxfdp) argument
401 FD_SET(log_fd, set);
406 void check_log_writer(fd_set *set) argument
408 if (log_fd != -1 && (!set || FD_ISSET(log_fd, set)))
/external/e2fsprogs/ext2ed/
H A Dgeneral_com.c189 device_handle=NULL; /* Notice that our device is still not set up */
229 wprintw (command_win,"Error - No type set\n");refresh_command_win ();
304 wprintw (command_win, "Variable %s set to %s\n",
339 wprintw (command_win, "Variable %s set to %s\n",
352 wprintw (command_win, "Variable %s set to %s\n",
357 void set (char *command_line) function
410 "set: unhandled type %d\n",
519 wprintw (command_win,"Structure type set to %s\n",buffer);refresh_command_win ();
/external/e2fsprogs/misc/
H A Dchattr.c61 static int set; variable
176 set = 1;
210 if (set) {
212 printf (_("Flags of %s set as "), name);
224 printf(_("Flags of %s set as "), name);
241 printf (_("Version of %s set as %lu\n"), name, version);
305 if (set && (add || rem)) {
310 fputs("Can't both set and unset same flag.\n", stderr);
313 if (!(add || rem || set || set_version)) {
/external/fonttools/Lib/fontTools/
H A Dmerge.py100 allKeys = set.union(set(), *(vars(table).keys() for table in lst))
174 6: lambda bit: 0, # Always set to zero
178 15: lambda bit: 0, # Always set to zero
236 # unset bit 1 (no embedding permitted) if either bit 2 or 3 is set
239 # set bit 2 (allow previewing) if bit 3 is set (allow editing)
242 # set bits 2 and 3 if everything is allowed
247 # unset bits 2 and 3 if bit 1 is set (some font is "no embedding")
282 # bits 8 and 9 are reserved and should be set t
633 def set(self, **kwargs): member in class:Options
[all...]
/external/fonttools/Tools/fontTools/
H A Dmerge.py100 allKeys = set.union(set(), *(vars(table).keys() for table in lst))
174 6: lambda bit: 0, # Always set to zero
178 15: lambda bit: 0, # Always set to zero
236 # unset bit 1 (no embedding permitted) if either bit 2 or 3 is set
239 # set bit 2 (allow previewing) if bit 3 is set (allow editing)
242 # set bits 2 and 3 if everything is allowed
247 # unset bits 2 and 3 if bit 1 is set (some font is "no embedding")
282 # bits 8 and 9 are reserved and should be set t
633 def set(self, **kwargs): member in class:Options
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DConstraints.java108 * Returns a constrained view of the specified set, using the specified
109 * constraint. Any operations that add new elements to the set will call the
113 * <p>The returned set is not serializable.
115 * @param set the set to constrain
117 * @return a constrained view of the set
120 Set<E> set, Constraint<? super E> constraint) {
121 return new ConstrainedSet<E>(set, constraint);
146 * Returns a constrained view of the specified sorted set, using the specified
147 * constraint. Any operations that add new elements to the sorted set wil
119 constrainedSet( Set<E> set, Constraint<? super E> constraint) argument
249 @Override public E set(int index, E element) { method in class:Constraints.ConstrainedList
300 @Override public void set(E element) { method in class:Constraints.ConstrainedListIterator
[all...]
H A DRegularImmutableTable.java282 ImmutableSet<E> set) {
286 for (E key : set) {
281 makeIndex( ImmutableSet<E> set) argument
/external/guava/guava/src/com/google/common/primitives/
H A DBooleans.java326 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
327 * but any attempt to set a value to {@code null} will result in a {@link
403 @Override public Boolean set(int index, Boolean element) { method in class:Booleans.BooleanArrayAsList
H A DBytes.java243 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
244 * but any attempt to set a value to {@code null} will result in a {@link
320 @Override public Byte set(int index, Byte element) { method in class:Bytes.ByteArrayAsList
H A DChars.java442 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
443 * but any attempt to set a value to {@code null} will result in a {@link
519 @Override public Character set(int index, Character element) { method in class:Chars.CharArrayAsList
H A DDoubles.java385 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
386 * but any attempt to set a value to {@code null} will result in a {@link
465 @Override public Double set(int index, Double element) { method in class:Doubles.DoubleArrayAsList
H A DFloats.java382 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
383 * but any attempt to set a value to {@code null} will result in a {@link
462 @Override public Float set(int index, Float element) { method in class:Floats.FloatArrayAsList
H A DShorts.java447 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
448 * but any attempt to set a value to {@code null} will result in a {@link
524 @Override public Short set(int index, Short element) { method in class:Shorts.ShortArrayAsList
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableList.java232 public final E set(int index, E element) { method in class:ImmutableList
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DChars.java391 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
392 * but any attempt to set a value to {@code null} will result in a {@link
468 @Override public Character set(int index, Character element) { method in class:Chars.CharArrayAsList

Completed in 545 milliseconds

<<11121314151617181920>>