Searched refs:text (Results 76 - 100 of 5442) sorted by relevance

1234567891011>>

/external/llvm/test/MC/MachO/
H A Dpushsection.s3 .text
H A Dzerofill-1.s3 .text
/external/proguard/src/proguard/gui/splash/
H A DTextSprite.java26 * This Sprite represents a text.
32 private final VariableString[] text; field in class:TextSprite
39 * Creates a new TextSprite containing a single line of text.
40 * @param text the variable text string.
41 * @param x the variable x-coordinate of the lower-left corner of the text.
42 * @param y the variable y-coordinate of the lower-left corner of the text.
44 public TextSprite(VariableString text, argument
48 this(new VariableString[] { text }, new ConstantInt(0), x, y);
53 * Creates a new TextSprite containing a multiple lines of text
61 TextSprite(VariableString[] text, VariableInt spacing, VariableInt x, VariableInt y) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A Doutput_text.properties21 # Specify defaults when method="text".
25 method=text
26 media-type=text/plain
/external/chromium_org/chrome/browser/chromeos/ui/
H A Dscreen_capture_notification_ui_chromeos.cc13 const base::string16& text)
14 : text_(text) {
34 const base::string16& text) {
36 new chromeos::ScreenCaptureNotificationUIChromeOS(text));
12 ScreenCaptureNotificationUIChromeOS( const base::string16& text) argument
33 Create( const base::string16& text) argument
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dmost_visited_title.css10 text-align: center; /* Can be overridden in JS. */
11 text-overflow: ellipsis; /* Can be overridden in JS. */
/external/chromium_org/net/base/
H A Dnet_string_util.h19 // Converts |text| using |charset| to UTF-8, and writes it to |output|.
21 bool ConvertToUtf8(const std::string& text, const char* charset,
24 // Converts |text| using |charset| to UTF-8, normalizes the result, and writes
26 bool ConvertToUtf8AndNormalize(const std::string& text, const char* charset,
29 // Converts |text| using |charset| to UTF-16, and writes it to |output|.
31 bool ConvertToUTF16(const std::string& text, const char* charset,
34 // Converts |text| using |charset| to UTF-16, and writes it to |output|.
36 bool ConvertToUTF16WithSubstitutions(const std::string& text,
/external/chromium_org/rlz/lib/
H A Dcrc32.h13 bool Crc32(const char* text, int* crc);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DComment.cpp29 inline Comment::Comment(Document& document, const String& text) argument
30 : CharacterData(document, text, CreateOther)
34 PassRefPtrWillBeRawPtr<Comment> Comment::create(Document& document, const String& text) argument
36 return adoptRefWillBeNoop(new Comment(document, text));
/external/chromium_org/ui/app_list/search/
H A Dtokenized_string_unittest.cc39 base::string16 text(base::UTF8ToUTF16("ScratchPad"));
40 TokenizedString tokens(text);
45 base::string16 text(base::UTF8ToUTF16("Chess2.0"));
46 TokenizedString tokens(text);
51 base::string16 text(base::UTF8ToUTF16("Cut the rope"));
52 TokenizedString tokens(text);
57 base::string16 text(base::UTF8ToUTF16("AutoCAD WS"));
58 TokenizedString tokens(text);
63 base::string16 text(base::UTF8ToUTF16("Great TweetDeck"));
64 TokenizedString tokens(text);
[all...]
/external/clang/test/Preprocessor/
H A Dpp-record.c5 #define STRINGIZE(text) STRINGIZE_I(text)
6 #define STRINGIZE_I(text) #text
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHyperRef.java19 public HyperRef (final String href, final String text, final boolean nbsp) argument
26 if ((text == null) || (text.length () == 0))
27 throw new IllegalArgumentException ("null or empty input: text");
32 setText (text, nbsp);
/external/fio/
H A Dcairo_text_helpers.h5 double fontsize, const char *text);
9 double fontsize, const char *text);
13 double fontsize, const char *text);
17 const char *text);
/external/llvm/test/DebugInfo/AArch64/
H A Deh_frame.s3 .text
/external/llvm/test/MC/AArch64/
H A Darm64-mapping-across-sections.s3 .text
6 // .wibble should *not* inherit .text's mapping symbol. It's a completely different section.
14 // Changing back to .text should not emit a redundant $x
15 .text
19 // + .text to have $x at 0 and no others
25 // CHECK-NEXT: 00000000 .text 00000000 $x
H A Dmapping-across-sections.s3 .text
6 // .wibble should *not* inherit .text's mapping symbol. It's a completely different section.
14 // Changing back to .text should not emit a redundant $x
15 .text
19 // + .text to have $x at 0 and no others
25 // CHECK-NEXT: 00000000 .text 00000000 $x
/external/llvm/test/MC/COFF/
H A Dalign-nops.s3 // Test that we get optimal nops in text
4 .text
18 //CHECK: Name: .text
/external/llvm/test/MC/ELF/
H A Dalign-nops.s3 // Test that we get optimal nops in text
4 .text
19 // CHECK: Name: .text
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DTestSuiteAdapter.java63 private static String trimChars(String text, int numOfChars) { argument
64 return text.substring(numOfChars, text.length() - numOfChars);
78 public static ITestCaseInput createMultiInput(String text) { argument
79 if(text == null) throw new IllegalArgumentException("null");
81 return new TestCaseInputMultiString(trimChars(text, 2));
93 public static ITestCaseOutput createStdOutput(String text) { argument
94 if(text == null) throw new IllegalArgumentException("null");
96 return new TestCaseOutputStdOut(trimChars(text, 1));
99 public static ITestCaseOutput createReturnOutput(String text) { argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DClassicToken.java38 protected String text; field in class:ClassicToken
52 text = oldToken.getText();
59 public ClassicToken(int type, String text) { argument
61 this.text = text;
64 public ClassicToken(int type, String text, int channel) { argument
66 this.text = text;
79 return text;
82 public void setText(String text) { argument
[all...]
/external/libcxx/test/re/re.alg/re.alg.search/
H A Dno_update_pos.pass.cpp25 // of the text.
27 const char *text = "aaa\naa"; local
29 std::cregex_iterator it{text, text+6, re};
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSpannableStringBuilder.java3 import android.text.Editable;
4 import android.text.SpannableStringBuilder;
19 public void __constructor__(CharSequence text) { argument
20 builder.append(text);
24 public SpannableStringBuilder append(char text) { argument
25 builder.append(text);
30 public Editable replace(int st, int en, CharSequence text) { argument
31 builder.replace(st, en, text.toString());
36 public Editable insert(int where, CharSequence text) { argument
37 builder.insert(where, text
42 append(CharSequence text) argument
[all...]
H A DShadowTextPaint.java3 import android.text.TextPaint;
10 public float measureText(String text) { argument
11 return text.length();
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBreakIteratorICU.cpp23 #include "platform/text/TextBreakIterator.h"
25 #include "platform/text/TextBreakIteratorInternalICU.h"
31 #include "wtf/text/AtomicString.h"
32 #include "wtf/text/CString.h"
33 #include "wtf/text/WTFString.h"
115 UText text; member in struct:blink::__anon11350
128 static inline int64_t textNativeLength(UText* text) argument
130 return text->a + text->b;
140 // Pointer references source text structur
180 textClose(UText* text) argument
185 textGetContext(const UText* text, int64_t nativeIndex, UBool forward) argument
194 textLatin1GetCurrentContext(const UText* text) argument
201 textLatin1MoveInPrimaryContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) argument
226 textLatin1SwitchToPrimaryContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) argument
233 textLatin1MoveInPriorContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) argument
249 textLatin1SwitchToPriorContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) argument
256 textInChunkOrOutOfRange(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward, UBool& isAccessible) argument
290 textLatin1Access(UText* text, int64_t nativeIndex, UBool forward) argument
329 textInit(UText* text, const UTextFuncs* funcs, const void* string, unsigned length, const UChar* priorContext, int priorContextLength) argument
349 UText* text = utext_setup(&utWithBuffer->text, sizeof(utWithBuffer->buffer), status); local
358 textUTF16GetCurrentContext(const UText* text) argument
365 textUTF16MoveInPrimaryContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) argument
383 textUTF16SwitchToPrimaryContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) argument
390 textUTF16MoveInPriorContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) argument
406 textUTF16SwitchToPriorContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward) argument
413 textUTF16Access(UText* text, int64_t nativeIndex, UBool forward) argument
452 textOpenUTF16(UText* text, const UChar* string, unsigned length, const UChar* priorContext, int priorContextLength, UErrorCode* status) argument
490 UText* text = textOpenLatin1(&textLocal, string, length, 0, 0, &openStatus); local
551 UText* text = textOpenLatin1(&textLocal, string, length, priorContext, priorContextLength, &openStatus); local
578 UText* text = textOpenUTF16(&textLocal, string, length, priorContext, priorContextLength, &openStatus); local
[all...]
/external/chromium_org/base/i18n/
H A Drtl.cc68 // Represents the locale-specific ICU text direction.
141 TextDirection GetFirstStrongCharacterDirection(const string16& text) { argument
142 const UChar* string = text.c_str();
143 size_t length = text.length();
157 TextDirection GetLastStrongCharacterDirection(const string16& text) { argument
158 const UChar* string = text.c_str();
159 size_t position = text.length();
172 TextDirection GetStringDirection(const string16& text) { argument
173 const UChar* string = text.c_str();
174 size_t length = text
200 AdjustStringForLocaleDirection(string16* text) argument
215 UnadjustStringForLocaleDirection(string16* text) argument
223 AdjustStringForLocaleDirection(string16* text) argument
277 UnadjustStringForLocaleDirection(string16* text) argument
303 StringContainsStrongRTLChars(const string16& text) argument
324 WrapStringWithLTRFormatting(string16* text) argument
336 WrapStringWithRTLFormatting(string16* text) argument
366 GetDisplayStringInLTRDirectionality(const string16& text) argument
377 StripWrappingBidiControlCharacters(const string16& text) argument
[all...]

Completed in 5003 milliseconds

1234567891011>>