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

1234567891011>>

/macosx-10.9.5/SmartcardCCID-55005/ccid/ccid/MacOSX/
H A Dconvert_reader_h.pl24 my $text =
38 print $text;
/macosx-10.9.5/ruby-104/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.9.5/WebCore-7537.78.1/css/
H A DCSSLineBoxContainValue.cpp30 #include <wtf/text/StringBuilder.h>
31 #include <wtf/text/WTFString.h>
43 StringBuilder text; local
46 text.appendLiteral("block");
48 if (!text.isEmpty())
49 text.append(' ');
50 text.appendLiteral("inline");
53 if (!text.isEmpty())
54 text.append(' ');
55 text
[all...]
H A DShadowValue.cpp24 #include <wtf/text/StringBuilder.h>
25 #include <wtf/text/WTFString.h>
29 // Used for text-shadow and box-shadow
48 StringBuilder text; local
51 text.append(color->cssText());
53 if (!text.isEmpty())
54 text.append(' ');
55 text.append(x->cssText());
58 if (!text.isEmpty())
59 text
[all...]
H A Dmake-css-file-arrays.pl48 my $text;
53 { local $/; $text = <IN>; }
56 $text =~ s|^#.*?$||mg;
59 $text = join('', applyPreprocessor($in, $defines, $preprocessor));
64 $text =~ s|/\*.*?\*/||gs;
69 $text =~ s|\s+| |gs;
70 $text =~ s|^ ||;
71 $text =~ s| $||;
74 my $length = length $text;
88 print OUT ord substr $text,
[all...]
/macosx-10.9.5/ruby-104/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.9.5/dyld-239.4/unit-tests/test-cases/text-relocs/
H A Dspace.s1 .text
/macosx-10.9.5/WebCore-7537.78.1/inspector/
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.9.5/WebCore-7537.78.1/inspector/front-end/
H A DEmptyView.js35 WebInspector.EmptyView = function(text)
38 this._text = text;
48 set text(text)
50 this._text = text;
H A DRequestJSONView.js43 WebInspector.RequestJSONView.parseJSON = function(text)
48 var start = /[{[]/.exec(text);
50 prefix = text.substring(0, start.index);
51 text = text.substring(start.index);
55 return new WebInspector.ParsedJSON(JSON.parse(text), prefix, "");
61 WebInspector.RequestJSONView.parseJSONP = function(text)
64 var start = text.indexOf("(");
65 var end = text.lastIndexOf(")");
69 var prefix = text
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSTextCustom.cpp35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Text* text) argument
37 if (!text)
40 return CREATE_DOM_WRAPPER(exec, globalObject, Text, text);
/macosx-10.9.5/ICU-511.35/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.9.5/WebCore-7537.78.1/html/
H A DHTMLTitleElement.idl21 [TreatNullAs=NullString] attribute DOMString text;
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DinspectorBB.js25 var text = 'data:text/plain;charset=utf-8,' + encoded;
26 window.open(text, "_blank");
/macosx-10.9.5/ruby-104/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')
/macosx-10.9.5/ruby-104/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...]
/macosx-10.9.5/WebCore-7537.78.1/loader/win/
H A DDocumentLoaderWin.cpp32 #include <wtf/text/WTFString.h>
38 String text = title; local
39 text.replace('//', m_frame->backslashAsCurrencySymbol());
43 frameWin->client()->setTitle(text);
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DTemporaryLinkStubs.cpp23 #include <wtf/text/WTFString.h>
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dcopy-1.s2 .text
/macosx-10.9.5/rsync-42/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.9.5/ruby-104/ruby/ext/tk/sample/
H A Dtkhello.rb4 :text => 'hello',
7 :text => 'quit',
/macosx-10.9.5/Security-55471.14.18/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.9.5/WebKit2-7537.78.2/UIProcess/API/qt/tests/
H A Dbytearraytestdata.cpp25 QString text = QStringLiteral("<html><head><title>title with copyright %1</title></head><body>content</body></html>"); local
26 text = text.arg(QChar::fromLatin1(169));
28 m_latin1Data = text.toLatin1();
29 m_utf8Data = text.toUtf8();
/macosx-10.9.5/postfix-252/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.9.5/cups-372.4/cups/cups/
H A Dtestarray.c54 char *text; /* Text from array */ local
157 if ((text = (char *)cupsArrayFirst(array)) != NULL &&
158 !strcmp(text, "Blue Fish"))
162 printf("FAIL (returned \"%s\", expected \"Blue Fish\")\n", text);
171 if ((text = (char *)cupsArrayNext(array)) != NULL &&
172 !strcmp(text, "One Fish"))
176 printf("FAIL (returned \"%s\", expected \"One Fish\")\n", text);
185 if ((text = (char *)cupsArrayLast(array)) != NULL &&
186 !strcmp(text, "Two Fish"))
190 printf("FAIL (returned \"%s\", expected \"Two Fish\")\n", text);
[all...]

Completed in 373 milliseconds

1234567891011>>