Searched refs:label (Results 26 - 50 of 996) sorted by relevance

1234567891011>>

/macosx-10.10.1/OpenSSL098-52/src/ssl/
H A Dkssl_lcl.h71 void print_krb5_data(char *label, krb5_data *kdata);
72 void print_krb5_authdata(char *label, krb5_authdata **adata);
73 void print_krb5_keyblock(char *label, krb5_keyblock *keyblk);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/examples/tepam/
H A D2b_argument_dialogbox_context.demo47 -font {-label Font -variable Font -default "Courier 10"} \
48 -color {-label "Text (foreground) color" -variable Fg -default red4} \
49 -color {-label "Background color" -variable Bg -default white}]=="ok"} {
66 -font {-label Font -variable Font -default "Ariel 10 italic"} \
67 -color {-label "Text (foreground) color" -variable Fg -default blue4} \
68 -color {-label "Background color" -variable Bg -default lightblue1}]=="ok"} {
H A D2a_argument_dialogbox_all_widgets.demo34 -entry {-label Name -variable Entry}]=="ok"} {
54 -checkbox {-label "Font sytle" -variable FontStyle \
75 -radiobox {-label "Text adjustment" -variable Adjustment \
93 -checkbutton {-label Capitalize -variable Capitalize -default 1}]=="ok"} {
110 -combobox {-label "Text size" -variable Size \
130 -listbox {-label "Text styles" -variable Styles \
152 -disjointlistbox {-label "Preferred scripting languages" -variable Languages \
170 -file {-label "Image file" -variable ImageF \
188 -existingfile {-label "Image file" -variable ImageF \
205 -directory {-label "Repor
[all...]
/macosx-10.10.1/emacs-93/emacs/oldXMenu/
H A DAddSel.c20 XMenuAddSelection(display, menu, p_num, data, label, active, help)
25 char *label; /* Selection label. */
39 if (label == NULL) {
58 * Determine label size.
60 label_length = strlen(label);
61 label_width = XTextWidth(menu->s_fnt_info, label, label_length);
66 if (!strcmp (label, "--") || !strcmp (label, "---"))
78 select->label
[all...]
H A DInsSel.c20 XMenuInsertSelection(menu, p_num, s_num, data, label, active)
25 char *label; /* Selection label. */
39 if (label == NULL) {
67 * Determine label size.
69 label_length = strlen(label);
70 label_width = XTextWidth(menu->s_fnt_info, label, label_length);
76 if (!strcmp (label, "--") || !strcmp (label, "---"))
89 select->label
[all...]
H A DAddPane.c19 XMenuAddPane(display, menu, label, active)
22 register char *label; /* Selection label. */
34 if (label == NULL) {
54 * Determine label size.
56 label_length = strlen(label);
58 label,
78 pane->label = label;
H A DInsPane.c21 XMenuInsertPane(menu, p_num, label, active)
24 char *label; /* Selection label. */
37 if (label == NULL) {
64 * Determine label size.
66 label_length = strlen(label);
67 label_width = XTextWidth(menu->p_fnt_info, label, label_length);
85 pane->label = label;
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/markup/
H A Dlist_item.rb4 # For BULLET, NUMBER, LALPHA and UALPHA lists, the label will always be nil.
5 # For NOTE and LABEL lists, the list label may contain:
7 # * a single String for a single label
14 # The label for the ListItem
16 attr_accessor :label
24 # Creates a new ListItem with an optional +label+ containing +parts+
26 def initialize label = nil, *parts
27 @label = label
41 @label
[all...]
/macosx-10.10.1/xnu-2782.1.97/security/
H A D_label.h75 struct label { struct
H A Dmac_mach_internal.h67 struct label *mac_thread_get_threadlabel(struct thread *thread);
68 struct label *mac_thread_get_uthreadlabel(struct uthread *uthread);
H A Dmac_process.c82 struct label *
85 struct label *label; local
87 label = mac_labelzone_alloc(MAC_WAITOK);
88 if (label == NULL)
90 MAC_PERFORM(cred_label_init, label);
91 return (label);
101 mac_cred_label_free(struct label *label) argument
103 MAC_PERFORM(cred_label_destroy, label);
137 mac_cred_label_externalize(struct label *label, char *elements, char *outbuf, size_t outbuflen, int flags __unused) argument
148 mac_cred_label_internalize(struct label *label, char *string) argument
539 struct label *label; local
549 mac_lctx_label_free(struct label *label) argument
557 mac_lctx_label_externalize(struct label *label, char *elements, char *outbuf, size_t outbuflen) argument
568 mac_lctx_label_internalize(struct label *label, char *string) argument
666 struct label *label; local
682 mac_thread_label_free(struct label *label) argument
[all...]
H A Dmac_socket.c88 struct label *
91 struct label *label; local
94 label = mac_labelzone_alloc(flag);
95 if (label == NULL)
98 MAC_CHECK(socket_label_init, label, flag);
100 MAC_PERFORM(socket_label_destroy, label);
101 mac_labelzone_free(label);
105 return (label);
108 static struct label *
111 struct label *label; local
145 mac_socket_label_free(struct label *label) argument
153 mac_socket_peer_label_free(struct label *label) argument
182 mac_socket_label_externalize(struct label *label, char *elements, char *outbuf, size_t outbuflen) argument
193 mac_socketpeer_label_externalize(struct label *label, char *elements, char *outbuf, size_t outbuflen) argument
204 mac_socket_label_internalize(struct label *label, char *string) argument
239 struct label *label; local
328 mac_socket_label_update(kauth_cred_t cred, struct socket *so, struct label *label) argument
541 struct label *label; local
551 (socket_t)so, so->so_label, mbuf, label); local
[all...]
H A Dmac_posix_shm.c73 static struct label *
76 struct label *label; local
78 label = mac_labelzone_alloc(MAC_WAITOK);
79 if (label == NULL)
81 MAC_PERFORM(posixshm_label_init, label);
82 return (label);
93 mac_posixshm_label_free(struct label *label) argument
96 MAC_PERFORM(posixshm_label_destroy, label);
[all...]
H A Dmac_internal.h122 * label namespace name.
132 * Type of list used to manage label namespace names.
225 struct label *mac_labelzone_alloc(int flags);
226 void mac_labelzone_free(struct label *label);
228 void mac_label_init(struct label *label);
229 void mac_label_destroy(struct label *label);
236 int mac_cred_label_externalize(struct label *, cha
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGDisassembler.h52 void setStartOfCode(MacroAssembler::Label label) { m_startOfCode = label; } argument
53 void setForBlockIndex(BlockIndex blockIndex, MacroAssembler::Label label) argument
55 m_labelForBlockIndex[blockIndex] = label;
57 void setForNode(Node* node, MacroAssembler::Label label) argument
59 ASSERT(label.isSet());
60 m_labelForNode.add(node, label);
62 void setEndOfMainPath(MacroAssembler::Label label) argument
64 m_endOfMainPath = label;
66 void setEndOfCode(MacroAssembler::Label label) argument
[all...]
/macosx-10.10.1/OpenSSL098-52/src/times/091/
H A Dmips-rel.pl13 local($mhz,$label,@data)=@_;
19 printf("%s %6.1f %6.1f %6.1f %6.1f\n",$label,@data);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DButtonToolbarItem.css33 .toolbar.icon-and-label-vertical .item.button {
37 .toolbar.icon-and-label-horizontal .item.button {
56 .toolbar.label-only .item.button > .glyph {
60 .toolbar .item.button > .label {
65 body.mac-platform.legacy .toolbar .item.button > .label {
70 .toolbar.label-only .item.activate.button.activated > .label {
74 .toolbar.icon-and-label-horizontal .item.button > .label {
78 .toolbar.icon-only .item.button > .label {
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITDisassembler.h50 void setStartOfCode(MacroAssembler::Label label) { m_startOfCode = label; } argument
51 void setForBytecodeMainPath(unsigned bytecodeIndex, MacroAssembler::Label label) argument
53 m_labelForBytecodeIndexInMainPath[bytecodeIndex] = label;
55 void setForBytecodeSlowPath(unsigned bytecodeIndex, MacroAssembler::Label label) argument
57 m_labelForBytecodeIndexInSlowPath[bytecodeIndex] = label;
59 void setEndOfSlowPath(MacroAssembler::Label label) { m_endOfSlowPath = label; } argument
60 void setEndOfCode(MacroAssembler::Label label) { m_endOfCode = label; } argument
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/
H A Dx86cpuid.pl22 &jnc (&label("done"));
39 &jne (&label("notP4"));
42 &jne (&label("notP4"));
46 &jnc (&label("done"));
50 &ja (&label("done"));
66 &jnc (&label("notsc"));
78 &jnc (&label("nohalt")); # no TSC
82 &jnz (&label("nohalt")); # not enough privileges
87 &jnc (&label("nohalt")); # interrupts are disabled
118 &jnc (&label("nospi
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/perlasm/
H A Dcbc.pl99 &jz(&label("decrypt"));
105 &jz(&label("encrypt_finish"));
142 &jnz(&label("encrypt_loop"));
148 &jz(&label("finish"));
149 &call(&label("PIC_point"));
152 &lea("ecx",&DWP(&label("cbc_enc_jmp_table")."-".&label("PIC_point"),"edx"));
157 #&mov($count,&DWP(&label("cbc_enc_jmp_table"),"",$count,4));
169 &jmp(&label("ejend"));
199 &jmp(&label("finis
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/libDER/libDERUtils/
H A DprintFields.h45 void printHeader(const char *label);
53 const char *label,
69 const char *label,
/macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/
H A DRepatchBuffer.h108 void relinkCallerToTrampoline(ReturnAddressPtr returnAddress, CodeLocationLabel label) argument
110 relink(CodeLocationCall(CodePtr(returnAddress)), label);
123 void relinkNearCallerToTrampoline(ReturnAddressPtr returnAddress, CodeLocationLabel label) argument
125 relink(CodeLocationNearCall(CodePtr(returnAddress)), label);
133 void replaceWithLoad(CodeLocationConvertibleLoad label) argument
135 MacroAssembler::replaceWithLoad(label);
138 void replaceWithAddressComputation(CodeLocationConvertibleLoad label) argument
140 MacroAssembler::replaceWithAddressComputation(label);
143 void setLoadInstructionIsActive(CodeLocationConvertibleLoad label, bool isActive) argument
146 replaceWithLoad(label);
151 startOfBranchPtrWithPatchOnRegister(CodeLocationDataLabelPtr label) argument
156 startOfPatchableBranchPtrWithPatchOnAddress(CodeLocationDataLabelPtr label) argument
161 startOfPatchableBranch32WithPatchOnAddress(CodeLocationDataLabel32 label) argument
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/asm/x86/
H A Dsqr.pl20 &jz(&label("sw_finish"));
37 &jnz(&label("sw_loop"));
42 &jz(&label("sw_end"));
53 &jz(&label("sw_end")) if ($i != 7-1);
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/blt/
H A Dplot1.rb6 plot = Tk::BLT::PlotComponent::Element.new(graph, :linewidth=>0, :label=>'foo')
H A Dplot1b.rb7 plot.configure(:linewidth=>0, :label=>'foo',

Completed in 232 milliseconds

1234567891011>>