HomeSort by relevance Sort by last modified time
    Searched refs:set (Results 201 - 225 of 9118) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/
signal.h 51 * architectures except for the 'mips' one which set it to 128.
60 static __inline__ int sigismember(sigset_t *set, int signum)
62 unsigned long *local_set = (unsigned long *)set;
68 static __inline__ int sigaddset(sigset_t *set, int signum)
70 unsigned long *local_set = (unsigned long *)set;
77 static __inline__ int sigdelset(sigset_t *set, int signum)
79 unsigned long *local_set = (unsigned long *)set;
86 static __inline__ int sigemptyset(sigset_t *set)
88 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/
signal.h 51 * architectures except for the 'mips' one which set it to 128.
60 static __inline__ int sigismember(sigset_t *set, int signum)
62 unsigned long *local_set = (unsigned long *)set;
68 static __inline__ int sigaddset(sigset_t *set, int signum)
70 unsigned long *local_set = (unsigned long *)set;
77 static __inline__ int sigdelset(sigset_t *set, int signum)
79 unsigned long *local_set = (unsigned long *)set;
86 static __inline__ int sigemptyset(sigset_t *set)
88 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/
signal.h 51 * architectures except for the 'mips' one which set it to 128.
60 static __inline__ int sigismember(sigset_t *set, int signum)
62 unsigned long *local_set = (unsigned long *)set;
68 static __inline__ int sigaddset(sigset_t *set, int signum)
70 unsigned long *local_set = (unsigned long *)set;
77 static __inline__ int sigdelset(sigset_t *set, int signum)
79 unsigned long *local_set = (unsigned long *)set;
86 static __inline__ int sigemptyset(sigset_t *set)
88 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
signal.h 51 * architectures except for the 'mips' one which set it to 128.
60 static __inline__ int sigismember(sigset_t *set, int signum)
62 unsigned long *local_set = (unsigned long *)set;
68 static __inline__ int sigaddset(sigset_t *set, int signum)
70 unsigned long *local_set = (unsigned long *)set;
77 static __inline__ int sigdelset(sigset_t *set, int signum)
79 unsigned long *local_set = (unsigned long *)set;
86 static __inline__ int sigemptyset(sigset_t *set)
88 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
signal.h 51 * architectures except for the 'mips' one which set it to 128.
60 static __inline__ int sigismember(sigset_t *set, int signum)
62 unsigned long *local_set = (unsigned long *)set;
68 static __inline__ int sigaddset(sigset_t *set, int signum)
70 unsigned long *local_set = (unsigned long *)set;
77 static __inline__ int sigdelset(sigset_t *set, int signum)
79 unsigned long *local_set = (unsigned long *)set;
86 static __inline__ int sigemptyset(sigset_t *set)
88 memset(set, 0, sizeof *set);
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
signal.h 51 * architectures except for the 'mips' one which set it to 128.
60 static __inline__ int sigismember(sigset_t *set, int signum)
62 unsigned long *local_set = (unsigned long *)set;
68 static __inline__ int sigaddset(sigset_t *set, int signum)
70 unsigned long *local_set = (unsigned long *)set;
77 static __inline__ int sigdelset(sigset_t *set, int signum)
79 unsigned long *local_set = (unsigned long *)set;
86 static __inline__ int sigemptyset(sigset_t *set)
88 memset(set, 0, sizeof *set);
    [all...]
  /external/icu4c/common/
