Searched refs:space (Results 51 - 75 of 757) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit-7600.1.25/mac/Panels/
H A DWebAuthenticationPanel.m135 NSURLProtectionSpace *space = [chall protectionSpace];
138 if ([space port] == 0) {
139 host = [[space host] _web_decodeHostName];
141 host = [NSString stringWithFormat:@"%@:%ld", [[space host] _web_decodeHostName], (long)[space port]];
144 NSString *realm = [space realm];
155 if ([space isProxy]) {
158 [space proxyType], host];
168 if ([space isProxy]) {
171 [space proxyTyp
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DCSSStyleDetailsSidebarPanel.css55 -webkit-justify-content: space-around;
61 -webkit-justify-content: space-around;
73 white-space: nowrap;
H A DLegacyProfileView.css57 white-space: nowrap;
H A DSourceCodeTextEditor.css37 white-space: pre;
51 white-space: nowrap;
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dmalloc.h262 #define MALLOC(space, cast, size, type, flags) \
263 (space) = (cast)_MALLOC(size, type, flags)
268 #define REALLOC(space, cast, addr, size, type, flags) \
269 (space) = (cast)_REALLOC(addr, size, type, flags)
271 #define MALLOC_ZONE(space, cast, size, type, flags) \
272 (space) = (cast)_MALLOC_ZONE(size, type, flags)
/macosx-10.10/groff-38/groff/src/devices/grohtml/
H A Dhtml-table.h87 void emit_table_header (int space);
95 void set_space (int space);
118 void begin (int space); // called if we need to use the indent
/macosx-10.10/mail_cmds-30/mail/
H A Dhead.c98 * Copy the line into dynamic string space, then set
140 * Thus, dynamically allocate space in the right string, copying
144 copyin(src, space)
146 char **space;
150 top = cp = *space;
153 *space = cp;
173 * ' ' A space
175 * 'O' A digit or space
177 * 'P' A punctuation char or space
261 * Collect a liberal (space, ta
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_transform/
H A Dspacer.tcl33 proc ::tcl::transform::spacer {chan n {space { }}} {
34 ::chan push $chan [spacer::implementation new $n $space]
133 constructor {n space} {
137 set spacing $space
/macosx-10.10/xnu-2782.1.97/osfmk/ipc/
H A Dipc_port.h99 * 2) in a space (ip_receiver_name != 0, ip_receiver points
100 * to the space but doesn't hold a ref for it)
105 * If the port is active, and ip_receiver points to some space,
106 * then ip_receiver_name != 0, and that space holds receive rights.
294 #define ipc_port_translate_receive(space, name, portp) \
295 ipc_object_translate((space), (name), \
299 #define ipc_port_translate_send(space, name, portp) \
300 ipc_object_translate((space), (name), \
402 ipc_space_t space,
407 ipc_space_t space,
[all...]
H A Dipc_pset.h99 ipc_space_t space,
105 ipc_space_t space,
H A Dipc_port.c589 ipc_space_t space,
594 port->ip_receiver = space;
632 * KERN_INVALID_TASK The space is dead.
633 * KERN_NO_SPACE No room for an entry in the space.
639 ipc_space_t space,
652 kr = ipc_object_alloc(space, IOT_PORT,
658 /* port and space are locked */
659 ipc_port_init(port, space, name);
665 /* unlock space after init */
666 is_write_unlock(space);
587 ipc_port_init( ipc_port_t port, ipc_space_t space, mach_port_name_t name) argument
638 ipc_port_alloc( ipc_space_t space, mach_port_name_t *namep, ipc_port_t *portp) argument
689 ipc_port_alloc_name( ipc_space_t space, mach_port_name_t name, ipc_port_t *portp) argument
1180 ipc_space_t space = base->ip_receiver; local
1398 ipc_space_t space = base->ip_receiver; local
1485 ipc_port_lookup_notify( ipc_space_t space, mach_port_name_t name) argument
1605 ipc_port_copyout_send( ipc_port_t sright, ipc_space_t space) argument
1789 ipc_port_alloc_special( ipc_space_t space) argument
1827 ipc_port_dealloc_special( ipc_port_t port, __assert_only ipc_space_t space) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A Dquirks.css32 /* Tables reset both line-height and white-space in quirks mode. */
35 white-space: normal;
H A Dsvg.css60 white-space: nowrap
/macosx-10.10/zsh-61/zsh/Functions/VCS_Info/Backends/
H A DVCS_INFO_detect_svk27 [[ ${line} == revision:* ]] && vcs_comm[revision]=${line##*[[:space:]]##}
31 (( fhash > 0 )) && [[ ${line} == ' '[^[:space:]]*:* ]] && break
/macosx-10.10/BerkeleyDB-21/db/dist/
H A Ds_include15 space)
68 head defonly space _DB_EXT_DEF_IN_ > $e_dfile
69 head space _DB_EXT_PROT_IN_ > $e_pfile
140 head space defonly _DB_EXT_185_DEF_IN_ > $e_dfile
141 head space _DB_EXT_185_PROT_IN_ > $e_pfile
/macosx-10.10/cups-408/cups/vcnet/regex/
H A Dregexec.c77 #define STATEVARS int vn; char *space
78 #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \
79 if ((m)->space == NULL) return(REG_ESPACE); \
81 #define STATETEARDOWN(m) { free((m)->space); }
82 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A Dregexec.c113 #define STATEVARS long vn; char *space
114 #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \
115 if ((m)->space == NULL) return(REG_ESPACE); \
117 #define STATETEARDOWN(m) { free((m)->space); }
118 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
/macosx-10.10/groff-38/groff/src/preproc/eqn/
H A Dpile.cpp38 uid, baseline_sep+col.space);
118 int space = 0; local
124 if (p[i]->space > space)
125 space = p[i]->space;
139 uid, baseline_sep+space);
259 column::column(box *pp) : box_list(pp), align(CENTER_ALIGN), space(0)
270 space = n;
289 fprintf(stderr, "%c%s %d { ", c, s, space);
[all...]
/macosx-10.10/IOPCIFamily-239.1.2/IOKit/pci/
H A DIOPCIBridge.h67 IORegistryEntry * findMatching( OSIterator * in, IOPCIAddressSpace space );
86 IOPCIAddressSpace * space );
137 IOPCIAddressSpace * space );
138 virtual OSDictionary * constructProperties( IOPCIAddressSpace space );
204 virtual UInt32 configRead32( IOPCIAddressSpace space, UInt8 offset ) = 0;
205 virtual void configWrite32( IOPCIAddressSpace space,
207 virtual UInt16 configRead16( IOPCIAddressSpace space, UInt8 offset ) = 0;
208 virtual void configWrite16( IOPCIAddressSpace space,
210 virtual UInt8 configRead8( IOPCIAddressSpace space, UInt8 offset ) = 0;
211 virtual void configWrite8( IOPCIAddressSpace space,
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DStringTruncator.cpp74 // it to handle all whitespace, not just "space".
76 // Strip single character before ellipsis character, when that character is preceded by a space
77 if (omitStart > 1 && string[omitStart - 1] != space && omitStart > 2 && string[omitStart - 2] == space)
81 while (omitStart > 1 && string[omitStart - 1] == space)
84 // Strip single character after ellipsis character, when that character is followed by a space
85 if ((length - omitEnd) > 1 && string[omitEnd] != space && (length - omitEnd) > 2 && string[omitEnd + 1] == space)
88 while ((length - omitEnd) > 1 && string[omitEnd] == space)
110 // it to handle all whitespace, not just "space"
[all...]
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dopendir.c125 * trades to user space to be done by _getdirentries().
147 int space = 0; local
166 if (space < DIRBLKSIZ) {
167 space += incr;
172 ddptr = buf + (len - space);
176 n = (int)__getdirentries64(fd, ddptr, space, &dirp->dd_td->seekoff);
178 n = _getdirentries(fd, ddptr, space, &dirp->dd_seek);
182 space -= n;
/macosx-10.10/vim-55/runtime/autoload/xml/
H A Dxsl.vim27 \ 'preserve-space' : [[], {'elements' : []}],
30 \ 'strip-space' : [[], {'elements' : []}],
31 \ 'stylesheet' : [['import', 'attribute-set', 'decimal-format', 'include', 'key', 'namespace-alias', 'output', 'param', 'preserve-space', 'strip-space', 'template'], {'id' : [], 'extension-element-prefixes' : [], 'version' : []}],
34 \ 'transform' : [['import', 'attribute-set', 'decimal-format', 'include', 'key', 'namespace-alias', 'output', 'param', 'preserve-space', 'strip-space', 'template'], {'id' : [], 'extension-element-prefixes' : [], 'exclude-result-prefixes' : [], 'version' : []}],
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dipc_clock.c185 ipc_space_t space; local
190 space = current_space();
191 if (ipc_port_translate_send(space, clock_name, &port) != KERN_SUCCESS)
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DAssemblerBuffer.h122 bool isAvailable(int space) argument
124 return m_index + space <= m_storage.capacity();
127 void ensureSpace(int space) argument
129 if (!isAvailable(space))
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldaptcl/
H A Dldaperr.tcl14 if {[clength $line] == 0 || [ctype space $line]} continue

Completed in 292 milliseconds

1234567891011>>