Searched refs:label (Results 1 - 25 of 1101) sorted by relevance

1234567891011>>

/macosx-10.10/mDNSResponder-561.1.1/Clients/
H A DClientCommon.h41 extern const char *GetNextLabel(const char *cstr, char label[64]);
H A DClientCommon.c46 const char *GetNextLabel(const char *cstr, char label[64]) argument
48 char *ptr = label;
49 while (*cstr && *cstr != '.') // While we have characters in the label...
69 if (ptr >= label+64) { label[63] = 0; return(NULL); } // Illegal label more than 63 bytes
71 *ptr = 0; // Null-terminate label text
72 if (ptr == label) return(NULL); // Illegal empty label
/macosx-10.10/groff-38/groff/contrib/gdiffmk/
H A Dgdiffmk.sh267 # To make a very unlikely label even more unlikely ...
268 label=__diffmk_$$__
271 /^#ifdef '"${label}"'/,/^#endif \/\* '"${label}"'/ {
272 /^#ifdef '"${label}"'/ s/.*/.mc '"${ADDMARK}"'/
273 /^#endif \/\* '"${label}"'/ s/.*/.mc/
277 /^#ifndef '"${label}"'/,/^#endif \/\* [!not ]*'"${label}"'/ {
278 /^#else \/\* '"${label}"'/,/^#endif \/\* '"${label}"'/ {
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dmenubar2.rb12 [:command, 'new', {:label=>'New'}],
13 [:command, 'close', {:label=>'Close'}],
15 [:command, 'quit', {:label=>'Quit'}]
22 mb.add(:command, '.edit.undo', :label=>'Undo', :underline=>0)
24 mb.add(:command, '.edit.cut', :label=>'Cut', :underline=>1)
25 mb.add(:command, '.edit.copy', :label=>'Copy', :underline=>1)
26 mb.add(:command, '.edit.paste', :label=>'Paste', :underline=>0)
30 :variable=>viewmode, :value=>'NAME', :label=>'by Name'}
33 :variable=>viewmode, :value=>'DATE', :label=>'by Date'}
37 mb.add(:cascade, '.options.prefs', :label
[all...]
H A Dmainwindow.rb12 :label=>'New', :underline=>0,
18 :label=>'Open ...', :underline=>0,
24 :label=>'Save', :underline=>0,
30 :label=>'Save As', :underline=>5,
36 :label=>'Print', :underline=>0,
44 :label=>'Close', :underline=>0,
52 :label=>'Exit', :underline=>1,
H A Dmenubar.rb14 :label=>'New', :helpstr=>'Open new document',
20 :label=>'Close', :helpstr=>'Close current document',
28 :label=>'Exit', :helpstr=>'Exit application',
41 :label=>'Undo', :underline=>0,
50 :label=>'Cut', :underline=>1,
57 :label=>'Copy', :underline=>1,
64 :label=>'Paste', :underline=>0,
79 :label=>'by Name', :helpstr=>'View files by name order',
86 :label=>'by Date', :helpstr=>'View files by date order',
92 :label
[all...]
/macosx-10.10/emacs-93/emacs/oldXMenu/
H A DChgPane.c9 * XMenuChangePane - Change the label of a menu pane.
19 XMenuChangePane(menu, p_num, label)
22 char *label; /* Selection label. */
32 if (label == NULL) {
44 * Determine label size.
46 label_length = strlen(label);
47 label_width = XTextWidth(menu->p_fnt_info, label, label_length);
52 p_ptr->label = label;
[all...]
H A DFindPane.c9 * XMenuFindPane - Find the first menu pane who's label matches a
20 XMenuFindPane(menu, label)
22 register char *label;
30 if (label == NULL) {
36 * Find the pane who's label matches the given label.
44 if (*label == '\0') {
50 if (strncmp (label, p_ptr->label, p_ptr->label_length) == 0) {
H A DFindSel.c11 * label matches a particular string.
21 XMenuFindSelection(menu, p_num, label)
24 register char *label;
33 if (label == NULL) {
53 if (*label == '\0') {
59 if (strncmp (label, s_ptr->label, s_ptr->label_length) == 0) {
H A DChgSel.c19 XMenuChangeSelection(display, menu, p_num, s_num, data, data_sw, label, label_sw)
26 char *label; /* Selection label. */
27 int label_sw; /* Change to new label? */
38 if (label == NULL) {
56 * Reset the label?
60 * Determine label size.
62 label_length = strlen(label);
63 label_width = XTextWidth(menu->s_fnt_info, label, label_length);
68 s_ptr->label
[all...]
/macosx-10.10/xnu-2782.1.97/security/
H A Dmac_sysv_shm.c80 static struct label *
83 struct label *label; local
85 label = mac_labelzone_alloc(MAC_WAITOK);
86 if (label == NULL)
88 MAC_PERFORM(sysvshm_label_init, label);
89 return (label);
96 shmsegptr->label = mac_sysv_shm_label_alloc();
100 mac_sysv_shm_label_free(struct label *label) argument
[all...]
H A Dmac_policy.h97 struct label;
162 sleep during label initialization operations; it will be noted when
166 generic label for the given object. What follows initialization is
167 creation, where a label is made specific to the object it is associated
168 with. Destruction occurs when the label is no longer needed, such as
170 be performed in label destroy operations.
172 Where possible, the label entry points have identical parameters. If
173 the policy module does not require structure-specific label
243 @brief Initialize BPF descriptor label
244 @param label Ne
[all...]
H A Dmac_sysv_sem.c78 static struct label *
81 struct label *label; local
83 label = mac_labelzone_alloc(MAC_WAITOK);
84 if (label == NULL)
86 MAC_PERFORM(sysvsem_label_init, label);
87 return (label);
94 semakptr->label = mac_sysv_sem_label_alloc();
98 mac_sysv_sem_label_free(struct label *label) argument
[all...]
H A Dmac_inet.c82 static struct label *
85 struct label *label; local
88 label = mac_labelzone_alloc(flag);
89 if (label == NULL)
91 MAC_CHECK(inpcb_label_init, label, flag);
93 MAC_PERFORM(inpcb_label_destroy, label);
94 mac_labelzone_free(label);
97 return (label);
110 static struct label *
113 struct label *label; local
140 mac_inpcb_label_free(struct label *label) argument
163 mac_ipq_label_free(struct label *label) argument
189 struct label *label; local
211 struct label *label; local
232 struct label *label; local
246 struct label *label; local
256 struct label *label; local
266 struct label *label; local
276 struct label *label; local
[all...]
H A Dmac_pty.c9 mac_pty_notify_grant(proc_t p, struct tty *tp, dev_t dev, struct label *label) { argument
10 MAC_PERFORM(pty_notify_grant, p, tp, dev, label);
14 mac_pty_notify_close(proc_t p, struct tty *tp, dev_t dev, struct label *label) { argument
15 MAC_PERFORM(pty_notify_close, p, tp, dev, label);
H A Dmac_label.c46 zone_label = zinit(sizeof(struct label),
47 8192 * sizeof(struct label),
48 sizeof(struct label), "MAC Labels");
54 struct label *
57 struct label *l;
60 l = (struct label *) zalloc_noblock(zone_label);
62 l = (struct label *) zalloc(zone_label);
66 bzero(l, sizeof(struct label));
72 mac_labelzone_free(struct label *l)
76 panic("Free of NULL MAC label\
[all...]
H A Dmac_net.c80 struct label *
84 struct label *label; local
101 label = (struct label *)(tag+1);
102 return (label);
105 static struct label *
108 struct label *label; local
110 label
120 struct label *label; local
129 struct label *label; local
151 struct label *label; local
165 mac_bpfdesc_label_free(struct label *label) argument
175 struct label *label; local
183 mac_ifnet_label_free(struct label *label) argument
208 struct label *label; local
256 mac_ifnet_label_externalize(struct label *label, char *elements, char *outbuf, size_t outbuflen) argument
264 mac_ifnet_label_internalize(struct label *label, char *string) argument
280 struct label *label; local
289 struct label *label; local
396 struct label *label; local
412 struct label *label; local
[all...]
H A Dmac_sysv_msg.c77 static struct label *
80 struct label *label; local
82 label = mac_labelzone_alloc(MAC_WAITOK);
83 if (label == NULL)
85 MAC_PERFORM(sysvmsg_label_init, label);
86 return (label);
93 msgptr->label = mac_sysv_msgmsg_label_alloc();
96 static struct label *
99 struct label *labe local
[all...]
H A Dmac_posix_sem.c72 static struct label *
75 struct label *label; local
77 label = mac_labelzone_alloc(MAC_WAITOK);
78 if (label == NULL)
80 MAC_PERFORM(posixsem_label_init, label);
81 return (label);
92 mac_posixsem_label_free(struct label *label) argument
95 MAC_PERFORM(posixsem_label_destroy, label);
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLOptGroupElement.idl22 [Reflect] attribute DOMString label;
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/examples/tepam/
H A D2_argument_dialogbox_introduction.demo51 -existingfile {-label "Source file" -variable SourceFile} \
52 -existingdirectory {-label "Destination folder" -variable DestDir} \
53 -checkbutton {-label "Overwrite existing file" -variable Overwrite}]
77 # attribute is -label that allows adding a label to the data entry widget. Other
91 -frame {-label "Entries"} \
92 -entry {-label Entry1 -variable Entry1} \
93 -entry {-label Entry2 -variable Entry2 -default "my default"} \
94 -frame {-label "Listbox & combobox"} \
95 -listbox {-label "Listbo
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/i386/commpage/
H A Dcommpage.h60 #define COMMPAGE_DESCRIPTOR_NAME(label) _commpage_ ## label
63 #define COMMPAGE_DESCRIPTOR_REFERENCE(label) \
64 .quad COMMPAGE_DESCRIPTOR_NAME(label)
66 #define COMMPAGE_FUNCTION_START(label,codetype,alignment) \
70 L ## label ## :
72 #define COMMPAGE_DESCRIPTOR(label,address) \
73 L ## label ## _end: ;\
74 .set L ## label ## _size, L ## label ## _en
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2toc/include/format/
H A Djson.inc16 label doctools::toc::introduction
24 label doctools::toc::structure
29 label doctools::toc::parse
32 label Processing
35 label {Table of Contents}
49 "label" : "doctools::toc::introduction"
58 "label" : "doctools::toc::structure"
64 "label" : "doctools::toc::parse"
67 "label" : "Processing"
70 "label"
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DActivateButtonToolbarItem.js26 WebInspector.ActivateButtonToolbarItem = function(identifier, defaultToolTip, activatedToolTip, label, image, suppressEmboss, role)
30 console.assert(label);
36 this.label = label;
44 get label()
49 set label(newLabel)
H A DButtonToolbarItem.js26 WebInspector.ButtonToolbarItem = function(identifier, toolTip, label, image, suppressEmboss, role)
30 console.assert(label);
36 this.label = label;
39 WebInspector.ButtonToolbarItem.LabelStyleClassName = "label";
46 get label()
51 set label(newLabel)

Completed in 185 milliseconds

1234567891011>>