Searched refs:flag (Results 1 - 25 of 1412) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/
H A DMatsUtils.h7 #define BitStringFromUInt32(flag, str) BitStringFromX((unsigned int) flag, 32, str)
8 #define BitStringFromUShort16(flag, str) BitStringFromX((unsigned short) flag, 16, str)
10 void BitStringFromX( unsigned int flag, int n, char *str );
H A DMatsUtils.c16 void BitStringFromX( unsigned int flag, int n, char *str ) argument
21 for (i = 0; i < n; i++, flag >>= 1)
22 str[n-1-i] = ((flag & 0x0001) == 0) ? '0' : '1';
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/Bookmarks/
H A DDNDTableView.py14 def draggingSourceOperationMaskForLocal_(self, flag):
18 if not flag:
20 return super(DNDTableView, self).draggingSourceOperationMaskForLocal_(flag)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/Bookmarks/
H A DDNDTableView.py14 def draggingSourceOperationMaskForLocal_(self, flag):
18 if not flag:
20 return super(DNDTableView, self).draggingSourceOperationMaskForLocal_(flag)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/CocoaBindings/Bookmarks/
H A DDNDTableView.py14 def draggingSourceOperationMaskForLocal_(self, flag):
18 if not flag:
20 return super(DNDTableView, self).draggingSourceOperationMaskForLocal_(flag)
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Ddeprecation.rb3 unless flag = (@deprecated_warning_flag ||= nil)
4 if try_compile("", flag = "-Werror=deprecated-declarations")
6 flag = "-Wno-deprecated-declarations"
8 $warnflags << " #{flag}"
10 flag = ""
12 @deprecated_warning_flag = flag
14 flag
/macosx-10.10/autofs-246/automountlib/
H A Dumount_by_fsid.c31 umount_by_fsid(fsid_t *fsid, int flag) argument
33 return (sysctl_fsid(VFS_CTL_UMOUNT, fsid, NULL, NULL, &flag,
34 sizeof(flag)));
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_immedok.c46 immedok(WINDOW *win, bool flag) argument
48 T((T_CALLED("immedok(%p,%d)"), win, flag));
51 win->_immed = flag;
H A Dlib_clearok.c46 clearok(WINDOW *win, bool flag) argument
48 T((T_CALLED("clearok(%p,%d)"), win, flag));
51 win->_clear = flag;
H A Dlib_leaveok.c46 leaveok(WINDOW *win, bool flag) argument
48 T((T_CALLED("leaveok(%p,%d)"), win, flag));
51 win->_leaveok = flag;
H A Dlib_scrollok.c46 scrollok(WINDOW *win, bool flag) argument
48 T((T_CALLED("scrollok(%p,%d)"), win, flag));
51 win->_scroll = flag;
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/
H A Dunlinkat.c25 int __unlinkat(int fd, const char *path, int flag);
28 unlinkat(int fd, const char *path, int flag) argument
30 int res = __unlinkat(fd, path, flag);
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/crt-custom/
H A Dmain.c30 // the value of flag is altered by mystart
31 int flag = 0; variable
55 if ( flag != 2 ) {
60 flag = 1;
67 if ( flag != 1 ) {
72 if ( flag != 2 ) {
/macosx-10.10/remote_cmds-47/telnetd.tproj/
H A Dslc.c70 if ((slctab[i].defset.flag & SLC_LEVELBITS) == SLC_NOSUPPORT)
72 add_slc((unsigned char)i, slctab[i].current.flag,
91 slctab[i].current.flag = SLC_NOSUPPORT;
93 slctab[i].current.flag = slctab[i].defset.flag;
116 slctab[i].defset.flag =
118 slctab[i].current.flag = SLC_NOSUPPORT;
131 add_slc(char func, char flag, cc_t val) argument
137 if ((*slcptr++ = (unsigned char)flag) == 0xff)
217 process_slc(unsigned char func, unsigned char flag, cc_ argument
281 change_slc(char func, char flag, cc_t val) argument
434 unsigned char func, flag; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DCacheFilePriority.java44 static CacheFilePriority fromFlag(int flag) { argument
45 switch (flag) {
59 "Unknown cache priority: " + flag);
64 private final int flag; field in class:CacheFilePriority
66 private CacheFilePriority(final String priorityName, final int flag) { argument
68 this.flag = flag;
78 return flag;
H A DLockOperation.java70 static LockOperation fromFlag(int flag) { argument
71 switch (flag) {
86 "Unknown lock operation: " + flag);
91 private final int flag; field in class:LockOperation
93 private LockOperation(final String operationName, final int flag) { argument
95 this.flag = flag;
105 return flag;
/macosx-10.10/bash-94.1.2/bash-3.2/examples/functions/
H A Dsubstr13 local flag pat str
18 flag="$1"
28 flag="-r"
53 case "$flag" in
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOPowerConnection.cpp81 void IOPowerConnection::setPreventIdleSleepFlag ( unsigned long flag )
83 preventIdleSleepFlag = (flag != 0);
101 void IOPowerConnection::setPreventSystemSleepFlag ( unsigned long flag )
103 preventSystemSleepFlag = (flag != 0);
123 void IOPowerConnection::setParentKnowsState (bool flag )
125 stateKnown = flag;
185 void IOPowerConnection::setReadyFlag( bool flag )
187 readyFlag = flag;
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DArrayBufferView.cpp49 void ArrayBufferView::setNeuterable(bool flag) argument
51 if (flag == m_isNeuterable)
54 m_isNeuterable = flag;
59 if (flag)
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebDynamicScrollBarsView.h54 - (void)setAllowsHorizontalScrolling:(BOOL)flag;
58 - (void)setAllowsScrollersToOverlapContent:(BOOL)flag;
61 - (void)setAlwaysHideHorizontalScroller:(BOOL)flag;
62 - (void)setAlwaysHideVerticalScroller:(BOOL)flag;
/macosx-10.10/ruby-106/ruby/test/optparse/
H A Dtest_optarg.rb6 @opt.def_option("-x[VAL]") {|x| @flag = x}
7 @opt.def_option("--option[=VAL]") {|x| @flag = x}
14 assert_equal(nil, @flag)
15 @flag = false
17 assert_equal(nil, @flag)
19 assert_equal("foo", @flag)
21 assert_equal("=", @flag)
26 assert_equal(nil, @flag)
27 @flag = false
29 assert_equal(nil, @flag)
[all...]
H A Dtest_placearg.rb6 @opt.def_option("-x [VAL]") {|x| @flag = x}
7 @opt.def_option("--option [VAL]") {|x| @flag = x}
17 assert_equal(nil, @flag)
18 @flag = false
20 assert_equal("foo", @flag)
22 assert_equal("bar", @flag)
24 assert_equal("=", @flag)
29 assert_equal(nil, @flag)
30 @flag = false
32 assert_equal("foo", @flag)
[all...]
H A Dtest_noarg.rb8 @opt.def_option("-x") {|x| @flag = x}
9 @opt.def_option("--option") {|x| @flag = x}
16 @opt.def_option("-x", "--option") {|x| @flag = x}
23 assert_equal(true, @flag)
24 @flag = nil
26 assert_equal(true, @flag)
32 assert_equal(true, @flag)
33 @flag = nil
35 assert_nil(@flag)
36 @flag
[all...]
/macosx-10.10/Chess-310.6/Sources/
H A DMBCDebug.cp62 MBCDebug::SetDebugFlags(int flag, bool val) argument
65 sDebugFlags |= flag;
67 sDebugFlags &= ~flag;
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/library/
H A Dstringfile.tcl23 set flag $fileName
26 set flag {}
30 set result [eval read $flag $fp $args]

Completed in 165 milliseconds

1234567891011>>