HomeSort by relevance Sort by last modified time
    Searched refs:set (Results 101 - 125 of 7714) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/android-ndk-r6/platforms/android-8/arch-x86/usr/include/
signal.h 56 static __inline__ int sigismember(sigset_t *set, int signum)
58 unsigned long *local_set = (unsigned long *)set;
64 static __inline__ int sigaddset(sigset_t *set, int signum)
66 unsigned long *local_set = (unsigned long *)set;
73 static __inline__ int sigdelset(sigset_t *set, int signum)
75 unsigned long *local_set = (unsigned long *)set;
82 static __inline__ int sigemptyset(sigset_t *set)
84 memset(set, 0, sizeof *set);
88 static __inline__ int sigfillset(sigset_t *set)
    [all...]
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/
signal.h 50 * architectures except for the 'mips' one which set it to 128.
59 static __inline__ int sigismember(sigset_t *set, int signum)
61 unsigned long *local_set = (unsigned long *)set;
67 static __inline__ int sigaddset(sigset_t *set, int signum)
69 unsigned long *local_set = (unsigned long *)set;
76 static __inline__ int sigdelset(sigset_t *set, int signum)
78 unsigned long *local_set = (unsigned long *)set;
85 static __inline__ int sigemptyset(sigset_t *set)
87 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/
signal.h 50 * architectures except for the 'mips' one which set it to 128.
59 static __inline__ int sigismember(sigset_t *set, int signum)
61 unsigned long *local_set = (unsigned long *)set;
67 static __inline__ int sigaddset(sigset_t *set, int signum)
69 unsigned long *local_set = (unsigned long *)set;
76 static __inline__ int sigdelset(sigset_t *set, int signum)
78 unsigned long *local_set = (unsigned long *)set;
85 static __inline__ int sigemptyset(sigset_t *set)
87 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/
signal.h 50 * architectures except for the 'mips' one which set it to 128.
59 static __inline__ int sigismember(sigset_t *set, int signum)
61 unsigned long *local_set = (unsigned long *)set;
67 static __inline__ int sigaddset(sigset_t *set, int signum)
69 unsigned long *local_set = (unsigned long *)set;
76 static __inline__ int sigdelset(sigset_t *set, int signum)
78 unsigned long *local_set = (unsigned long *)set;
85 static __inline__ int sigemptyset(sigset_t *set)
87 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/
signal.h 50 * architectures except for the 'mips' one which set it to 128.
59 static __inline__ int sigismember(sigset_t *set, int signum)
61 unsigned long *local_set = (unsigned long *)set;
67 static __inline__ int sigaddset(sigset_t *set, int signum)
69 unsigned long *local_set = (unsigned long *)set;
76 static __inline__ int sigdelset(sigset_t *set, int signum)
78 unsigned long *local_set = (unsigned long *)set;
85 static __inline__ int sigemptyset(sigset_t *set)
87 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/
signal.h 50 * architectures except for the 'mips' one which set it to 128.
59 static __inline__ int sigismember(sigset_t *set, int signum)
61 unsigned long *local_set = (unsigned long *)set;
67 static __inline__ int sigaddset(sigset_t *set, int signum)
69 unsigned long *local_set = (unsigned long *)set;
76 static __inline__ int sigdelset(sigset_t *set, int signum)
78 unsigned long *local_set = (unsigned long *)set;
85 static __inline__ int sigemptyset(sigset_t *set)
87 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/
signal.h 50 * architectures except for the 'mips' one which set it to 128.
59 static __inline__ int sigismember(sigset_t *set, int signum)
61 unsigned long *local_set = (unsigned long *)set;
67 static __inline__ int sigaddset(sigset_t *set, int signum)
69 unsigned long *local_set = (unsigned long *)set;
76 static __inline__ int sigdelset(sigset_t *set, int signum)
78 unsigned long *local_set = (unsigned long *)set;
85 static __inline__ int sigemptyset(sigset_t *set)
87 memset(set, 0, sizeof *set);
    [all...]
  /libcore/luni/src/main/java/java/util/
