Searched refs:text (Results 1 - 25 of 3083) sorted by relevance

1234567891011>>

/macosx-10.10.1/SmartcardCCID-55008/ccid/ccid/MacOSX/
H A Dconvert_reader_h.pl24 my $text =
38 print $text;
/macosx-10.10.1/ruby-106/ruby/tool/
H A Dgen_dummy_probes.rb4 text = ARGF.read
5 text.gsub!(/^(?!#)(.*)/){$1.upcase}
8 text.gsub!(%r'/\*.*?\*/'m, '')
11 text.gsub!(/^#pragma.*$/, '')
14 text.gsub!(/PROVIDER RUBY \{/, "#ifndef\t_PROBES_H\n#define\t_PROBES_H\n#define DTRACE_PROBES_DISABLED 1\n")
17 text.gsub!(/\};/, "#endif\t/* _PROBES_H */")
19 text.gsub!(/__/, '_')
21 text.gsub!(/\([^,)]+\)/, '(arg0)')
22 text.gsub!(/\([^,)]+,[^,)]+\)/, '(arg0, arg1)')
23 text
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/markup/
H A Dspecial.rb12 # Special text
14 attr_accessor :text
17 # Creates a new special sequence of +type+ with +text+
19 def initialize(type, text)
20 @type, @text = type, text
24 # Specials are equal when the have the same text and type
27 self.text == o.text && self.type == o.type
31 "#<RDoc::Markup::Special:0x%x @type=%p, @text
[all...]
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/text-relocs/
H A Dspace.s1 .text
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/scripts/
H A Dxxd.pl38 $text = <$input>;
41 $text = join(', ', map('0x' . unpack("H*", $_), split(undef, $text)));
44 print $output "const unsigned char $varname\[\] = {\n$text\n};\n";
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dschriter.cpp27 text()
34 text(textStr)
37 UCharCharacterIterator::text = this->text.getBuffer(); member in class:UCharCharacterIterator
43 text(textStr)
46 UCharCharacterIterator::text = this->text.getBuffer(); member in class:UCharCharacterIterator
54 text(textStr)
57 UCharCharacterIterator::text = this->text member in class:UCharCharacterIterator
65 UCharCharacterIterator::text = this->text.getBuffer(); member in class:UCharCharacterIterator
76 UCharCharacterIterator::text = this->text.getBuffer(); member in class:UCharCharacterIterator
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dradiobox.rb6 rb.add('times', :text=>'Times')
7 rb.add('helvetica', :text=>'Helvetica')
8 rb.add('courier', :text=>'Courier')
9 rb.add('symbol', :text=>'Symbol')
H A Dcheckbox.rb6 cb.add('bold', :text=>'Bold')
7 cb.add('italic', :text=>'Italic')
8 cb.add('underline', :text=>'Underline')
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/
H A Dcomment.rb2 # A comment holds the text comment for a RDoc::CodeObject and provides a
31 # The text for this comment
33 attr_reader :text
36 # Overrides the content returned by #parse. Use when there is no #text
42 # Creates a new comment with +text+ that is found in the RDoc::TopLevel
45 def initialize text = nil, location = nil
47 @text = text
59 @text = copy.text
[all...]
H A Dtext.rb19 # Methods for manipulating comment text
65 # Expands tab characters in +text+ to eight spaces
67 def expand_tabs text
70 text.each_line do |line|
73 r.force_encoding text.encoding if Object.const_defined? :Encoding
84 # Flush +text+ left based on the shortest line
86 def flush_left text
89 text.each_line do |line|
95 empty.force_encoding text.encoding if Object.const_defined? :Encoding
97 text
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTextContentView.css26 .content-view.text > .text-editor {
H A DTextResourceContentView.css26 .content-view.resource.text > .text-editor {
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dcopy-1.s2 .text
/macosx-10.10.1/rsync-45/rsync/lib/
H A Dwildmatch.h3 int wildmatch(const char *pattern, const char *text);
4 int iwildmatch(const char *pattern, const char *text);
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/
H A Dtkhello.rb4 :text => 'hello',
7 :text => 'quit',
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DANTLRException.hpp22 ANTLRException() : text("")
27 : text(s) function in class:antlr::ANTLRException
36 * here to get the 'clean' error message stored in the text attribute.
40 return text;
45 * and call in toString getMessage which relays the text attribute
50 return text;
53 ANTLR_USE_NAMESPACE(std)string text; member in class:antlr::ANTLRException
/macosx-10.10.1/postfix-255/postfix/mantools/
H A Dxpostconf18 # text is copied as is,
24 # If no -s is specified, extracts the named parameter text (all
41 $param_text{$name} = $text;
43 printf "saving entry %s %.20s..\n", $name, $text;
46 $class_text{$name} = $text;
48 printf "saving class %s %.20s..\n", $name, $text;
61 next if /^#/ && $text eq "";
66 # Save the accumulated text.
68 if ($name && $text) {
72 # Reset the parameter name and accumulated text
[all...]
/macosx-10.10.1/cups-408/cups/cups/
H A Dtestarray.c47 char *text; /* Text from array */ local
150 if ((text = (char *)cupsArrayFirst(array)) != NULL &&
151 !strcmp(text, "Blue Fish"))
155 printf("FAIL (returned \"%s\", expected \"Blue Fish\")\n", text);
164 if ((text = (char *)cupsArrayNext(array)) != NULL &&
165 !strcmp(text, "One Fish"))
169 printf("FAIL (returned \"%s\", expected \"One Fish\")\n", text);
178 if ((text = (char *)cupsArrayLast(array)) != NULL &&
179 !strcmp(text, "Two Fish"))
183 printf("FAIL (returned \"%s\", expected \"Two Fish\")\n", text);
[all...]
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/plugins/
H A Dpassdss.c157 context_t *text = (context_t *) context; local
165 PARAMERROR( text->utils );
174 ret = _plug_buf_alloc(text->utils, &text->encode_buf,
175 &text->encode_buf_len,
185 tmpnum = htonl(text->pktnum_out++);
186 memcpy(text->send_integrity_key, &tmpnum, 4);
189 HMAC_Init_ex(&text->hmac_send_ctx, text->send_integrity_key,
195 HMAC_Update(&text
267 context_t *text = (context_t *) context; local
327 context_t *text = (context_t *) context; local
725 CalcLayerParams(context_t *text, char *K, unsigned Klen, char *hash, unsigned hashlen) argument
748 context_t *text = (context_t *) conn_context; local
782 context_t *text; local
804 passdss_server_mech_step1(context_t *text, sasl_server_params_t *params, const char *clientin, unsigned clientinlen, const char **serverout, unsigned *serveroutlen, sasl_out_params_t *oparams __attribute__((unused))) argument
965 passdss_server_mech_step2(context_t *text, sasl_server_params_t *params, const char *clientin, unsigned clientinlen, const char **serverout __attribute__((unused)), unsigned *serveroutlen __attribute__((unused)), sasl_out_params_t *oparams) argument
1130 context_t *text = (context_t *) conn_context; local
1214 context_t *text; local
1236 passdss_client_mech_step1(context_t *text, sasl_client_params_t *params, const char *serverin __attribute__((unused)), unsigned serverinlen __attribute__((unused)), sasl_interact_t **prompt_need, const char **clientout, unsigned *clientoutlen, sasl_out_params_t *oparams) argument
1368 passdss_client_mech_step2(context_t *text, sasl_client_params_t *params, const char *serverin, unsigned serverinlen, sasl_interact_t **prompt_need __attribute__((unused)), const char **clientout, unsigned *clientoutlen, sasl_out_params_t *oparams) argument
1610 context_t *text = (context_t *) conn_context; local
[all...]
/macosx-10.10.1/apache-793/httpd/modules/lua/test/htdocs/
H A Dsimple.lua2 r.content_type = "text/plain"
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Dhello15 button .hello -text "Hello, world" -command {
/macosx-10.10.1/BerkeleyDB-21/db/docs_src/ref/dumpload/
H A DMakefile3 BUILD= format.html text.html utility.html
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DCodeMirrorTokenTrackingController.css28 text-decoration: underline !important;
30 -webkit-text-stroke-width: 0 !important;
/macosx-10.10.1/emacs-93/emacs/src/
H A Dcxux-crt0.s25 * This file makes the start of the text and data regions of the program
32 /* C symbol _start marks beginning of text region. */
33 .text
/macosx-10.10.1/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebJavaScriptTextInputPanel.h37 - (id)initWithPrompt:(NSString *)prompt text:(NSString *)text;
38 - (NSString *)text;

Completed in 263 milliseconds

1234567891011>>