Home
last modified time | relevance | path

Searched defs:text (Results 251 – 275 of 9169) sorted by relevance

1...<<11121314151617181920>>...367

/aosp_15_r20/external/angle/third_party/spirv-tools/src/test/opt/
H A Deliminate_dead_output_stores_test.cpp45 const std::string text = R"( in TEST_F() local
136 const std::string text = R"( in TEST_F() local
229 const std::string text = R"( in TEST_F() local
339 const std::string text = R"( in TEST_F() local
472 const std::string text = R"( in TEST_F() local
593 const std::string text = R"( in TEST_F() local
682 const std::string text = R"( in TEST_F() local
808 const std::string text = R"( in TEST_F() local
876 const std::string text = R"( in TEST_F() local
/aosp_15_r20/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlSerializer.java290 XmlSerializer text (String text) in text() argument
296 XmlSerializer text (char [] buf, int start, int len) in text() method
299 void cdsect (String text) in cdsect()
301 void entityRef (String text) throws IOException, in entityRef()
303 void processingInstruction (String text) in processingInstruction()
305 void comment (String text) in comment()
307 void docdecl (String text) in docdecl()
309 void ignorableWhitespace (String text) in ignorableWhitespace()
/aosp_15_r20/external/rust/android-crates-io/crates/unicode-bidi/src/
Dlib.rs194 pub text: &'text str, field
432 pub text: &'text str, field
485 let text = &text[para.range.clone()]; in new_with_data_source() localVariable
569 pub fn reorder_line(&self, para: &ParagraphInfo, line: Range<usize>) -> Cow<'text, str> { in reorder_line()
670 pub text: &'text str, field
794 pub fn reorder_line(&self, line: Range<usize>) -> Cow<'text, str> { in reorder_line()
863 ) -> Cow<'text, str> { in reorder_line()
1175 pub fn new(info: &'a BidiInfo<'text>, para: &'a ParagraphInfo) -> Paragraph<'a, 'text> { in new()
1397 let text: &[u16] = in test_utf16_text_source() localVariable
1414 let text: &[u16] = in test_utf16_char_iter() localVariable
[all …]
/aosp_15_r20/external/lzma/CPP/Windows/Control/
H A DStatusBar.h14 bool Create(LONG style, LPCTSTR text, HWND hwndParent, UINT id) in Create()
16 bool SetText(LPCTSTR text) in SetText()
18 bool SetText(unsigned index, LPCTSTR text, UINT type) in SetText()
20 bool SetText(unsigned index, LPCTSTR text) in SetText()
24 bool Create(LONG style, LPCWSTR text, HWND hwndParent, UINT id) in Create()
26 bool SetText(LPCWSTR text) in SetText()
28 bool SetText(unsigned index, LPCWSTR text, UINT type) in SetText()
30 bool SetText(unsigned index, LPCWSTR text) in SetText()
/aosp_15_r20/frameworks/base/core/java/com/android/internal/util/
H A DXmlSerializerWrapper.java105 public XmlSerializer text(String text) throws IOException{ in text() method in XmlSerializerWrapper
109 public XmlSerializer text(char[] buf, int start, int len) throws IOException { in text() method in XmlSerializerWrapper
113 public void cdsect(String text) in cdsect()
118 public void entityRef(String text) throws IOException { in entityRef()
122 public void processingInstruction(String text) throws IOException { in processingInstruction()
126 public void comment(String text) throws IOException { in comment()
130 public void docdecl(String text) throws IOException { in docdecl()
134 public void ignorableWhitespace(String text) throws IOException { in ignorableWhitespace()
/aosp_15_r20/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/impl/
H A DTextTrieMap.java48 public TextTrieMap<V> put(CharSequence text, V val) { in put()
63 public Iterator<V> get(String text) { in get()
78 public Iterator<V> get(CharSequence text, int start) { in get()
82 public Iterator<V> get(CharSequence text, int start, Output output) { in get()
91 public void find(CharSequence text, ResultHandler<V> handler) { in find()
95 public void find(CharSequence text, int offset, ResultHandler<V> handler) { in find()
99 private void find(CharSequence text, int offset, ResultHandler<V> handler, Output output) { in find()
130 CharIterator(CharSequence text, int offset, boolean ignoreCase) { in CharIterator()
245 private Node(char[] text, List<V> values, List<Node> children) { in Node()
317 private void add(char[] text, int offset, V value) { in add()
[all …]
/aosp_15_r20/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTextTrieMap.java53 public TextTrieMap<V> put(CharSequence text, V val) { in put()
68 public Iterator<V> get(String text) { in get()
83 public Iterator<V> get(CharSequence text, int start) { in get()
87 public Iterator<V> get(CharSequence text, int start, Output output) { in get()
96 public void find(CharSequence text, ResultHandler<V> handler) { in find()
100 public void find(CharSequence text, int offset, ResultHandler<V> handler) { in find()
104 private void find(CharSequence text, int offset, ResultHandler<V> handler, Output output) { in find()
138 CharIterator(CharSequence text, int offset, boolean ignoreCase) { in CharIterator()
254 private Node(char[] text, List<V> values, List<Node> children) { in Node()
326 private void add(char[] text, int offset, V value) { in add()
[all …]
/aosp_15_r20/external/jsoup/src/main/java/org/jsoup/nodes/
H A DTextNode.java19 public TextNode(String text) { in TextNode()
32 public String text() { in text() method in TextNode
41 public TextNode text(String text) { in text() method in TextNode
69 final String text = coreValue(); in splitText() local
135 String text = Entities.unescape(encodedText); in createFromEncoded() local
139 static String normaliseWhitespace(String text) { in normaliseWhitespace()
144 static String stripLeadingWhitespace(String text) { in stripLeadingWhitespace()
/aosp_15_r20/frameworks/base/core/java/android/text/method/
H A DMovementMethod.java36 public void initialize(TextView widget, Spannable text); in initialize()
37 public boolean onKeyDown(TextView widget, Spannable text, int keyCode, KeyEvent event); in onKeyDown()
38 public boolean onKeyUp(TextView widget, Spannable text, int keyCode, KeyEvent event); in onKeyUp()
45 public boolean onKeyOther(TextView view, Spannable text, KeyEvent event); in onKeyOther()
47 public void onTakeFocus(TextView widget, Spannable text, int direction); in onTakeFocus()
48 public boolean onTrackballEvent(TextView widget, Spannable text, MotionEvent event); in onTrackballEvent()
49 public boolean onTouchEvent(TextView widget, Spannable text, MotionEvent event); in onTouchEvent()
50 public boolean onGenericMotionEvent(TextView widget, Spannable text, MotionEvent event); in onGenericMotionEvent()
/aosp_15_r20/external/regex-re2/re2/testing/
H A Dregexp_benchmark.cc37 const char* text = "650-253-0001"; in Test() local
51 const char* text = "650-253-0001"; in MemoryUsage() local
142 void MakeText(string* text, int nbytes) { in MakeText()
881 void SearchDFA(int iters, const char* regexp, const StringPiece& text, in SearchDFA()
898 void SearchNFA(int iters, const char* regexp, const StringPiece& text, in SearchNFA()
913 void SearchOnePass(int iters, const char* regexp, const StringPiece& text, in SearchOnePass()
928 void SearchBitState(int iters, const char* regexp, const StringPiece& text, in SearchBitState()
942 void SearchPCRE(int iters, const char* regexp, const StringPiece& text, in SearchPCRE()
954 void SearchRE2(int iters, const char* regexp, const StringPiece& text, in SearchRE2()
970 void SearchCachedDFA(int iters, const char* regexp, const StringPiece& text, in SearchCachedDFA()
[all …]
/aosp_15_r20/external/python/pyserial/serial/tools/
Dminiterm.py68 def write(self, text): argument
233 def rx(self, text): argument
237 def tx(self, text): argument
241 def echo(self, text): argument
249 def tx(self, text): argument
256 def rx(self, text): argument
259 def tx(self, text): argument
277 def rx(self, text): argument
298 def rx(self, text): argument
321 def rx(self, text): argument
[all …]
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/nodes/
H A DEntitiesTest.java14 String text = "Hello &<> Å å π 新 there ¾ © »"; in escape() local
37 String text = "\uD835\uDD59"; in escapedSupplementary() local
47 …String text = "&NestedGreaterGreater; &nGg; &nGt; &nGtv; &Gt; &gg;"; // gg is not combo, but 8811 … in unescapeMultiChars() local
75 String text = new String(Character.toChars(135361)); in escapeSupplementaryCharacter() local
83 String text = "&nparsl;"; in notMissingMultis() local
89 String text = "&npolint; &qfr;"; in notMissingSupplementals() local
95 …String text = "Hello &AElig; &amp;&LT&gt; &reg &angst; &angst &#960; &#960 &#x65B0; there &! &frac… in unescape() local
102 String text = "Hello &amp= &amp;"; in strictUnescape() local
170 String text = "Hello &<> Å å π 新 there ¾ © »"; in escapeByClonedOutputSettings() local
/aosp_15_r20/external/bcc/tools/
H A Dppchcalls.py296 text = """ variable
413 text = ("#define FILTER_PID %d\n" % args.pid) + text variable
415 text = ("#define FILTER_TID %d\n" % args.tid) + text variable
417 text = "#define FILTER_FAILED\n" + text variable
419 text = "#define FILTER_ERRNO %d\n" % abs(args.errno) + text variable
421 text = "#define LATENCY\n" + text variable
423 text = "#define BY_PROCESS\n" + text variable
425 text = ("#define FILTER_HCALL_NR %d\n" % hcall_nr) + text variable
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/opt/
Dinline_test.cpp2185 const std::string text = in TEST_F() local
2225 const std::string text = R"( in TEST_F() local
2405 const std::string text = R"( in TEST_F() local
2713 const std::string text = in TEST_F() local
3326 const std::string text = R"( in TEST_F() local
3392 const std::string text = R"( in TEST_F() local
3471 const std::string text = R"( in TEST_F() local
3586 const std::string text = R"( local
3672 const std::string text = R"( local
3770 const std::string text = R"( local
[all …]
Ddebug_info_manager_test.cpp41 const std::string text = R"( local
97 const std::string text = R"( local
198 const std::string text = R"(OpCapability Shader local
302 const std::string text = R"( local
359 const std::string text = R"( local
415 const std::string text = R"( local
497 const std::string text = R"( local
584 const std::string text = R"( local
661 const std::string text = R"( local
729 const std::string text = R"( local
/aosp_15_r20/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
H A DAccessibilityTextTraversalTest.java115 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() local
331 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityWordOverContentDescription() local
547 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityCharacterOverText() local
798 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityCharacterOverTextExtend() local
1288 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityWordOverText() local
1539 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityWordOverEditTextWithContentDescription() local
1795 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityWordOverTextExtend() local
2281 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityLineOverText() local
2537 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityLineOverTextExtend() local
3023 final AccessibilityNodeInfo text = sUiAutomation in testActionNextAndPreviousAtGranularityParagraphOverText() local
[all …]
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Ddebug_info_manager_test.cpp41 const std::string text = R"( local
97 const std::string text = R"( local
198 const std::string text = R"(OpCapability Shader local
302 const std::string text = R"( local
359 const std::string text = R"( local
415 const std::string text = R"( local
497 const std::string text = R"( local
584 const std::string text = R"( local
661 const std::string text = R"( local
729 const std::string text = R"( local
/aosp_15_r20/frameworks/base/apct-tests/perftests/core/src/android/text/
H A DPrecomputedTextPerfTest.java63 final CharSequence text = mTextUtil.nextRandomParagraph(WORD_LENGTH, NO_STYLE_TEXT); in testCreate_NoStyled_Hyphenation() local
80 final CharSequence text = mTextUtil.nextRandomParagraph(WORD_LENGTH, NO_STYLE_TEXT); in testCreate_NoStyled_NoHyphenation() local
97 final CharSequence text = mTextUtil.nextRandomParagraph(WORD_LENGTH, NO_STYLE_TEXT); in testCreate_NoStyled_Hyphenation_WidthOnly() local
114 final CharSequence text = mTextUtil.nextRandomParagraph(WORD_LENGTH, NO_STYLE_TEXT); in testCreate_NoStyled_NoHyphenation_WidthOnly() local
131 final CharSequence text = mTextUtil.nextRandomParagraph(WORD_LENGTH, STYLE_TEXT); in testCreate_Styled_Hyphenation() local
148 final CharSequence text = mTextUtil.nextRandomParagraph(WORD_LENGTH, STYLE_TEXT); in testCreate_Styled_NoHyphenation() local
165 final CharSequence text = mTextUtil.nextRandomParagraph(WORD_LENGTH, STYLE_TEXT); in testCreate_Styled_Hyphenation_WidthOnly() local
182 final CharSequence text = mTextUtil.nextRandomParagraph(WORD_LENGTH, STYLE_TEXT); in testCreate_Styled_NoHyphenation_WidthOnly() local
/aosp_15_r20/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DStringUtils.java110 public static int codePointCount(@Nullable final CharSequence text) { in codePointCount()
128 public static boolean containsInArray(@Nonnull final String text, in containsInArray()
146 public static boolean containsInCommaSplittableText(@Nonnull final String text, in containsInCommaSplittableText()
155 public static String removeFromCommaSplittableTextIfExists(@Nonnull final String text, in removeFromCommaSplittableTextIfExists()
321 public static int getCapitalizationType(@Nonnull final String text) { in getCapitalizationType()
357 public static boolean isIdenticalAfterUpcase(@Nonnull final String text) { in isIdenticalAfterUpcase()
370 public static boolean isIdenticalAfterDowncase(@Nonnull final String text) { in isIdenticalAfterDowncase()
383 public static boolean isIdenticalAfterCapitalizeEachWord(@Nonnull final String text, in isIdenticalAfterCapitalizeEachWord()
404 public static String capitalizeEachWord(@Nonnull final String text, in capitalizeEachWord()
439 public static boolean lastPartLooksLikeURL(@Nonnull final CharSequence text) { in lastPartLooksLikeURL()
[all …]
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/widget/
H A DEditorCursorDragTest.java100 String text = "Hello world!"; in testCursorDrag_horizontal_whenTextViewContentsFitOnScreen() local
117 String text = "Hello world!\n\n" in testCursorDrag_horizontal_whenTextViewContentsLargerThanScreen() local
139 String text = sb.toString(); in testCursorDrag_diagonal_whenTextViewContentsFitOnScreen() local
175 String text = sb.toString(); in testCursorDrag_diagonal_whenTextViewContentsLargerThanScreen() local
213 String text = sb.toString(); in testCursorDrag_diagonal_thresholdConfig() local
237 String text = "012345_aaa\n" in testCursorDrag_vertical_whenTextViewContentsFitOnScreen() local
263 String text = "012345_aaa\n" in testCursorDrag_vertical_whenTextViewContentsLargerThanScreen() local
287 String text = "Hi world!"; in testEditor_onTouchEvent_quickTapAfterDrag() local
342 String text = "testEditor_onTouchEvent_mouseDrag"; in testEditor_onTouchEvent_mouseDrag() local
371 String text = "testEditor_onTouchEvent_cursorDrag"; in testEditor_onTouchEvent_cursorDrag() local
[all …]
/aosp_15_r20/external/angle/third_party/spirv-tools/src/test/opt/loop_optimizations/
H A Dpeeling.cpp116 auto test_cannot_peel = [](const std::string& text, uint32_t loop_count_id) { in TEST_F()
143 const std::string text = R"( in TEST_F() local
191 const std::string text = R"( in TEST_F() local
233 const std::string text = R"( in TEST_F() local
285 const std::string text = R"( in TEST_F() local
330 const std::string text = R"( in TEST_F() local
375 const std::string text = R"( in TEST_F() local
443 const std::string text = R"( in TEST_F() local
708 const std::string text = R"( in TEST_F() local
870 const std::string text = R"( in TEST_F() local
[all …]
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/opt/loop_optimizations/
Dpeeling.cpp116 auto test_cannot_peel = [](const std::string& text, uint32_t loop_count_id) { in TEST_F()
143 const std::string text = R"( in TEST_F() local
191 const std::string text = R"( in TEST_F() local
233 const std::string text = R"( in TEST_F() local
285 const std::string text = R"( in TEST_F() local
330 const std::string text = R"( in TEST_F() local
375 const std::string text = R"( in TEST_F() local
443 const std::string text = R"( in TEST_F() local
708 const std::string text = R"( in TEST_F() local
870 const std::string text = R"( in TEST_F() local
[all …]
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/
H A Dpeeling.cpp116 auto test_cannot_peel = [](const std::string& text, uint32_t loop_count_id) { in TEST_F()
143 const std::string text = R"( in TEST_F() local
191 const std::string text = R"( in TEST_F() local
233 const std::string text = R"( in TEST_F() local
285 const std::string text = R"( in TEST_F() local
330 const std::string text = R"( in TEST_F() local
375 const std::string text = R"( in TEST_F() local
443 const std::string text = R"( in TEST_F() local
708 const std::string text = R"( in TEST_F() local
870 const std::string text = R"( in TEST_F() local
[all …]
/aosp_15_r20/out/soong/.intermediates/external/icu/android_icu4j/i18n.module.intra.core.api.stubs/android_common/turbine-combined/
Di18n.module.intra.core.api.stubs.jarandroid/icu/lang/UCharacter$BidiPairedBracketType.class <Unknown> package android.icu. ...
/aosp_15_r20/out/soong/.intermediates/external/icu/android_icu4j/i18n.module.intra.core.api.stubs.from-source/android_common/turbine/
Di18n.module.intra.core.api.stubs.from-source.jarandroid/icu/lang/UCharacter$BidiPairedBracketType.class <Unknown> package android.icu. ...

1...<<11121314151617181920>>...367