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

1234567891011>>

/external/webkit/Source/WebCore/css/
H A DCSSLineBoxContainValue.cpp41 String text("");
44 text += "block";
46 if (!text.isEmpty())
47 text += " ";
48 text += "inline";
51 if (!text.isEmpty())
52 text += " ";
53 text += "font";
56 if (!text.isEmpty())
57 text
[all...]
H A DCSSTimingFunctionValue.cpp40 String text("cubic-bezier(");
41 text += String::number(m_x1);
42 text += ", ";
43 text += String::number(m_y1);
44 text += ", ";
45 text += String::number(m_x2);
46 text += ", ";
47 text += String::number(m_y2);
48 text += ")";
49 return text;
[all...]
H A DShadowValue.cpp28 // Used for text-shadow and box-shadow
46 String text("");
49 text += color->cssText();
51 if (!text.isEmpty())
52 text += " ";
53 text += x->cssText();
56 if (!text.isEmpty())
57 text += " ";
58 text += y->cssText();
61 if (!text
[all...]
H A DCSSBorderImageValue.cpp44 String text(m_image->cssText());
45 text += " ";
48 text += m_imageSliceRect->top()->cssText();
49 text += " ";
50 text += m_imageSliceRect->right()->cssText();
51 text += " ";
52 text += m_imageSliceRect->bottom()->cssText();
53 text += " ";
54 text += m_imageSliceRect->left()->cssText();
57 text
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/text/
H A DTestClipboardManager.java1 package com.xtremelabs.robolectric.tester.android.text;
3 import android.text.ClipboardManager;
8 private CharSequence text; field in class:TestClipboardManager
10 public void setText(CharSequence text) { argument
11 this.text = text;
15 return text;
19 return text != null && text.length() > 0;
/external/v8/test/mjsunit/regress/
H A Dregress-246.js30 assertTrue(/(?:text)/.test("text"));
31 assertEquals(["text"], /(?:text)/.exec("text"))
/external/llvm/test/MC/ELF/
H A Dalign-text.s3 // Test that the .text directive doesn't cause alignment.
6 .text
9 // CHECK: (('sh_name', 0x00000001) # '.text'
/external/llvm/test/MC/MachO/
H A Dprevious.s3 .text
H A Dsection-flags.s10 .text
H A Dzerofill-5.s3 .text
/external/srec/portable/include/
H A DpLastError.h26 #define printGetLastError(text) \
27 printGetLastErrorInternal(text, __FILE__, __LINE__)
35 PORTABLE_API void printGetLastErrorInternal(const LCHAR* text, char* file, int line);
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
H A DStandardBean.java29 private String text = "none"; field in class:StandardBean
36 public StandardBean(String text) { argument
37 this.text = text;
41 return text;
44 public void setText(String text) { argument
45 this.text = text;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowClipboardManager.java3 import android.text.ClipboardManager;
9 private CharSequence text; field in class:ShadowClipboardManager
12 public void setText(CharSequence text) { argument
13 this.text = text;
18 return text;
23 return text != null && text.length() > 0;
/external/clang/test/SemaCXX/
H A Dgoto2.cpp5 int subfun(const char *text) { argument
6 const char *tmp = text;
10 void fun(const char* text) { argument
16 const char *end = text;
40 const char *text = "some text"; variable
43 const char *ptr = text;
H A Doverloaded-name.cpp22 const char* text(void);
24 f(text());
25 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
26 f(text());
27 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
/external/webkit/Source/WebCore/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";
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
H A DTextInputCallbackTest.java34 TextInputCallback text; field in class:TextInputCallbackTest
40 text = new TextInputCallback("prompt");
41 assertEquals("prompt", text.getPrompt());
42 text = new TextInputCallback("prompt", "defaultText");
43 assertEquals("prompt", text.getPrompt());
44 assertEquals("defaultText", text.getDefaultText());
45 text.setText("Text");
46 assertEquals("Text", text.getText());
56 text = new TextInputCallback("", "defaultText");
61 text
[all...]
/external/chromium/net/ftp/
H A Dftp_directory_listing_parser_netware.cc18 bool LooksLikeNetwarePermissionsListing(const string16& text) { argument
19 if (text.length() != 10)
22 if (text[0] != '[' || text[9] != ']')
24 return (text[1] == 'R' || text[1] == '-') &&
25 (text[2] == 'W' || text[2] == '-') &&
26 (text[3] == 'C' || text[
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSTextCustom.cpp35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Text* text) argument
37 if (!text)
40 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, Text, text);
/external/icu4c/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...]
/external/markdown/tests/misc/
H A Dheaders.txt15 Some other text
/external/mockito/src/org/mockito/internal/util/
H A DRemoveFirstLine.java10 * @param text to have the first line removed
13 public String of(String text) { argument
14 return text.replaceFirst(".*?\n", "");
/external/webkit/Source/WebCore/dom/
H A DBeforeTextInsertedEvent.cpp33 BeforeTextInsertedEvent::BeforeTextInsertedEvent(const String& text) argument
34 : Event(eventNames().webkitBeforeTextInsertedEvent, false, true), m_text(text)
/external/markdown/markdown/
H A Dhtml4.py69 def _raise_serialization_error(text):
71 "cannot serialize %r (type %s)" % (text, type(text).__name__)
74 def _encode(text, encoding):
76 return text.encode(encoding, "xmlcharrefreplace")
78 _raise_serialization_error(text)
80 def _escape_cdata(text, encoding):
86 if "&" in text:
87 text = text
[all...]
/external/chromium/chrome/browser/resources/net_internals/
H A Ddataview.js10 * - Has a button to generate a text report.
133 * Clears displayed text when security stripping is toggled.
152 * Presents the captured data as formatted text.
160 var text = [];
163 text.push('Data exported on: ' + (new Date()).toLocaleString());
164 text.push('');
165 text.push('Number of passively captured events: ' +
167 text.push('Number of actively captured events: ' +
169 text.push('');
171 text
[all...]

Completed in 849 milliseconds

1234567891011>>