uset.cpp 42 uset_close(USet* set) {
43 delete (UnicodeSet*) set;
47 uset_clone(const USet *set) {
48 return (USet*) (((UnicodeSet*) set)->UnicodeSet::clone());
52 uset_isFrozen(const USet *set) {
53 return ((UnicodeSet*) set)->UnicodeSet::isFrozen();
57 uset_freeze(USet *set) {
58 ((UnicodeSet*) set)->UnicodeSet::freeze();
62 uset_cloneAsThawed(const USet *set) {
63 return (USet*) (((UnicodeSet*) set)->UnicodeSet::cloneAsThawed())
264 const UnicodeSet& set = *(const UnicodeSet*)uset; local
274 const UnicodeSet& set = *(const UnicodeSet*)uset; local
    [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
264 EnumSet<E> set = of(start); local
290 EnumSet<E> set = EnumSet.noneOf(start.getDeclaringClass()); local
328 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...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
signal.c 53 * are set on a per-process basis - not per-thread.
100 pthread_sigmask (int how, sigset_t const *set, sigset_t * oset)
110 if (set != NULL)
132 if (set != NULL)
139 unsigned long *src = (unsigned long const *) set;
159 memcpy (&(thread.p->sigmask), set, sizeof (sigset_t));
168 sigwait (const sigset_t * set, int *sig)
  /external/chromium_org/third_party/WebKit/Source/web/
WebEntities.cpp 43 m_entitiesMap.set(0x003c, "lt");
44 m_entitiesMap.set(0x003e, "gt");
45 m_entitiesMap.set(0x0026, "amp");
46 m_entitiesMap.set(0x0027, "apos");
47 m_entitiesMap.set(0x0022, "quot");
50 m_entitiesMap.set(0x0027, String("#39"));
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p1-cxx11.cpp 4 struct set{}; struct
7 void set(T value) {} function in struct:Value
11 v.set<double>(3.2);
19 v.set<double>(3.2);
22 int set; // Non-template. local
24 v.set<double>(3.2);
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);
  /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/chromium_org/chrome/renderer/spellchecker/
custom_dictionary_engine.h 8 #include <set>
23 void Init(const std::set<std::string>& words);
25 // Spellcheck |text|. Assumes that another spelling engine has set
39 std::set<base::string16> dictionary_;
  /external/chromium_org/gin/modules/
file_module_provider.h 8 #include <set>
30 void AttempToLoadModules(Runner* runner, const std::set<std::string>& ids);
35 // We'll only search for a given module once. We remember the set of modules
37 std::set<std::string> attempted_ids_;
  /external/chromium_org/ui/aura/
window_tracker.h 8 #include <set>
17 // This class keeps track of a set of windows. A Window is removed either
21 typedef std::set<Window*> Windows;
26 // Returns the set of windows being observed.
27 const std::set<Window*>& windows() const { return windows_; }
29 // Adds |window| to the set of Windows being tracked.
32 // Removes |window| from the set of windows being tracked.
  /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/chromium_org/chrome/common/media_galleries/
iphoto_library.h 12 #include <set>
31 typedef std::set<uint64> Album;
36 Library(const Albums& albums, const std::set<Photo>& all_photos);
40 std::set<Photo> all_photos;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_linkage.h 39 util_semantic_set_contains(struct util_semantic_set *set, unsigned char value)
41 return !!(set->masks[value / (sizeof(long) * 8)] & (1 << (value / (sizeof(long) * 8))));
44 unsigned util_semantic_set_from_program_file(struct util_semantic_set *set, const struct tgsi_token *tokens, enum tgsi_file_type file);
54 void util_semantic_layout_from_set(unsigned char *layout, const struct util_semantic_set *set, unsigned efficient_slots, unsigned num_slots);
  /external/llvm/lib/Target/R600/
R600RegisterInfo.cpp 31 Reserved.set(AMDGPU::ZERO);
32 Reserved.set(AMDGPU::HALF);
33 Reserved.set(AMDGPU::ONE);
34 Reserved.set(AMDGPU::ONE_INT);
35 Reserved.set(AMDGPU::NEG_HALF);
36 Reserved.set(AMDGPU::NEG_ONE);
37 Reserved.set(AMDGPU::PV_X);
38 Reserved.set(AMDGPU::ALU_LITERAL_X);
39 Reserved.set(AMDGPU::ALU_CONST);
40 Reserved.set(AMDGPU::PREDICATE_BIT)
    [all...]
  /external/llvm/test/MC/ELF/
relax.s 8 .set zed,foo
  /external/mesa3d/src/gallium/auxiliary/util/
u_linkage.h 39 util_semantic_set_contains(struct util_semantic_set *set, unsigned char value)
41 return !!(set->masks[value / (sizeof(long) * 8)] & (1 << (value / (sizeof(long) * 8))));
44 unsigned util_semantic_set_from_program_file(struct util_semantic_set *set, const struct tgsi_token *tokens, enum tgsi_file_type file);
54 void util_semantic_layout_from_set(unsigned char *layout, const struct util_semantic_set *set, unsigned efficient_slots, unsigned num_slots);

Completed in 2268 milliseconds

1 2 3 4 5 6 7 891011>>