EnumSet.java 21 * An EnumSet is a specialized Set to be used with enums as keys.
34 * Creates an empty enum set. The permitted elements are of type
39 * @return an empty enum set, with permitted elements of type {@code
56 * Creates an enum set filled with all the enum elements of the specified
61 * @return an enum set with elements solely from the specified element type.
66 EnumSet<E> set = noneOf(elementType); local
67 set.complement();
68 return set;
72 * Creates an enum set. All the contained elements are of type
77 * the enum set from which to copy
83 EnumSet<E> set = EnumSet.noneOf(s.elementClass); local
111 EnumSet<E> set = EnumSet.noneOf(element.getDeclaringClass()); local
131 EnumSet<E> set = EnumSet.noneOf(s.elementClass); local
152 EnumSet<E> set = EnumSet.noneOf(e.getDeclaringClass()); local
172 EnumSet<E> set = of(e1); local
194 EnumSet<E> set = of(e1, e2); local
218 EnumSet<E> set = of(e1, e2, e3); local
244 EnumSet<E> set = of(e1, e2, e3, e4); local
263 EnumSet<E> set = of(start); local
289 EnumSet<E> set = EnumSet.noneOf(start.getDeclaringClass()); local
327 EnumSet<E> set = EnumSet.noneOf(elementType); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ContiguousSetTest.java 32 import java.util.Set;
105 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
106 ASSERT.that(set.headSet(1)).isEmpty();
107 ASSERT.that(set.headSet(2)).hasContentsInOrder(1);
108 ASSERT.that(set.headSet(3)).hasContentsInOrder(1, 2);
109 ASSERT.that(set.headSet(4)).hasContentsInOrder(1, 2, 3);
110 ASSERT.that(set.headSet(Integer.MAX_VALUE)).hasContentsInOrder(1, 2, 3);
111 ASSERT.that(set.headSet(1, true)).hasContentsInOrder(1);
112 ASSERT.that(set.headSet(2, true)).hasContentsInOrder(1, 2);
113 ASSERT.that(set.headSet(3, true)).hasContentsInOrder(1, 2, 3)
119 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
127 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
139 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
147 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
164 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
172 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
180 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
200 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
216 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
265 ContiguousSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
274 ContiguousSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
    [all...]
AbstractImmutableSetTest.java 36 import java.util.Set;
47 protected abstract Set<String> of();
48 protected abstract Set<String> of(String e);
49 protected abstract Set<String> of(String e1, String e2);
50 protected abstract Set<String> of(String e1, String e2, String e3);
51 protected abstract Set<String> of(String e1, String e2, String e3, String e4);
52 protected abstract Set<String> of(String e1, String e2, String e3, String e4,
54 protected abstract Set<String> of(String e1, String e2, String e3, String e4,
56 protected abstract Set<String> copyOf(String[] elements);
57 protected abstract Set<String> copyOf(Collection<String> elements)
62 Set<String> set = of(); local
63 assertEquals(Collections.<String>emptySet(), set); local
64 assertSame(of(), set); local
68 Set<String> set = of("a"); local
73 Set<String> set = of("a", "b"); local
78 Set<String> set = of("a", "b", "c"); local
83 Set<String> set = of("a", "b", "c", "d"); local
88 Set<String> set = of("a", "b", "c", "d", "e"); local
93 Set<String> set = of("a", "b", "c", "d", "e", "f"); local
98 Set<String> set = of("a", "b", "c", "d", "e", "f", "g"); local
103 Set<String> set = of("a", "b", "c", "d", "e", "f", "g", "h"); local
109 Set<String> set = copyOf(array); local
110 assertEquals(Collections.<String>emptySet(), set); local
111 assertSame(of(), set); local
116 Set<String> set = copyOf(array); local
140 Set<String> set = copyOf(c); local
141 assertEquals(Collections.<String>emptySet(), set); local
142 assertSame(of(), set); local
147 Set<String> set = copyOf(c); local
153 Set<String> set = copyOf(c); local
159 Set<String> set = copyOf(c); local
176 Set<String> set = copyOf(iterator); local
177 assertEquals(Collections.<String>emptySet(), set); local
178 assertSame(of(), set); local
183 Set<String> set = copyOf(iterator); local
189 Set<String> set = copyOf(iterator); local
195 Set<String> set = copyOf(iterator); local
221 Set<String> set = copyOf(iterable); local
251 Set<String> set = of("a", "b", "c", "d", "e", "f", "g"); local
292 ImmutableSet<String> set = this.<String>builder() local
303 ImmutableSet<String> set = this.<String>builder() local
317 ImmutableSet<String> set = this.<String>builder() local
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p1.cpp 24 struct set{}; // expected-note{{lookup from the current scope refers here}} struct
27 void set(T value) {} // expected-note{{lookup in the object type 'Value' refers here}} function in struct:Value
31 v.set<double>(3.2);
39 v.set<double>(3.2); // expected-warning{{lookup of 'set' in member access expression is ambiguous; using member of 'Value'}}
42 int set; // Non-template. local
44 v.set<double>(3.2);
  /frameworks/base/core/java/com/google/android/collect/
Sets.java 26 * Provides static methods for creating mutable {@code Set} instances easily and
38 * <p><b>Note:</b> if you only need an <i>immutable</i> empty Set,
53 * <p>{@code Set<Base> set = Sets.newHashSet(sub1, sub2);}
58 * <p>{@code Set<Base> set = Sets.<Base>newHashSet(sub1, sub2);}
60 * @param elements the elements that the set should contain
66 HashSet<E> set = new HashSet<E>(capacity); local
67 Collections.addAll(set, elements);
68 return set;
88 SortedSet<E> set = new TreeSet<E>(); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
OpcodeInfo.java 1422 private static void set(Info opcode) { method in class:OpcodeInfo
    [all...]
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
AbstractTLexer.java 0 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
Dops.java 1437 private static void set(Dop opcode) { method in class:Dops
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CharStream.as 49 function set line(line:int):void;
51 function set charPositionInLine(pos:int):void;
  /external/llvm/test/MC/ELF/
relax.s 8 .set zed,foo
  /external/valgrind/main/include/
pub_tool_libcsignal.h 40 extern Int VG_(sigprocmask) ( Int how, const vki_sigset_t* set,
  /ndk/tests/build/build-assembly-file/jni/
assembly-mips.S 5 .set noreorder
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CalendarTest.java 37 * @tests java.util.Calendar#set(int, int)
40 // Test for correct result defined by the last set field
44 cal.set(Calendar.YEAR, 2002);
49 cal.set(Calendar.YEAR, 2002);
50 cal.set(Calendar.MONTH, Calendar.MARCH);
55 cal.set(Calendar.YEAR, 2002);
56 cal.set(Calendar.DATE, 24);
60 cal.set(Calendar.MONTH, Calendar.OCTOBER);
61 cal.set(Calendar.DATE, 31);
62 cal.set(Calendar.MONTH, Calendar.NOVEMBER)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CalendarTest.java 37 * java.util.Calendar#set(int, int)
40 // Test for correct result defined by the last set field
44 cal.set(Calendar.YEAR, 2002);
49 cal.set(Calendar.YEAR, 2002);
50 cal.set(Calendar.MONTH, Calendar.MARCH);
55 cal.set(Calendar.YEAR, 2002);
56 cal.set(Calendar.DATE, 24);
60 cal.set(Calendar.MONTH, Calendar.OCTOBER);
61 cal.set(Calendar.DATE, 31);
62 cal.set(Calendar.MONTH, Calendar.NOVEMBER)
    [all...]
  /external/icu4c/common/unicode/
uset.h 22 * \brief C API: Unicode Set
62 * The resulting set is a superset of the input for the code points but
66 * the original set to their full case folding equivalents.
70 * an input character directly against the closure set.
72 * set with an incremental case folding of the string in question.
74 * The closure set will also contain single code points if the original
75 * set contained case-equivalent strings (like U+00DF for "ss" or "Ss" etc.).
78 * set contained the code point or a string.
89 * of each existing element in the set.
95 * Enough for any single-code point set
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uset.h 22 * \brief C API: Unicode Set
76 * of each existing element in the set.
82 * Enough for any single-code point set
89 * A serialized form of a Unicode set. Limited manipulations are
90 * possible directly on a serialized set. See below.
95 * The serialized Unicode Set.
133 * Creates a set from the given pattern. See the UnicodeSet class
135 * @param pattern a string specifying what characters are in the set
146 * Creates a set from the given pattern. See the UnicodeSet class
148 * @param pattern a string specifying what characters are in the set
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
uset.h 22 * \brief C API: Unicode Set
76 * of each existing element in the set.
82 * Enough for any single-code point set
89 * A serialized form of a Unicode set. Limited manipulations are
90 * possible directly on a serialized set. See below.
95 * The serialized Unicode Set.
133 * Creates a set from the given pattern. See the UnicodeSet class
135 * @param pattern a string specifying what characters are in the set
146 * Creates a set from the given pattern. See the UnicodeSet class
148 * @param pattern a string specifying what characters are in the set
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
WidgetEfl.cpp 80 m_cursorStringMap.set("cursor/pointer", ECORE_X_CURSOR_LEFT_PTR);
81 m_cursorStringMap.set("cursor/move", ECORE_X_CURSOR_FLEUR);
82 m_cursorStringMap.set("cursor/cross", ECORE_X_CURSOR_CROSS);
83 m_cursorStringMap.set("cursor/hand", ECORE_X_CURSOR_HAND2);
84 m_cursorStringMap.set("cursor/i_beam", ECORE_X_CURSOR_XTERM);
85 m_cursorStringMap.set("cursor/wait", ECORE_X_CURSOR_WATCH);
86 m_cursorStringMap.set("cursor/help", ECORE_X_CURSOR_QUESTION_ARROW);
87 m_cursorStringMap.set("cursor/east_resize", ECORE_X_CURSOR_RIGHT_SIDE);
88 m_cursorStringMap.set("cursor/north_resize", ECORE_X_CURSOR_TOP_SIDE);
89 m_cursorStringMap.set("cursor/north_east_resize", ECORE_X_CURSOR_TOP_RIGHT_CORNER)
    [all...]

Completed in 1449 milliseconds

1 2 3 45 6 7 8 91011>>