Searched refs:text (Results 201 - 225 of 4380) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/platform/text/icu/
H A DUTextProviderLatin1.h30 #include <wtf/text/LChar.h>
37 UText text; member in struct:WebCore::UTextWithBuffer
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGPointList.cpp24 #include <wtf/text/StringBuilder.h>
25 #include <wtf/text/WTFString.h>
/macosx-10.10/WebKit-7600.1.25/mac/Misc/
H A DWebNSUserDefaultsExtras.mm32 #import <wtf/text/WTFString.h>
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebKitDLL.h36 #include <wtf/text/StringHash.h>
37 #include <wtf/text/WTFString.h>
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DCommandLine.h30 #include <wtf/text/StringHash.h>
31 #include <wtf/text/WTFString.h>
/macosx-10.10/cups-408/cups/ppdc/
H A Dppdc-attr.cxx34 const char *t, // I - Human-readable text
43 text = new ppdcString(t);
59 text->release();
H A Dppdc-group.cxx39 text = new ppdcString(t);
53 g->text->retain();
56 text = g->text;
75 text->release();
78 name = text = 0;
/macosx-10.10/postfix-255/postfix/src/dns/
H A Ddns_strerror.c45 const char *text; member in struct:dns_error_map
64 return (dns_error_map[i].text);
/macosx-10.10/ruby-106/ruby/ext/tk/sample/
H A Dencstr_usage.rb3 TkMessage.new(:width=>400, :text=><<EOM).pack
5 This reads 'iso2022-kr' text (from discription of \
7 and inserts the text into the text widget.
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/
H A D__get_cpu_capabilities.s32 .text
42 .text
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/plugins/
H A Dotp.c317 server_context_t *text; local
320 text = sparams->utils->malloc(sizeof(server_context_t));
321 if (text == NULL) {
326 memset(text, 0, sizeof(server_context_t));
328 text->state = 1;
330 *conn_context = text;
349 server_context_t *text = (server_context_t *) conn_context; local
354 if (text == NULL) {
358 switch (text->state) {
391 text
495 server_context_t *text = (server_context_t *) conn_context; local
801 verify_response(server_context_t *text, const sasl_utils_t *utils, char *response) argument
921 otp_server_mech_step1(server_context_t *text, sasl_server_params_t *params, const char *clientin, unsigned clientinlen, const char **serverout, unsigned *serveroutlen, sasl_out_params_t *oparams) argument
1107 otp_server_mech_step2(server_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
1192 server_context_t *text = (server_context_t *) conn_context; local
1219 server_context_t *text = (server_context_t *) conn_context; local
1472 client_context_t *text; local
1490 otp_client_mech_step1(client_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
1600 otp_client_mech_step2(client_context_t *text, sasl_client_params_t *params, const char *serverin, unsigned serverinlen, sasl_interact_t **prompt_need, const char **clientout, unsigned *clientoutlen, sasl_out_params_t *oparams) argument
1770 client_context_t *text = (client_context_t *) conn_context; local
1799 client_context_t *text = (client_context_t *) conn_context; local
[all...]
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/lib/Parse/Yapp/
H A DOutput.pm5 # (see the pod text in Parse::Yapp module for use and distribution rights)
20 my($text)='#Included Parse/Yapp/Driver.pm file'.('-' x 40)."\n";
23 $text.="{\n".join('',<DRV>)."}\n";
25 $text.='#End of include'.('-' x 50)."\n";
37 my($text)=$self->Option('template') ||<<'EOT';
87 $text=~s/<<(\$.+)>>/$1/gee;
89 $text;
/macosx-10.10/CPANInternal-159.1/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/
H A DTemplate.pm27 my $text = shift;
28 $text =~ s!\r\n!<br />!g;
29 $text =~ s!\n!<br />!g;
30 return $text;
39 $self->{_tt}->process(\$data, $output, \my $text)
42 return $text;
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSPageRule.cpp33 #include <wtf/text/StringBuilder.h>
58 StringBuilder text; local
59 text.appendLiteral("@page");
64 text.append(' ');
65 text.append(pageSpecification);
68 return text.toString();
/macosx-10.10/WebCore-7600.1.25/editing/
H A DInsertTextCommand.h51 static PassRefPtr<InsertTextCommand> create(Document& document, const String& text, bool selectInsertedText = false, argument
54 return adoptRef(new InsertTextCommand(document, text, selectInsertedText, rebalanceType));
57 static PassRefPtr<InsertTextCommand> createWithMarkerSupplier(Document& document, const String& text, PassRefPtr<TextInsertionMarkerSupplier> markerSupplier) argument
59 return adoptRef(new InsertTextCommand(document, text, markerSupplier));
64 InsertTextCommand(Document&, const String& text, bool selectInsertedText, RebalanceType);
65 InsertTextCommand(Document&, const String& text, PassRefPtr<TextInsertionMarkerSupplier>);
H A DTextInsertionBaseCommand.cpp57 String dispatchBeforeTextInsertedEvent(const String& text, const VisibleSelection& selectionForInsertion, bool insertionIsForUpdatingComposition) argument
60 return text;
62 String newText = text;
65 // Send BeforeTextInsertedEvent. The event handler will update text if necessary.
66 RefPtr<BeforeTextInsertedEvent> evt = BeforeTextInsertedEvent::create(text);
68 newText = evt->text();
82 return event->text().length();
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dcopy-3.d3 #objcopy: --set-section-flags .text=alloc,data
7 # The .text # section in PE/COFF has a fixed set of flags and these
15 [0-9]* .text.*
/macosx-10.10/dcerpc-61/www/content/css/blueprint/plugins/fancy-type/
H A Dscreen.css4 * Lots of pretty advanced classes for manipulating text.
11 p + p { text-indent:2em; margin-top:-1.5em; }
12 form p + p { text-indent: 0; } /* Don't want this in forms. */
62 text-transform: lowercase;
/macosx-10.10/ruby-106/ruby/lib/rdoc/markup/
H A Dto_html.rb88 url = special.text
103 url = special.text
109 text = $'
111 text = case text
115 else text
118 gen_url url, text
131 text = special.text
133 return text unles
[all...]
H A Dto_rdoc.rb101 @res << attributes(heading.text)
195 text = paragraph.text @hard_break
196 wrap attributes text
204 text = paragraph.text @hard_break
205 wrap attributes text
240 # Applies attribute-specific markup to +text+ using RDoc::AttributeManager
242 def attributes text
243 flow = @am.flow text
[all...]
/macosx-10.10/ruby-106/ruby/lib/rdoc/
H A Dnormal_module.rb30 q.text "includes:"
36 q.text "constants:"
40 q.text "attributes:"
45 q.text "methods:"
50 q.text "aliases:"
55 q.text "comment:"
/macosx-10.10/xnu-2782.1.97/bsd/miscfs/devfs/
H A Dreproto.sh53 \$text[\$idx - 1] .= ';';
55 print PROTO "\$text[\$i]";
61 \$text[\$idx++] = \$_;
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itk/demos/
H A Ditkedit5 # Simple text editor built with [incr Widgets]
27 .notice buttonconfigure Cancel -text "Dismiss"
32 .confirm buttonconfigure OK -text "Yes"
33 .confirm buttonconfigure Cancel -text "No"
46 # Initiates the process of loading a new text file for editing.
54 .files buttonconfigure OK -text "Load"
59 set text [read $fid]
64 -text "Cannot load file \"$fname\":\n$err"
72 $win.text insert end $text
[all...]
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DFilters.pm272 my $text = shift;
278 if ($] >= 5.008 && utf8::is_utf8($text)) {
279 utf8::encode($text);
282 $text =~ s/([^A-Za-z0-9\-_.!~*'()])/$URI_ESCAPES->{$1}/eg;
283 $text;
297 my $text = shift;
303 if ($] >= 5.008 && utf8::is_utf8($text)) {
304 utf8::encode($text);
307 $text =~ s/([^;\/?:@&=+\$,A-Za-z0-9\-_.!~*'()])/$URI_ESCAPES->{$1}/eg;
308 $text;
[all...]
/macosx-10.10/curl-83.1.2/curl/docs/examples/
H A Ddebug.c30 void dump(const char *text, argument
44 text, (long)size, (long)size);
84 const char *text; local
94 text = "=> Send header";
97 text = "=> Send data";
100 text = "=> Send SSL data";
103 text = "<= Recv header";
106 text = "<= Recv data";
109 text = "<= Recv SSL data";
113 dump(text, stder
[all...]

Completed in 195 milliseconds

1234567891011>>