Home
last modified time | relevance | path

Searched defs:text (Results 1 – 25 of 2109) sorted by relevance

12345678910>>...85

/external/expat/tests/
Druntests.c165 _expect_failure(const char *text, enum XML_Error errorCode, const char *errorMessage, in _expect_failure()
176 #define expect_failure(text, errorCode, errorMessage) \ argument
458 char text[] = "<doc>\0</doc>"; in START_TEST() local
520 const char *text = "\357\273\277<e/>"; in START_TEST() local
529 char text[] = "\376\377\0<\0e\0/\0>"; in START_TEST() local
538 char text[] = "\377\376<\0e\0/\0>\0"; in START_TEST() local
548 char text[] = " \0<\0e\0/\0>\0"; in START_TEST() local
580 _run_character_check(const char *text, const XML_Char *expected, in _run_character_check()
593 #define run_character_check(text, expected) \ argument
597 _run_attribute_check(const char *text, const XML_Char *expected, in _run_attribute_check()
[all …]
/external/lzma/CPP/Windows/Control/
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()
/external/python/cpython2/Lib/idlelib/
DSearchDialog.py6 def _setup(text): argument
13 def find(text): argument
17 def find_again(text): argument
20 def find_selection(text): argument
34 def find_again(self, text): argument
63 def find_selection(self, text): argument
DUndoDelegator.py182 def do(self, text): argument
185 def redo(self, text): argument
188 def undo(self, text): argument
194 def save_marks(self, text): argument
201 def set_marks(self, text, marks): argument
213 def do(self, text): argument
224 def redo(self, text): argument
231 def undo(self, text): argument
271 def do(self, text): argument
286 def redo(self, text): argument
[all …]
/external/python/cpython3/Lib/idlelib/
Dsearch.py6 def _setup(text): argument
14 def find(text): argument
19 def find_again(text): argument
23 def find_selection(text): argument
39 def find_again(self, text): argument
68 def find_selection(self, text): argument
Dundo.py183 def do(self, text): argument
186 def redo(self, text): argument
189 def undo(self, text): argument
195 def save_marks(self, text): argument
202 def set_marks(self, text, marks): argument
213 def do(self, text): argument
224 def redo(self, text): argument
231 def undo(self, text): argument
270 def do(self, text): argument
285 def redo(self, text): argument
[all …]
/external/owasp/sanitizer/empiricism/
Dcanned-data.js20632 "text": true property
20637 "text": true property
20642 "text": true property
20647 "text": true property
20652 "text": true property
20658 "text": true property
20663 "text": true property
20668 "text": true property
20673 "text": true property
20680 "text": true property
[all …]
/external/smali/smalidea/src/test/java/org/jf/smalidea/
DSmaliMethodTest.java46 String text = in testMethodRegisters() local
66 String text = in testMethodRegisters2() local
86 String text = in testStaticRegisterCount() local
119 String text = in testMethodParams() local
165 String text = in testVarArgsMethod() local
237 String text = instructionsTestClass; in testGetInstructions() local
257 String text = instructionsTestClass; in testGetSourcePositionForCodeOffset() local
280 String text = instructionsTestClass; in testThrowsList() local
293 String text = "" + in testPrimitiveReturnType() local
DSmaliClassTypeElementTest.java47 String text = ".class public Lmy/pkg/blah; " + in testGetType() local
79 String text = ".class public Lsmali; " + in testSimpleInnerClass() local
101 String text = ".class public Lsmali; " + in testInnerClassWithPackage() local
125 String text = ".class public Lsmali; " + in testComplexInnerClass() local
159 String text = ".class public Lsmali; " + in testInnerClassTrailingDollar() local
/external/toolchain-utils/cros_utils/
Dhtml_tools.py38 def GetListItem(text): argument
50 def GetParagraph(text): argument
58 def GetHeader(text, h=1): argument
71 def FormatLineBreaks(text): argument
75 def GetTableCell(text): argument
90 def GetLink(link, text): argument
/external/python/cpython3/Lib/
Dtextwrap.py146 def _munge_whitespace(self, text): argument
160 def _split(self, text): argument
336 def _split_chunks(self, text): argument
342 def wrap(self, text): argument
356 def fill(self, text): argument
368 def wrap(text, width=70, **kwargs): argument
381 def fill(text, width=70, **kwargs): argument
393 def shorten(text, width, **kwargs): argument
414 def dedent(text): argument
467 def indent(text, prefix, predicate=None): argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenRewriteStream.cs107 public object text; field in Antlr.Runtime.TokenRewriteStream.RewriteOperation
111 protected RewriteOperation(TokenRewriteStream stream, int index, object text) { in RewriteOperation()
133 public InsertBeforeOp(TokenRewriteStream stream, int index, object text) : in InsertBeforeOp()
152 public ReplaceOp(TokenRewriteStream stream, int from, int to, object text) in ReplaceOp()
237 public virtual void InsertAfter(IToken t, object text) { in InsertAfter()
241 public virtual void InsertAfter(int index, object text) { in InsertAfter()
245 public virtual void InsertAfter(string programName, IToken t, object text) { in InsertAfter()
249 public virtual void InsertAfter(string programName, int index, object text) { in InsertAfter()
255 public virtual void InsertBefore(IToken t, object text) { in InsertBefore()
259 public virtual void InsertBefore(int index, object text) { in InsertBefore()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DTokenRewriteStream.cs112 public object text; field in Antlr.Runtime.TokenRewriteStream.RewriteOperation
122 protected RewriteOperation( TokenRewriteStream stream, int index, object text ) in RewriteOperation()
150 public InsertBeforeOp( TokenRewriteStream stream, int index, object text ) : in InsertBeforeOp()
172 public ReplaceOp( TokenRewriteStream stream, int from, int to, object text ) in ReplaceOp()
268 public virtual void InsertAfter( IToken t, object text ) in InsertAfter()
273 public virtual void InsertAfter( int index, object text ) in InsertAfter()
278 public virtual void InsertAfter( string programName, IToken t, object text ) in InsertAfter()
283 public virtual void InsertAfter( string programName, int index, object text ) in InsertAfter()
289 public virtual void InsertBefore( IToken t, object text ) in InsertBefore()
294 public virtual void InsertBefore( int index, object text ) in InsertBefore()
[all …]
/external/dhcpcd-6.8.2/test/
Dtest_hmac_md5.c51 const uint8_t text[] = "Hi There"; in hmac_md5_test1() local
67 const uint8_t text[] = "what do ya want for nothing?"; in hmac_md5_test2() local
80 uint8_t text[50]; in hmac_md5_test3() local
98 uint8_t text[50]; in hmac_md5_test4() local
116 const uint8_t text[] = "Test With Truncation"; in hmac_md5_test5() local
132 const uint8_t text[] = "Test Using Larger Than Block-Size Key - Hash Key First"; in hmac_md5_test6() local
148 const uint8_t text[] = "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data"; in hmac_md5_test7() local
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/
DJavadocParserTest.java57 String text = EOL + in parseCommentWithNewLines() local
70 String text = "Returns a new Token object, by default." + EOL + in parseCommentWithIndentation() local
87 String text = EOL + in parseBlockTagsAndEmptyDescription() local
113 String text = EOL + in parseParamBlockTags() local
131 String text = EOL + in parseMultilineParamBlockTags() local
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue40/
DDogFoodBeanTest.java30 String text = yaml.dump(input); in testOwnBigDecimal() local
42 String text = yaml.dump(input); in testBigDecimalPrecision() local
53 String text = yaml.dumpAsMap(input); in testBigDecimalNoRootTag() local
63 String text = yaml.dump(new BigDecimal("5")); in testBigDecimal1() local
69 String text = yaml.dump(new BigDecimal("5.123")); in testBigDecimal2() local
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DTokenRewriteStream.java95 protected Object text; field in TokenRewriteStream.RewriteOperation
101 protected RewriteOperation(int index, Object text) { in RewriteOperation()
121 public InsertBeforeOp(int index, Object text) { in InsertBeforeOp()
138 public ReplaceOp(int from, int to, Object text) { in ReplaceOp()
211 public void insertAfter(Token t, Object text) { in insertAfter()
215 public void insertAfter(int index, Object text) { in insertAfter()
219 public void insertAfter(String programName, Token t, Object text) { in insertAfter()
223 public void insertAfter(String programName, int index, Object text) { in insertAfter()
228 public void insertBefore(Token t, Object text) { in insertBefore()
232 public void insertBefore(int index, Object text) { in insertBefore()
[all …]
/external/ppp/pppd/plugins/pppoatm/
Dtext2atm.c20 static int try_pvc(const char *text,struct sockaddr_atmpvc *addr,int flags) in try_pvc()
75 static int do_try_nsap(const char *text,struct sockaddr_atmsvc *addr,int flags) in do_try_nsap()
149 static int try_nsap(const char *text,struct sockaddr_atmsvc *addr,int flags) in try_nsap()
161 static int try_e164(const char *text,struct sockaddr_atmsvc *addr,int flags) in try_e164()
193 static int search(FILE *file,const char *text,struct sockaddr *addr,int length, in search()
213 static int try_name(const char *text,struct sockaddr *addr,int length, in try_name()
226 int text2atm(const char *text,struct sockaddr *addr,int length,int flags) in text2atm()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowSpannableStringBuilder.java19 public void __constructor__(CharSequence text) { in __constructor__()
24 public SpannableStringBuilder append(char text) { in append()
30 public Editable replace(int st, int en, CharSequence text) { in replace()
36 public Editable insert(int where, CharSequence text) { in insert()
42 public SpannableStringBuilder append(CharSequence text) { in append()
/external/icu/icu4c/source/test/intltest/
Dsrchtest.cpp219 char * StringSearchTest::toCharString(const UnicodeString &text) in toCharString()
478 UnicodeString text; in assertEqual() local
537 UnicodeString text; in assertCanonicalEqual() local
590 UnicodeString text; in assertEqualWithAttribute() local
628 UnicodeString text; in TestOpenClose() local
743 UnicodeString text; in TestInitialization() local
875 UnicodeString text; in TestBreakIterator() local
1008 UnicodeString text; in TestOverlap() local
1052 UnicodeString text; in TestCollator() local
1117 UnicodeString text; in TestPattern() local
[all …]
/external/annotation-tools/asmx/test/lib/
Djakarta-oro-2.0.8.jar ... oro/io/ org/apache/oro/text/ org/apache/oro/text/regex
/external/guice/extensions/persist/lib/
Doro-2.0.8.jar ... oro/io/ org/apache/oro/text/ org/apache/oro/text/regex
/external/python/cpython2/Lib/
Dtextwrap.py146 def _munge_whitespace(self, text): argument
163 def _split(self, text): argument
316 def wrap(self, text): argument
331 def fill(self, text): argument
343 def wrap(text, width=70, **kwargs): argument
356 def fill(text, width=70, **kwargs): argument
374 def dedent(text): argument
/external/markdown/markdown/
Dhtml4.py69 def _raise_serialization_error(text): argument
74 def _encode(text, encoding): argument
80 def _escape_cdata(text, encoding): argument
97 def _escape_attrib(text, encoding): argument
114 def _escape_attrib_html(text, encoding): argument
211 def encode(text): argument
/external/skia/src/core/
DSkFindAndPlaceGlyph.h70 const SkGlyph& lookupGlyph(const char** text) override { in lookupGlyph()
74 const SkGlyph& lookupGlyphXY(const char** text, SkFixed x, SkFixed y) override { in lookupGlyphXY()
89 SkUnichar nextUnichar(const char** text) override { return SkUTF8_NextUnichar(text); } in nextUnichar()
97 SkUnichar nextUnichar(const char** text) override { in nextUnichar()
107 SkUnichar nextUnichar(const char** text) override { in nextUnichar()
122 const SkGlyph& lookupGlyph(const char** text) override { in lookupGlyph()
125 const SkGlyph& lookupGlyphXY(const char** text, SkFixed x, SkFixed y) override { in lookupGlyphXY()
130 uint16_t nextGlyphId(const char** text) { in nextGlyphId()
328 const char** text, SkPoint position, ProcessOneGlyph&& processOneGlyph) { in findAndPositionGlyph()
345 const char** text, SkPoint position, ProcessOneGlyph&& processOneGlyph) override { in findAndPositionGlyph()
[all …]

12345678910>>...85