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

1234567891011>>

/macosx-10.10/SmartcardCCID-55008/ccid/ccid/MacOSX/
H A Dconvert_reader_h.pl24 my $text =
38 print $text;
/macosx-10.10/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/WebCore-7600.1.25/css/
H A DCSSLineBoxContainValue.cpp29 #include <wtf/text/StringBuilder.h>
41 StringBuilder text; local
44 text.appendLiteral("block");
46 if (!text.isEmpty())
47 text.append(' ');
48 text.appendLiteral("inline");
51 if (!text.isEmpty())
52 text.append(' ');
53 text.appendLiteral("font");
56 if (!text
[all...]
H A DCSSShadowValue.cpp24 #include <wtf/text/StringBuilder.h>
28 // Used for text-shadow and box-shadow
47 StringBuilder text; local
50 text.append(color->cssText());
52 if (!text.isEmpty())
53 text.append(' ');
54 text.append(x->cssText());
57 if (!text.isEmpty())
58 text.append(' ');
59 text
[all...]
/macosx-10.10/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/dyld-353.2.1/unit-tests/test-cases/text-relocs/
H A Dspace.s1 .text
/macosx-10.10/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/WebCore-7600.1.25/bindings/js/
H A DJSTextCustom.cpp35 JSValue toJSNewlyCreated(ExecState*, JSDOMGlobalObject* globalObject, Text* text) argument
37 if (!text)
40 return CREATE_DOM_WRAPPER(globalObject, Text, text);
/macosx-10.10/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/WebCore-7600.1.25/html/
H A DHTMLTitleElement.idl21 [TreatNullAs=NullString] attribute DOMString text;
/macosx-10.10/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')
/macosx-10.10/WebCore-7600.1.25/platform/text/icu/
H A DUTextProviderUTF16.cpp60 static inline UTextProviderContext textUTF16ContextAwareGetCurrentContext(const UText* text) argument
62 if (!text->chunkContents)
64 return text->chunkContents == text->p ? UTextProviderContext::PrimaryContext : UTextProviderContext::PriorContext;
67 static void textUTF16ContextAwareMoveInPrimaryContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) argument
69 ASSERT(text->chunkContents == text->p);
70 ASSERT_UNUSED(forward, forward ? nativeIndex >= text->b : nativeIndex > text->b);
72 text
[all...]
H A DUTextProvider.h39 inline UTextProviderContext uTextProviderContext(const UText* text, int64_t nativeIndex, UBool forward) argument
41 if (!text->b || nativeIndex > text->b)
43 if (nativeIndex == text->b)
48 inline void initializeContextAwareUTextProvider(UText* text, const UTextFuncs* funcs, const void* string, unsigned length, const UChar* priorContext, int priorContextLength) argument
50 text->pFuncs = funcs;
51 text->providerProperties = 1 << UTEXT_PROVIDER_STABLE_CHUNKS;
52 text->context = string;
53 text->p = string;
54 text
75 uTextAccessInChunkOrOutOfRange(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward, UBool& isAccessible) argument
[all...]
/macosx-10.10/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...]
/macosx-10.10/WebCore-7600.1.25/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.10/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/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dcopy-1.s2 .text
/macosx-10.10/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/ruby-106/ruby/ext/tk/sample/
H A Dtkhello.rb4 :text => 'hello',
7 :text => 'quit',
/macosx-10.10/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/WebCore-7600.1.25/platform/
H A DKeypressCommand.h30 #include <wtf/text/WTFString.h>
39 KeypressCommand(const String& commandName, const String& text) : commandName(commandName), text(text) { ASSERT(commandName == "insertText:"); } argument
42 String text; member in struct:WebCore::KeypressCommand
/macosx-10.10/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/WebCore-7600.1.25/accessibility/atk/
H A DWebKitAccessibleInterfaceEditableText.cpp46 static AccessibilityObject* core(AtkEditableText* text) argument
48 if (!WEBKIT_IS_ACCESSIBLE(text))
51 return webkitAccessibleGetAccessibilityObject(WEBKIT_ACCESSIBLE(text));
54 static gboolean webkitAccessibleEditableTextSetRunAttributes(AtkEditableText* text, AtkAttributeSet*, gint, gint) argument
56 g_return_val_if_fail(ATK_IS_EDITABLE_TEXT(text), FALSE);
57 returnValIfWebKitAccessibleIsInvalid(WEBKIT_ACCESSIBLE(text), FALSE);
63 static void webkitAccessibleEditableTextSetTextContents(AtkEditableText* text, const gchar* string) argument
65 g_return_if_fail(ATK_IS_EDITABLE_TEXT(text));
66 returnIfWebKitAccessibleIsInvalid(WEBKIT_ACCESSIBLE(text));
69 core(text)
72 webkitAccessibleEditableTextInsertText(AtkEditableText* text, const gchar* string, gint length, gint* position) argument
96 webkitAccessibleEditableTextCopyText(AtkEditableText* text, gint, gint) argument
104 webkitAccessibleEditableTextCutText(AtkEditableText* text, gint, gint) argument
112 webkitAccessibleEditableTextDeleteText(AtkEditableText* text, gint startPos, gint endPos) argument
131 webkitAccessibleEditableTextPasteText(AtkEditableText* text, gint) argument
[all...]
/macosx-10.10/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...]

Completed in 243 milliseconds

1234567891011>>