Searched refs:text (Results 101 - 125 of 3083) sorted by relevance

1234567891011>>

/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/
H A Dchat.pl24 my($nick, $text, $time) = @$_; chomp($text);
25 join '', mktime($time), ' ', $nick, '>', ' ', $text, "\n";
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dregextxt.h36 UText *text; member in struct:URegexUTextUnescapeCharContext
39 #define U_REGEX_UTEXT_UNESCAPE_CONTEXT(text) { (text), -1 }
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A DSecRequirement.h34 data structures. They can be formulated in a text form that can be compiled
35 into binary form and decompiled back into text form without loss of functionality
76 Create a SecRequirement object by compiling a valid text representation
79 @param text A CFString containing the text form of a (single) Code Requirement.
82 object that implements the conditions described in text.
90 OSStatus SecRequirementCreateWithString(CFStringRef text, SecCSFlags flags,
93 OSStatus SecRequirementCreateWithStringAndErrors(CFStringRef text, SecCSFlags flags,
116 Converts a SecRequirement object into text form.
119 Repeated application of this function may produce text tha
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DCommonAST.cpp24 ANTLR_USE_NAMESPACE(std)string t1, t2, text; variable
26 // text
27 read_AttributeNValue( in, t1, text );
37 this->initialize( type, text );
H A DCommonToken.cpp15 CommonToken::CommonToken() : Token(), line(1), col(1), text("")
22 , text(txt)
29 , text(s) function in namespace:antlr
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A DSecRequirement.h34 data structures. They can be formulated in a text form that can be compiled
35 into binary form and decompiled back into text form without loss of functionality
76 Create a SecRequirement object by compiling a valid text representation
79 @param text A CFString containing the text form of a (single) Code Requirement.
82 object that implements the conditions described in text.
90 OSStatus SecRequirementCreateWithString(CFStringRef text, SecCSFlags flags,
93 OSStatus SecRequirementCreateWithStringAndErrors(CFStringRef text, SecCSFlags flags,
116 Converts a SecRequirement object into text form.
119 Repeated application of this function may produce text tha
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DCSSMedia.js26 WebInspector.CSSMedia = function(type, text, sourceCodeLocation)
31 this._text = text || "";
54 get text()
H A DTextRange.js99 resolveLinesAndColumns: function(text)
101 console.assert(typeof text === "string");
102 if (typeof text !== "string")
110 function countNewLineCharacters(text)
112 var matches = text.match(/\n/g);
116 var startSubstring = text.substring(0, this._startOffset);
117 var rangeSubstring = text.substring(this._startOffset, this._endOffset);
135 resolveOffsets: function(text)
137 console.assert(typeof text === "string");
138 if (typeof text !
[all...]
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/include/
H A Dhmac-md5.h28 * digest may be same as text or key
30 void _sasl_hmac_md5(const unsigned char *text, int text_len,
48 #define _sasl_hmac_md5_update(hmac, text, text_len) _sasl_MD5Update(&(hmac)->ictx, (text), (text_len))
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dmsg_vstream.c57 static void msg_vstream_print(int level, const char *text) argument
67 msg_tag, text);
70 msg_tag, level_text[level], text);
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dgetstring.rb48 def initialize(*args) # args = (parent=nil, text='', keys=nil)
51 text = args.pop
55 text = keys
58 if text
59 @text = text.dup
61 @text = ''
78 @path, @variable, @text, *hash_kv(@keys)))
92 if slot == 'text'
93 @text
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dform.rb25 text "This window contains a simple form where you can type in the various entries and use tabs to move circularly between the entries."
32 text 'Dismiss'
41 text 'Show Code'
58 form_data[1]['label'].text('Name:')
59 form_data[2]['label'].text('Address:')
60 form_data[5]['label'].text('Phone:')
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dform.rb26 text "������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������"
33 #text '������'
34 text '���������'
43 text '���������������'
60 form_data[1]['label'].text('������:')
61 form_data[2]['label'].text('������:')
62 form_data[5]['label'].text('������:')
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/
H A Dtktimer2.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 TkButton.new(:text=>'Start') {
35 TkButton.new(:text=>'Restart') {
36 command proc{ timer.restart(0, proc{ label.text('0.00'); 0 }) }
39 TkButton.new(:text=>'Stop') {
H A Dcd_timer.rb16 TkButton.new(:text=>'exit',
19 b = TkButton.new(:text=>'start').pack(:side=>:top, :fill=>:x)
24 :text=>' elapsed: ').pack(:fill=>:x, :side=>:left, :expand=>true)
27 :text=>'%4d:%02d.00' % [0, 0]).pack(:side=>:right)
33 now.text('%4d:%02d.%02d' % [m, s, u])
36 now.text('%4d:%02d.00' % [0,0])
45 :text=>' %4d:%02d --> ' % (time.divmod(60))).pack(:side=>:left)
47 :text=>'%4d:%02d' % (time.divmod(60))).pack(:side=>:right)
51 l.text('%4d:%02d' % ((-t).divmod(60)))
53 l.text('
[all...]
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_markup_paragraph.rb20 assert_equal 'hello world', paragraph.text
26 assert_equal 'helloworld', paragraph.text
28 assert_equal "hello\nworld", paragraph.text("\n")
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dbraces.c50 Segregate the text into 3 sections: preamble (stuff before an open brace),
88 brace_expand (text)
89 char *text;
100 /* Find the text of the preamble. */
101 tlen = strlen (text);
104 c = brace_gobbler (text, tlen, &i, '{'); /* } */
106 /* Make sure that when we exit this loop, c == 0 or text[i] begins a
110 c = brace_gobbler (text, tlen, &i, '{'); /* } */
117 c = brace_gobbler (text, tlen, &j, '}');
137 strncpy (preamble, text,
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/treectrl/
H A Doutlook-folders.rb14 t.column_create(:text=>'Folders')
16 t.column_configure(0, :text=>'Folders')
20 t.element_create('e2', :text, :lines=>1,
22 t.element_create('e3', :text, :lines=>1, :font=>t.font.dup.weight(:bold),
24 t.element_create('e4', :text, :fill=>'blue')
32 # image + text
39 # image + text + text
47 # folder + text
54 # folder + text
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dunifilt.cpp40 UMatchDegree UnicodeFilter::matches(const Replaceable& text, argument
46 contains(c = text.char32At(offset))) {
51 contains(c = text.char32At(offset))) {
57 offset -= U16_LENGTH(text.char32At(offset)) - 1;
/macosx-10.10.1/ICU-531.30/icuSources/test/letest/
H A Dletsutil.h34 le_bool getRTL(const UnicodeString &text);
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DInspectorFrontendChannel.h29 #include <wtf/text/WTFString.h>
/macosx-10.10.1/JavaScriptCore-7600.1.17/parser/
H A DSourceCode.cpp30 #include <wtf/text/CString.h>
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Expressions/
H A Dshell.js104 function doubleQuote(text)
106 return CHAR_QT_DBL + text + CHAR_QT_DBL;
110 function singleQuote(text)
112 return CHAR_QT + text + CHAR_QT;
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebKitGraphics.h53 LPCTSTR text; member in struct:WebTextRenderInfo
66 float TextFloatWidth(LPCTSTR text, int length, const WebFontDescription&);
69 // buffer must be large enough to hold all of "text", including its null terminator. Returns the number of characters put in buffer (excluding the null terminator).
70 unsigned CenterTruncateStringToWidth(LPCTSTR text, int length, const WebFontDescription&, float width, WCHAR* buffer);
71 unsigned RightTruncateStringToWidth(LPCTSTR text, int length, const WebFontDescription&, float width, WCHAR* buffer);
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DProcessExecutablePath.h26 #include <wtf/text/WTFString.h>

Completed in 237 milliseconds

1234567891011>>