Searched refs:text (Results 176 - 200 of 3083) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dpaned1.rb25 :text=><<EOL).pack(:side=>:top)
37 TkButton.new(f, :text=>'���������', :width=>15, :command=>proc{
42 TkButton.new(f, :text=>'���������������', :width=>15, :command=>proc{
48 add(Tk::Label.new(f, :text=>"This is the\nleft side", :bg=>'yellow'),
49 Tk::Label.new(f, :text=>"This is the\nright side", :bg=>'cyan'))
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/
H A Dremote-ip_sample.rb19 ip.eval_proc{TkButton.new(:command=>proc{puts 'This procesure is on the controller-ip (Ruby/Tk)'}, :text=>'print on Ruby/Tk (controller-ip)').pack(:fill=>:x)}
20 ip.eval_proc{TkButton.new(:command=>'puts {This procesure is on the remote-ip (wish)}', :text=>'print on wish (remote-ip)').pack(:fill=>:x)}
25 ip.eval_proc{TkButton.new(:command=>'ruby {p 111; p Array.new(3,"ruby")}', :text=>'ruby cmd on the remote-ip').pack(:fill=>:x)}
28 ip.eval_proc{TkButton.new(:command=>'exit', :text=>'QUIT').pack(:fill=>:x)}
30 TkButton.new(:command=>proc{exit}, :text=>'QUIT',
H A Dtktimer3.rb16 label.text format("%d.%02d", *(cnt.divmod(100)))
21 timer = TkTimer.new(50, -1, tick).start(0, proc{ label.text('0.00'); 0 })
27 # init_proc : proc{ label.text('0.00'); 0 }
31 b_start = TkButton.new(:text=>'Start', :state=>:disabled) {
35 b_stop = TkButton.new(:text=>'Stop', :state=>:normal) {
51 TkButton.new(:text=>'Reset', :state=>:normal) {
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/treectrl/
H A Dmailwasher.rb17 t.column_create(:text=>'Delete', :textpadx=>pad, :tag=>'delete')
18 t.column_create(:text=>'Bounce', :textpadx=>pad, :tag=>'bounce')
19 t.column_create(:text=>'Status', :width=>80, :textpadx=>pad,
21 t.column_create(:text=>'Size', :width=>40, :textpadx=>pad,
23 t.column_create(:text=>'From', :width=>140, :textpadx=>pad, :tag=>'from')
24 t.column_create(:text=>'Subject', :width=>240, :textpadx=>pad,
26 t.column_create(:text=>'Received', :textpadx=>pad, :arrow=>:up,
28 t.column_create(:text=>'Attachments', :textpadx=>pad, :tag=>'attachments')
37 t.column_configure(0, :text=>'Delete', :textpadx=>pad, :tag=>'delete')
38 t.column_configure(1, :text
[all...]
/macosx-10.10.1/CPANInternal-159.1/JSON-XS-3.01/t/
H A D19_incr.t11 my ($coder, $text) = @_;
16 for (0 .. length $text) {
17 my $a = substr $text, 0, $_;
18 my $b = substr $text, $_;
25 ok ($coder->encode ($data) eq $coder->encode ($coder->decode ($text)), "data");
36 my $text = '[5],{"":1} , [ 1,2, 3], {"3":null}';
38 for (0 .. length $text) {
39 my $a = substr $text, 0, $_;
40 my $b = substr $text, $_;
60 my $text
[all...]
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/plugins/
H A Ddigestmd5.c462 /* Chris Newman clarified that the following text in DIGEST-MD5 spec
896 static int dec_3des(context_t *text, argument
903 des_context_t *c = (des_context_t *) text->cipher_dec_context;
933 static int enc_3des(context_t *text, argument
940 des_context_t *c = (des_context_t *) text->cipher_enc_context;
948 memcpy(output, input, inputlen); /* text */
967 static int init_3des(context_t *text, argument
975 c = (des_context_t *) text->utils->malloc(2 * sizeof(des_context_t));
988 text->cipher_enc_context = (cipher_context_t *) c;
1002 text
1014 dec_des(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16] __attribute__((unused)), char *output, unsigned *outputlen) argument
1054 enc_des(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
1091 init_des(context_t *text, unsigned char enckey[16], unsigned char deckey[16]) argument
1122 free_des(context_t *text) argument
1140 rc4_init(rc4_context_t *text, const unsigned char *key, unsigned keylen) argument
1167 rc4_encrypt(rc4_context_t *text, const char *input, char *output, unsigned len) argument
1201 rc4_decrypt(rc4_context_t *text, const char *input, char *output, unsigned len) argument
1235 free_rc4(context_t *text) argument
1243 init_rc4(context_t *text, unsigned char enckey[16], unsigned char deckey[16]) argument
1265 dec_rc4(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16] __attribute__((unused)), char *output, unsigned *outputlen) argument
1282 enc_rc4(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
1322 create_layer_keys(context_t *text, const sasl_utils_t *utils, HASH key, int keylen, unsigned char enckey[16], unsigned char deckey[16]) argument
1398 context_t *text = (context_t *) context; local
1500 context_t *text = (context_t *) context; local
1589 context_t *text = (context_t *) context; local
1604 context_t *text = (context_t *) conn_context; local
1703 DigestCalcHA1FromSecret(context_t * text, const sasl_utils_t * utils, HASH HA1, unsigned char *authorization_id, unsigned char *pszNonce, unsigned char *pszCNonce, HASHHEX SessionKey) argument
1744 create_response(context_t * text, const sasl_utils_t * utils, unsigned char *nonce, unsigned int ncvalue, unsigned char *cnonce, char *qop, const sasl_http_request_t *request, HASH Secret, char *authorization_id, char **response_value) argument
1914 context_t *text; local
1940 context_t *text = (context_t *) stext; local
2168 context_t *text = (context_t *) stext; local
3015 context_t *text = (context_t *) conn_context; local
3209 DigestCalcHA1(context_t * text, const sasl_utils_t * utils, char *pszAlg, unsigned char *pszUserName, unsigned char *pszRealm, sasl_secret_t * pszPassword, unsigned char *pszAuthorization_id, unsigned char *pszNonce, unsigned char *pszCNonce, HASHHEX SessionKey) argument
3267 calculate_response(context_t * text, const sasl_utils_t * utils, char *algorithm, unsigned char *username, unsigned char *realm, unsigned char *nonce, unsigned int ncvalue, unsigned char *cnonce, char *qop, const sasl_http_request_t *request, sasl_secret_t * passwd, unsigned char *authorization_id, char **response_value) argument
3377 make_client_response(context_t *text, sasl_client_params_t *params, sasl_out_params_t *oparams) argument
3656 context_t *text = (context_t *) ctext; local
4065 context_t *text = (context_t *) ctext; local
4220 context_t *text; local
4254 context_t *text = (context_t *) ctext; local
4330 context_t *text = (context_t *) ctext; local
4403 context_t *text = (context_t *) ctext; local
4510 context_t *text = (context_t *) conn_context; local
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/bwidget/
H A Dtmpldlg.rb18 frame = nb.insert('end', 'demoDlg', :text=>'Dialog')
20 titf1 = Tk::BWidget::TitleFrame.new(frame, :text=>'Resources')
21 titf2 = Tk::BWidget::TitleFrame.new(frame, :text=>'Template Dialog')
22 titf3 = Tk::BWidget::TitleFrame.new(frame, :text=>'Message Dialog')
23 titf4 = Tk::BWidget::TitleFrame.new(frame, :text=>'Other dialog')
28 Tk.pack(TkRadiobutton.new(subf, :text=>'English', :value=>'en',
30 TkRadiobutton.new(subf, :text=>'French', :value=>'fr',
32 TkRadiobutton.new(subf, :text=>'German', :value=>'de',
49 labf1 = Tk::BWidget::LabelFrame.new(parent, :text=>'Button side',
53 Tk.pack(TkRadiobutton.new(subf, :text
[all...]
H A Ddnd.rb10 frame = nb.insert('end', 'demoDnD', :text=>'Drag and Drop')
12 titf1 = Tk::BWidget::TitleFrame.new(frame, :text=>'Drag source')
18 labf1 = Tk::BWidget::LabelFrame.new(subf, :text=>'Label (text)',
21 lab = Tk::BWidget::Label.new(f, :text=>'Drag this text',
24 labf2 = Tk::BWidget::LabelFrame.new(subf, :text=>'Label (bitmap)',
32 titf2 = Tk::BWidget::TitleFrame.new(frame, :text=>'Drop targets')
37 labf1 = Tk::BWidget::LabelFrame.new(subf, :text=>'Label', :width=>14)
H A Dselect.rb12 frame = nb.insert('end', 'demoSelect', :text=>'Spin & Combo')
14 titf1 = Tk::BWidget::TitleFrame.new(frame, :text=>'SpinBox')
24 labf = Tk::BWidget::LabelFrame.new(subf, :text=>'Options',
29 chk1 = TkCheckbutton.new(subf, :text=>'Non editable',
35 chk2 = TkCheckbutton.new(subf, :text=>'Disabled',
45 titf2 = Tk::BWidget::TitleFrame.new(frame, :text=>'ComboBox')
59 labf = Tk::BWidget::LabelFrame.new(subf, :text=>'Options', :side=>:top,
63 chk1 = TkCheckbutton.new(subf, :text=>'Non editable',
69 chk2 = TkCheckbutton.new(subf, :text=>'Disabled',
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dpp.rb63 # The method should use PP#text, PP#breakable, PP#nest, PP#group and
184 # text ','
187 text ','
230 seplist(obj.pretty_print_instance_variables, lambda { text ',' }) {|v|
233 text v
234 text '='
248 text '=>'
286 q.text self.inspect
288 q.text self.inspect
299 q.text '
[all...]
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dayb.pl33 # replaces heading content with the AYB text
46 my ( $self, $tag, $attr, $text ) = @_;
50 $text = "<$tag "
54 $self->{output} .= $text;
56 "self,tagname,attr,text"
61 my ( $self, $tag, $text ) = @_;
65 $self->{output} .= $text;
67 "self,tagname,text"
72 my ( $self, $text ) = @_;
73 $self->{output} .= $self->{ayb} ? $ayb[($self->{i} += 1 ) %= @ayb] : $text;
[all...]
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dayb.pl33 # replaces heading content with the AYB text
46 my ( $self, $tag, $attr, $text ) = @_;
50 $text = "<$tag "
54 $self->{output} .= $text;
56 "self,tagname,attr,text"
61 my ( $self, $tag, $text ) = @_;
65 $self->{output} .= $text;
67 "self,tagname,text"
72 my ( $self, $text ) = @_;
73 $self->{output} .= $self->{ayb} ? $ayb[($self->{i} += 1 ) %= @ayb] : $text;
[all...]
/macosx-10.10.1/CPANInternal-159.1/Test-use-ok-0.11/inc/Pod/
H A DMarkdown.pm23 Text => [], # final text
57 my ($parser, $text) = @_;
59 $text = $parser->_indent_text($text);
60 push @{ $data->{Text} }, $text;
71 my ($parser, $text) = @_;
79 my @lines = map { $indent . $_; } split(/\n/, $text);
84 my $text = $_[1];
85 my @trimmed = grep { $_; } split(/\n/, $text);
93 # cleaning the text
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Object/
H A Dregress-90596-001.js186 * Strips out any whitespace from the text -
188 function compactThis(text)
193 for (var i=0; i<text.length; i++)
195 charCode = text.charCodeAt(i);
198 ret += text.charAt(i);
225 * strips off parens at beginning and end of text -
227 function stripParens(text)
230 var arr = text.match(/^\((.*)\)$/);
235 return text;
240 * strips off braces at beginning and end of text
[all...]
H A Dregress-90596-002.js186 * Strips out any whitespace from the text -
188 function compactThis(text)
193 for (var i=0; i<text.length; i++)
195 charCode = text.charCodeAt(i);
198 ret += text.charAt(i);
225 * strips off parens at beginning and end of text -
227 function stripParens(text)
230 var arr = text.match(/^\((.*)\)$/);
235 return text;
240 * strips off braces at beginning and end of text
[all...]
/macosx-10.10.1/SmartcardCCID-55008/ccid/ccid/src/
H A Dccid.c504 const char *text; local
510 text = "Command not supported or not allowed";
514 text = "Wrong command length";
518 text = "Invalid slot number";
522 text = "Card short-circuiting. Card powered off";
526 text = "ATR too long (> 33)";
530 text = "No data exchanged";
534 text = "Reader in EMV mode and T=1 message too long";
538 text = "Protocol error in EMV mode";
542 text
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DAssistedNodeInformation.h32 #include <wtf/text/WTFString.h>
68 : text(item.text)
76 OptionItem(const String& text, bool isGroup, int parentID, bool selected, bool disabled) argument
77 : text(text)
84 String text; member in struct:WebKit::OptionItem
/macosx-10.10.1/llvmCore-3425.0.34/docs/_static/
H A Dllvm.css14 table { text-align: center; border: 2px solid black;
21 text-align: center; vertical-align: middle; }
31 text-align: center;
38 h1, .doc_title, .title { text-align: left; font-size: 25pt }
40 h2, .doc_section { text-align: center; font-size: 22pt;
44 text-align: left; font-size: 12pt;
53 .doc_author { text-align: left; font-weight: bold; padding-left: 20pt }
54 .doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt }
56 .doc_footer { text-align: left; padding: 0 0 0 0 }
60 .doc_table { text
[all...]
/macosx-10.10.1/ruby-106/ruby/test/
H A Dtest_prettyprint.rb22 hello.text 'hello'
23 hello.breakable; hello.text 'a'
25 hello.breakable; hello.text 'b'
27 hello.breakable; hello.text 'c'
29 hello.breakable; hello.text 'd'
194 q.text @string
197 q.text '['
204 q.text ','
210 q.text ']'
218 q.text
[all...]
/macosx-10.10.1/CPANInternal-159.1/Parse-Yapp-1.05/lib/Parse/Yapp/
H A DLalr.pm5 # (see the pod text in Parse::Yapp module for use and distribution rights)
85 my($text);
88 $text=$self->SUPER::Warnings();
91 and $text.="$nbsr shift/reduce conflict".($nbsr > 1 ? "s" : "");
96 and $text.=" and ";
97 $text.="$nbrr reduce/reduce conflict".($nbrr > 1 ? "s" : "");
102 and $text.="\n";
104 $text;
111 my($text);
117 $text
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dbuffer.h42 #define GPT (current_buffer->text->gpt)
43 #define GPT_BYTE (current_buffer->text->gpt_byte)
50 #define Z (current_buffer->text->z)
51 #define Z_BYTE (current_buffer->text->z_byte)
56 #define BEG_ADDR (current_buffer->text->beg)
65 #define GPT_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte - BEG_BYTE)
68 #define GAP_END_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte + current_buffer->text
474 struct buffer_text *text; member in struct:buffer
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/tests/progs/
H A Dslapd-common.c227 char *text = NULL; local
232 ldap_get_option( ld, LDAP_OPT_DIAGNOSTIC_MESSAGE, (void *)&text );
237 text == NULL ? "" : text,
240 if ( text ) {
241 ldap_memfree( text );
242 text = NULL;
245 ldap_get_option( ld, LDAP_OPT_MATCHED_DN, (void *)&text );
246 if ( text != NULL ) {
247 if ( text[
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dundo.c7 reading lines of text with interactive input and history editing.
72 alloc_undo_entry (what, start, end, text)
75 char *text;
83 temp->text = text;
92 rl_add_undo (what, start, end, text)
95 char *text;
99 temp = alloc_undo_entry (what, start, end, text);
117 free (release->text);
132 new->text
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Druleiter.cpp25 text(theText),
33 return buf == 0 && pos.getIndex() == text.length();
48 UnicodeString name = sym->parseReference(text, pos, text.length());
118 text.extract(pos.getIndex(), maxLookAhead, result);
130 text.extract(0, b, result);
131 return result.append((UChar) 0x7C).append(text, b, 0x7FFFFFFF); // Insert '|' at index
140 return (i < text.length()) ? text.char32At(i) : (UChar32)DONE;
152 if (pos.getIndex() > text
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/
H A Dtom_doc.rb57 comment.text.gsub!(/(\A\s*# )(Public|Internal|Deprecated):\s+/) do
68 # Public: Parses TomDoc from text
70 # text - A String containing TomDoc-format text.
83 def self.parse text
86 parser.tokenize text
112 RDoc::Markup::Heading === part && part.text == 'Signature'
124 signature and signature.text
144 @section = heading.text
193 # Internal: Turns text int
[all...]

Completed in 131 milliseconds

1234567891011>>