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

1234567891011>>

/macosx-10.9.5/tcl-102/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.9.5/pyobjc-42/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.9.5/pyobjc-42/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.9.5/ruby-104/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.9.5/autofs-234/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.9.5/ncurses-42/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.9.5/cctools-845/include/stuff/
H A Dversion_number.h24 char *flag,
/macosx-10.9.5/dyld-239.4/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.9.5/remote_cmds-41.90.1/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.9.5/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;
H A DLockRequestMode.java46 private final int flag; field in class:LockRequestMode
54 @param flag
57 public LockRequestMode(final String operationName, final int flag) { argument
59 this.flag = flag;
69 return flag;
/macosx-10.9.5/bash-92/bash-3.2/examples/functions/
H A Dsubstr13 local flag pat str
18 flag="$1"
28 flag="-r"
53 case "$flag" in
/macosx-10.9.5/xnu-2422.115.4/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.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebDynamicScrollBarsView.h50 - (void)setAllowsHorizontalScrolling:(BOOL)flag;
54 - (void)setAllowsScrollersToOverlapContent:(BOOL)flag;
57 - (void)setAlwaysHideHorizontalScroller:(BOOL)flag;
58 - (void)setAlwaysHideVerticalScroller:(BOOL)flag;
/macosx-10.9.5/ruby-104/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.9.5/Chess-310.5/Sources/
H A DMBCDebug.cp62 MBCDebug::SetDebugFlags(int flag, bool val) argument
65 sDebugFlags |= flag;
67 sDebugFlags &= ~flag;
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/library/
H A Dstringfile.tcl23 set flag $fileName
26 set flag {}
30 set result [eval read $flag $fp $args]
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/bltins/
H A Dumask.c44 register int flag = 0, sflag = 0; local
69 flag = (flag<<3) + (c-'0');
77 flag = umask(0);
78 c = strperm(cp,&cp,~flag&0777);
81 umask(flag);
84 flag = (~c&0777);
86 umask(flag);
90 umask(flag=umask(0));
92 sfprintf(sfstdout,"%s\n",fmtperm(~flag
[all...]

Completed in 310 milliseconds

1234567891011>>