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

1 2 3 4 56 7 8 91011>>

  /external/kernel-headers/original/asm-x86/
signal.h 188 #define sigaddset(set,sig) \
190 __const_sigaddset((set),(sig)) : \
191 __gen_sigaddset((set),(sig)))
193 static __inline__ void __gen_sigaddset(sigset_t *set, int _sig)
195 __asm__("btsl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
198 static __inline__ void __const_sigaddset(sigset_t *set, int _sig)
201 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW);
204 #define sigdelset(set,sig) \
206 __const_sigdelset((set),(sig)) : \
207 __gen_sigdelset((set),(sig))
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
BitSetTest.java 98 bs.set(128);
99 assertFalse("Different sized BitSet with higher bit set returned true",
103 "Different sized BitSet with higher bits not set returned false",
116 bs.set(10);
132 bs.set(0, bs.size() - 1); // ensure all bits are 1's
133 bs.set(bs.size() - 1);
150 // Check to see all other bits are still set
180 bs.set(25);
208 bitset.set(i);
216 bs.set(0, initialSize)
    [all...]
  /external/icu4c/test/cintltst/
usettest.c 27 static void expect(const USet* set,
31 static void expectContainment(const USet* set,
35 static void expectItems(const USet* set,
82 USet* set; local
87 set = uset_openEmpty();
88 expect(set, "", "abc{ab}", NULL);
89 uset_close(set);
91 set = uset_open(1, 0);
92 expect(set, "", "abc{ab}", NULL);
93 uset_close(set);
479 USet *set; local
529 USet *set = uset_openPattern(buf, len, &ec); local
    [all...]
  /bionic/libc/bionic/
sched_cpucount.c 31 int __sched_cpucount(size_t setsize, cpu_set_t* set)
37 count += __builtin_popcount(set->__bits[nn]);
  /bionic/libc/wchar/
wcspbrk.c 40 wcspbrk(const wchar_t *s, const wchar_t *set)
47 q = set;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ParserRuleReturnScope.cs 68 set {
78 set {
  /external/chromium/chrome/browser/ui/views/frame/
browser_bubble_host.h 9 #include <set>
37 // The set of bubbles associated with this host.
38 typedef std::set<BrowserBubble*> BubbleSet;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/
buildAll.bat 6 set mapVersionTag=HEAD
9 set buildType=
12 set buildID=
15 set bootclasspath=
18 set vm=java
21 set target=
24 set ftpUser=
25 set ftpPassword=
37 if x%1==x-mapVersionTag set mapVersionTag=%2 && shift && shift && goto processcmdlineargs
38 if x%1==x-vm set vm=%2 && shift && shift && goto processcmdlineargs
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/ant/
FileTask.java 51 public final void addInfileset (final XFileSet set)
53 if (set != null) m_dataFileSets.add (set);
56 public final void addFileset (final XFileSet set)
58 if (set != null) m_dataFileSets.add (set);
93 final FileSet set = (FileSet) i.next (); local
94 final DirectoryScanner ds = set.getDirectoryScanner (project);
  /external/guava/guava/src/com/google/common/util/concurrent/
SettableFuture.java 22 * A {@link ListenableFuture} whose result may be set by a {@link #set(Object)}
45 * the value was successfully set, or {@code false} if the future has already
46 * been set or cancelled.
49 * @return true if the value was successfully set.
52 public boolean set(@Nullable V value) { method in class:SettableFuture
53 return super.set(value);
60 * successfully set, or {@code false} if the future has already been set or
64 * @return true if the exception was successfully set
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
BillboardControl.java 120 * rotate the billboard based on the type set
149 look.set(camera.getLocation()).subtractLocal(
154 xzp.set(look.x, 0, look.z);
166 orient.set(0, 0, xzp.z);
167 orient.set(0, 1, xzp.x * -look.y);
168 orient.set(0, 2, xzp.x * cosp);
169 orient.set(1, 0, 0);
170 orient.set(1, 1, cosp);
171 orient.set(1, 2, look.y);
172 orient.set(2, 0, -xzp.x)
    [all...]
  /external/skia/include/core/
SkRefDict.h 37 void set(const char name[], SkRefCnt* data);
42 void remove(const char name[]) { this->set(name, NULL); }
SkRelay.h 23 * clears the Relay pointer to it (relay->set(NULL)) and then unref()s the
35 void set(T* ptr) { fPtr = ptr; } function in class:SkTRelay
37 void clear() { this->set(NULL); }
  /external/stlport/stlport/stl/config/
_prolog.h 23 # pragma set woff 1209
24 # pragma set woff 1174
25 # pragma set woff 1375
27 # pragma set woff 1183
  /external/webkit/Source/WebCore/platform/network/
CredentialStorage.h 38 static void set(const Credential&, const ProtectionSpace&, const KURL&);
47 static bool set(const Credential&, const KURL&); // Returns true if the URL corresponds to a known protection space, so credentials could be updated.
  /external/webkit/Tools/DumpRenderTree/chromium/
CppVariant.h 55 void set(bool);
56 void set(int32_t);
57 void set(double);
61 // CppVariant is set to a different value or is no longer needed. Normally
62 // this is handled by the other set() methods and by the destructor.
63 void set(const char*); // Must be a null-terminated string.
64 void set(const std::string&);
65 void set(const NPString&);
66 void set(const NPVariant&);
70 // is no longer needed. The other set() methods handle this internally
    [all...]
  /external/webkit/Tools/MiniBrowser/win/
MiniBrowser.h 29 #include <set>
52 std::set<BrowserWindow*> m_browserWindows;
  /frameworks/base/core/java/android/util/
IntProperty.java 23 * calls to a {@link #set(Object, Integer) set()} function that takes the primitive
38 * A type-specific override of the {@link #set(Object, Integer)} that is faster when dealing
44 final public void set(T object, Integer value) { method in class:IntProperty
45 set(object, value.intValue()); method
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 23 # pragma set woff 1209
24 # pragma set woff 1174
25 # pragma set woff 1375
27 # pragma set woff 1183
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 23 # pragma set woff 1209
24 # pragma set woff 1174
25 # pragma set woff 1375
27 # pragma set woff 1183
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 23 # pragma set woff 1209
24 # pragma set woff 1174
25 # pragma set woff 1375
27 # pragma set woff 1183
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 23 # pragma set woff 1209
24 # pragma set woff 1174
25 # pragma set woff 1375
27 # pragma set woff 1183
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglPixmapSurface.h 19 #include <set>
35 static std::set<EGLNativePixmapType> s_associatedPixmaps;
  /external/icu4c/samples/datecal/
cal.cpp 25 /* set up the date */
26 gc->set(2000, UCAL_FEBRUARY, 26);
27 gc->set(UCAL_HOUR_OF_DAY, 23);
28 gc->set(UCAL_MINUTE, 0);
29 gc->set(UCAL_SECOND, 0);
30 gc->set(UCAL_MILLISECOND, 0);
  /dalvik/dx/src/com/android/dx/dex/code/
Dops.java 1239 private static void set(Dop opcode) { method in class:Dops
    [all...]

Completed in 919 milliseconds

1 2 3 4 56 7 8 91011>>