HomeSort by relevance Sort by last modified time
    Searched refs:text (Results 1 - 25 of 7898) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/css/
CSSLineBoxContainValue.cpp 41 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...]
CSSTimingFunctionValue.cpp 40 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...]
ShadowValue.cpp 28 // 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.isEmpty()
    [all...]
CSSBorderImageValue.cpp 44 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...]
  /development/samples/StackWidget/src/com/example/android/stackwidget/
WidgetItem.java 20 public String text; field in class:WidgetItem
22 public WidgetItem(String text) {
23 this.text = text;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/text/
TestClipboardManager.java 1 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) {
11 this.text = text;
15 return text;
19 return text != null && text.length() > 0;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
package-info.java 4 package android.filterpacks.text;
  /external/llvm/test/MC/ELF/
align-text.s 3 // Test that the .text directive doesn't cause alignment.
6 .text
9 // CHECK: (('sh_name', 0x00000001) # '.text'
  /external/llvm/test/MC/MachO/
previous.s 3 .text
section-flags.s 10 .text
  /frameworks/base/core/tests/coretests/src/android/text/
SpannableStringBuilderTest.java 17 package android.text;
19 import android.text.Spannable;
20 import android.text.SpannableStringBuilder;
24 protected Spannable newSpannableWithText(String text) {
25 return new SpannableStringBuilder(text);
SpannableStringTest.java 17 package android.text;
19 import android.text.Spannable;
20 import android.text.SpannableString;
24 protected Spannable newSpannableWithText(String text) {
25 return new SpannableString(text);
  /external/srec/portable/include/
pLastError.h 26 #define printGetLastError(text) \
27 printGetLastErrorInternal(text, __FILE__, __LINE__)
35 PORTABLE_API void printGetLastErrorInternal(const LCHAR* text, char* file, int line);
  /frameworks/base/core/java/android/text/
NoCopySpan.java 17 package android.text;
ClipboardManager.java 17 package android.text;
20 * @deprecated Old text-only interface to the clipboard. See
26 * Returns the text on the clipboard. It will eventually be possible
27 * to store types other than text too, in which case this will return
28 * null if the type cannot be coerced to text.
33 * Sets the contents of the clipboard to the specified text.
35 public abstract void setText(CharSequence text);
38 * Returns true if the clipboard contains text; false otherwise.
  /frameworks/base/core/java/android/text/style/
ParagraphStyle.java 17 package android.text.style;
20 * The classes that affect paragraph-level text formatting implement
UpdateAppearance.java 17 package android.text.style;
20 * The classes that affect character-level text in a way that modifies their
UpdateLayout.java 17 package android.text.style;
20 * The classes that affect character-level text formatting in a way that
21 * triggers a text layout update when one is added or removed must implement
WrapTogetherSpan.java 17 package android.text.style;
SuggestionSpan.aidl 17 package android.text.style;
  /external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
StandardBean.java 29 private String text = "none"; field in class:StandardBean
36 public StandardBean(String text) {
37 this.text = text;
41 return text;
44 public void setText(String text) {
45 this.text = text;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowClipboardManager.java 3 import android.text.ClipboardManager;
9 private CharSequence text; field in class:ShadowClipboardManager
12 public void setText(CharSequence text) {
13 this.text = text;
18 return text;
23 return text != null && text.length() > 0;
  /external/clang/test/SemaCXX/
goto2.cpp 5 int subfun(const char *text) {
6 const char *tmp = text;
10 void fun(const char* text) {
16 const char *end = text;
40 const char *text = "some text"; variable
43 const char *ptr = text;
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
TextInputCallbackTest.java 34 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())
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser_netware.cc 18 bool LooksLikeNetwarePermissionsListing(const string16& text) {
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[3] == '-') &
    [all...]

Completed in 1103 milliseconds

1 2 3 4 5 6 7 8 91011>>