/external/chromium_org/third_party/skia/src/animator/ |
SkTextOnPath.cpp | 22 SK_MEMBER(text, Text) 29 SkTextOnPath::SkTextOnPath() : offset(0), path(NULL), text(NULL) { 33 SkASSERT(text); 36 maker.fCanvas->drawTextOnPathHV(text->getText(), text->getSize(),
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
Token.java | 8 private String text; field in class:Token 14 return this.text; 17 public void setText(@SuppressWarnings("hiding") String text) 19 this.text = text; 45 return this.text + " ";
|
/external/linux-tools-perf/Documentation/ |
manpage-bold-literal.xsl | 6 <!-- render literal text as bold (instead of plain or monospace); 7 this makes literal text easier to distinguish in manpages 11 <xsl:text>fB</xsl:text> 14 <xsl:text>fR</xsl:text>
|
/external/robolectric/src/test/resources/res/layout/ |
text_views.xml | 13 android:text="Black Text" 21 android:text="White Text" 29 android:text="Grey Text"
|
/external/skia/src/animator/ |
SkTextOnPath.cpp | 22 SK_MEMBER(text, Text) 29 SkTextOnPath::SkTextOnPath() : offset(0), path(NULL), text(NULL) { 33 SkASSERT(text); 36 maker.fCanvas->drawTextOnPathHV(text->getText(), text->getSize(),
|
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/ |
ConfirmationActivity.java | 9 public static final String EXTRA_TEXT = "text"; 16 ((TextView)findViewById(R.id.text)).setText(getTextExtra(EXTRA_TEXT, "text")); 25 final String text = getIntent().getStringExtra(extra); local 26 if (text == null) { 29 return text;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_12.txt | 9 Content-Type: text/plain; charset="us-ascii" 13 Content-Type: text/html; charset="iso-8859-1" 20 Content-Type: text/plain; charset="iso-8859-2" 24 Content-Type: text/plain; charset="iso-8859-3" 29 Content-Type: text/plain; charset="us-ascii" 33 Content-Type: text/plain; charset="koi8-r"
|
msg_12a.txt | 9 Content-Type: text/plain; charset="us-ascii" 13 Content-Type: text/html; charset="iso-8859-1" 20 Content-Type: text/plain; charset="iso-8859-2" 24 Content-Type: text/plain; charset="iso-8859-3" 31 Content-Type: text/plain; charset="us-ascii" 35 Content-Type: text/plain; charset="koi8-r"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
RstripExtension.py | 14 self.editwin.text.bind("<<do-rstrip>>", self.do_rstrip) 18 text = self.editwin.text 23 end_line = int(float(text.index('end'))) + 1 25 txt = text.get('%i.0' % cur, '%i.0 lineend' % cur) 27 text.delete('%i.%i' % (cur, cut), '%i.0 lineend' % cur)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_12.txt | 9 Content-Type: text/plain; charset="us-ascii" 13 Content-Type: text/html; charset="iso-8859-1" 20 Content-Type: text/plain; charset="iso-8859-2" 24 Content-Type: text/plain; charset="iso-8859-3" 29 Content-Type: text/plain; charset="us-ascii" 33 Content-Type: text/plain; charset="koi8-r"
|
msg_12a.txt | 9 Content-Type: text/plain; charset="us-ascii" 13 Content-Type: text/html; charset="iso-8859-1" 20 Content-Type: text/plain; charset="iso-8859-2" 24 Content-Type: text/plain; charset="iso-8859-3" 31 Content-Type: text/plain; charset="us-ascii" 35 Content-Type: text/plain; charset="koi8-r"
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
RstripExtension.py | 14 self.editwin.text.bind("<<do-rstrip>>", self.do_rstrip) 18 text = self.editwin.text 23 end_line = int(float(text.index('end'))) + 1 25 txt = text.get('%i.0' % cur, '%i.0 lineend' % cur) 27 text.delete('%i.%i' % (cur, cut), '%i.0 lineend' % cur)
|
/external/qemu/distrib/sdl-1.2.15/src/stdlib/ |
SDL_string.c | 33 static size_t SDL_ScanLong(const char *text, int radix, long *valuep) 35 const char *textstart = text; 39 if ( *text == '-' ) { 41 ++text; 43 if ( radix == 16 && SDL_strncmp(text, "0x", 2) == 0 ) { 44 text += 2; 48 if ( SDL_isdigit((unsigned char) *text) ) { 49 v = *text - '0'; 50 } else if ( radix == 16 && SDL_isupperhex(*text) ) { 51 v = 10 + (*text - 'A') [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
MultiAutoCompleteTextViewTest.java | 28 import android.text.SpannableString; 29 import android.text.Spanned; 30 import android.text.TextUtils; 167 String text = "Android test."; local 168 multiAutoCompleteTextView.setText(text); 171 multiAutoCompleteTextView.performFiltering(text, KeyEvent.KEYCODE_0); 174 multiAutoCompleteTextView.performFiltering(text, 0, text.length(), KeyEvent.KEYCODE_E); 184 String text = "CTS."; local 185 multiAutoCompleteTextView.setText(text); [all...] |
/external/chromium_org/components/autofill/core/browser/ |
validation.h | 25 // Returns true if |text| looks like a valid credit card number. 27 bool IsValidCreditCardNumber(const base::string16& text); 29 // Returns true if |text| looks like a valid credit card security code. 30 bool IsValidCreditCardSecurityCode(const base::string16& text); 37 // Returns true if |text| looks like a valid e-mail address. 38 bool IsValidEmailAddress(const base::string16& text); 40 // Returns true if |text| is a valid US state name or abbreviation. It is 42 bool IsValidState(const base::string16& text); 44 // Returns true if |text| looks like a valid zip code. 46 bool IsValidZip(const base::string16& text); [all...] |
/external/chromium_org/ppapi/cpp/ |
text_input_controller.h | 15 /// This file defines the APIs for text input handling. 22 /// This class can be used for giving hints to the browser about the text input 35 /// SetTextInputType() informs the browser about the current text input mode 38 /// @param[in] type The type of text input type. 42 /// text input caret area. 48 /// text is cancelled by the plugin. 51 /// UpdateSurroundingText() informs the browser about the current text 52 /// selection and surrounding text. 54 /// @param[in] text A UTF-8 sting indicating string buffer of current input 58 /// <code>text</code> [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/ |
autoscroll-when-outside-window.html | 3 <p>Click somewhere in this text, then quickly drag past the bottom of the window and hold still to allow auto-scrolling to happen.</p> 5 <p>If the bug occurs, then this text won't be selected until you move the mouse slightly. If the bug does not occur, this text should be selected.</p>
|
editing-disabled-node-replace-crash.html | 5 <title>Replacing text should not crash.</title> 9 <p>Right click the following input text, and replace the misspelled text [zz] to something.</p>
|
find-count-matches-after-text-control.html | 2 Test that text matches are counted correctly when a match occurs inside a text field. 14 <input value="a lemon in a text field"> and another lemon.
|
/external/chromium_org/third_party/WebKit/PerformanceTests/DOM/ |
ModifyAttribute.html | 5 <script type="text/javascript" src="../resources/runner.js"></script> 6 <script type="text/javascript" src="resources/dom-perf.js"></script> 7 <script type="text/javascript" src="resources/dom-perf/modify-attribute.js"></script>
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
token.h | 7 Str text; member in struct:Token 17 Str_copy(&r->text, &t); 25 Str_init(&r->text, &t);
|
/external/chromium_org/ui/app_list/ |
search_box_model.h | 19 // SearchBoxModel consisits of an icon, a hint text, a user text and a selection 20 // model. The icon is rendered to the side of the query editor. The hint text 21 // is used as query edit control's placeholder text and displayed when there is 22 // no user text in the control. The selection model and the text represents the 23 // text, cursor position and selected text in edit control. 33 // Sets/gets the hint text to display when there is in input. 43 // Sets/gets the text for the search box's Textfield 45 const base::string16& text() const { return text_; } function in class:app_list::SearchBoxModel [all...] |
/external/replicaisland/res/xml/ |
level_0_1_dialog_wanda.xml | 8 text = "@string/Wanda_0_1_1_1" 17 text = "@string/Wanda_0_1_1_2" 23 text = "@string/Wanda_0_1_1_3"
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowDateFormat.java | 4 import android.text.format.DateFormat; 13 public final static java.text.DateFormat getDateFormat(Context context) { 14 return java.text.DateFormat.getDateInstance();
|
/frameworks/base/core/java/android/widget/ |
MultiAutoCompleteTextView.java | 20 import android.text.Editable; 21 import android.text.SpannableString; 22 import android.text.Spanned; 23 import android.text.TextUtils; 24 import android.text.method.QwertyKeyListener; 30 * An editable text view, extending {@link AutoCompleteTextView}, that 31 * can show completion suggestions for the substring of the text where 37 * <p>The following code snippet shows how to create a text view which suggests 78 * range of the text where the user is typing. 91 protected void performFiltering(CharSequence text, int keyCode) 116 Editable text = getText(); local [all...] |