Home
last modified time | relevance | path

Searched refs:currentText (Results 1 – 22 of 22) sorted by relevance

/external/jdiff/src/jdiff/
DCommentsHandler.java38 private String currentText = null; field in CommentsHandler
87 currentText = null; in startElement()
116 if (currentText == null) in characters()
117 currentText = chunk; in characters()
119 currentText += chunk; in characters()
129 currentText = currentText.trim(); in addTextToComments()
131 if (!currentText.endsWith(".") && in addTextToComments()
132 !currentText.endsWith("?") && in addTextToComments()
133 !currentText.endsWith("!") && in addTextToComments()
134 currentText.compareTo(Comments.placeHolderText) != 0) { in addTextToComments()
[all …]
DAPIHandler.java49 private String currentText = null; field in APIHandler
147 currentText = null; in startElement()
201 if (currentText == null) in characters()
202 currentText = chunk; in characters()
204 currentText += chunk; in characters()
214 currentText = currentText.trim(); in addTextToComments()
217 currentText = Comments.convertAtLinks(currentText, currentElement, in addTextToComments()
221 if (checkIsSentence && !currentText.endsWith(".") && in addTextToComments()
222 currentText.compareTo(Comments.placeHolderText) != 0) { in addTextToComments()
223 System.out.println("Warning: text of comment does not end in a period: " + currentText); in addTextToComments()
[all …]
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/async/
DAsyncNonStdParsingTest.java93 assertEquals("money!", p.currentText()); in _testSimpleUnquoted()
200 assertEquals("a", p.currentText()); in _testAposQuotingEnabled()
202 assertEquals("1", p.currentText()); in _testAposQuotingEnabled()
204 assertEquals("foobar", p.currentText()); in _testAposQuotingEnabled()
206 assertEquals("b", p.currentText()); in _testAposQuotingEnabled()
208 assertEquals("_abcde1234", p.currentText()); in _testAposQuotingEnabled()
210 assertEquals("d", p.currentText()); in _testAposQuotingEnabled()
212 assertEquals("\"", p.currentText()); in _testAposQuotingEnabled()
214 assertEquals("\"\"", p.currentText()); in _testAposQuotingEnabled()
217 assertEquals("", p.currentText()); in _testAposQuotingEnabled()
[all …]
DAsyncSimpleObjectTest.java52 assertEquals("a", r.currentText()); in _testBooleans()
65 assertEquals("b", r.currentText()); in _testBooleans()
69 assertEquals("acdc", r.currentText()); in _testBooleans()
73 assertEquals(UNICODE_SHORT_NAME, r.currentText()); in _testBooleans()
77 assertEquals("a1234567", r.currentText()); in _testBooleans()
81 assertEquals(UNICODE_LONG_NAME, r.currentText()); in _testBooleans()
146 assertEquals("i1", r.currentText()); in _testNumbers()
153 assertEquals("doubley", r.currentText()); in _testNumbers()
160 assertEquals("biggieDecimal", r.currentText()); in _testNumbers()
165 assertEquals(""+NUMBER_EXP_BD, r.currentText()); in _testNumbers()
DAsyncMissingValuesInArrayTest.java71 assertEquals("a", p.currentText()); in testArrayInnerComma()
81 assertEquals("b", p.currentText()); in testArrayInnerComma()
103 assertEquals("a", p.currentText()); in testArrayLeadingComma()
106 assertEquals("b", p.currentText()); in testArrayLeadingComma()
122 assertEquals("a", p.currentText()); in testArrayTrailingComma()
125 assertEquals("b", p.currentText()); in testArrayTrailingComma()
150 assertEquals("a", p.currentText()); in testArrayTrailingCommas()
153 assertEquals("b", p.currentText()); in testArrayTrailingCommas()
181 assertEquals("a", p.currentText()); in testArrayTrailingCommasTriple()
184 assertEquals("b", p.currentText()); in testArrayTrailingCommasTriple()
DAsyncMissingValuesInObjectTest.java50 assertEquals("a", p.currentText()); in testObjectBasic()
54 assertEquals("b", p.currentText()); in testObjectBasic()
71 assertEquals("a", p.currentText()); in testObjectInnerComma()
99 assertEquals("a", p.currentText()); in testObjectTrailingComma()
103 assertEquals("b", p.currentText()); in testObjectTrailingComma()
124 assertEquals("a", p.currentText()); in testObjectTrailingCommas()
128 assertEquals("b", p.currentText()); in testObjectTrailingCommas()
DAsyncNonStdNumberHandlingTest.java50 p.currentText(); in _testLeadingZeroesInt()
65 assertEquals(String.valueOf(value), p.currentText()); in _testLeadingZeroesInt()
88 p.currentText(); in _testLeadingZeroesFloat()
102 assertEquals(String.valueOf(value), p.currentText()); in _testLeadingZeroesFloat()
131 p.currentText(); in _testLeadingPeriodFloat()
147 assertEquals(valueStr.trim(), p.currentText()); in _testLeadingPeriodFloat()
DAsyncStringObjectTest.java58 assertEquals(UNICODE_SHORT_NAME, r.currentText()); in _testBasicFieldsNames2()
64 assertEquals(UNICODE_LONG_NAME, r.currentText()); in _testBasicFieldsNames2()
70 assertEquals(UNICODE_LONG_NAME, r.currentText()); in _testBasicFieldsNames2()
74 assertEquals(UNICODE_SHORT_NAME, r.currentText()); in _testBasicFieldsNames2()
81 assertEquals(ASCII_SHORT_NAME, r.currentText()); in _testBasicFieldsNames2()
85 assertEquals(ASCII_SHORT_NAME, r.currentText()); in _testBasicFieldsNames2()
DAsyncCharEscapingTest.java65 assertEquals("LF=\n", r.currentText()); in _testSimpleEscaping()
74 assertEquals("NULL:\0!", r.currentText()); in _testSimpleEscaping()
82 assertEquals("\u0123", r.currentText()); in _testSimpleEscaping()
90 assertEquals("AC", r.currentText()); in _testSimpleEscaping()
100 assertEquals("A1234", r.currentText()); in test8DigitSequence()
DAsyncNaNHandlingTest.java57 assertEquals("NaN", p.currentText()); in _testAllowNaN()
108 fail("Expected exception; got "+t+" (text ["+p.currentText()+"])"); in _testDisallowInf()
149 assertEquals("Infinity", p.currentText()); in _testAllowInf()
155 assertEquals("+Infinity", p.currentText()); in _testAllowInf()
161 assertEquals("-Infinity", p.currentText()); in _testAllowInf()
DAsyncScalarArrayTest.java49 assertEquals("false", r.currentText()); in _testTokens()
53 assertEquals("null", r.currentText()); in _testTokens()
105 assertEquals(asStr, r.currentText()); in _testInts()
243 i, values[i], r.currentText()), in _testDoubles()
DAsyncSimpleNestedTest.java44 assertEquals("[", r.currentText()); in _testStuffInObject()
106 assertEquals("{", r.currentText()); in _testStuffInArray()
DAsyncUnicodeHandlingTest.java67 assertEquals(TEXT, r.currentText()); in _testUnicodeWithSurrogates()
DAsyncConcurrencyTest.java85 String str = parser.currentText(); in _assert()
DAsyncStringArrayTest.java140 assertEquals(values[i], r.currentText()); in _testStrings()
/external/cldr/tools/java/org/unicode/cldr/tool/
DConvertXTB.java154 private StringBuffer currentText; field in ConvertXTB.XtbHandler
164 currentText = new StringBuffer(); in XtbHandler()
172 currentText.append(ch, start, length); in characters()
181 currentText.setLength(0); in startElement()
185 currentText.append(placeholder); in startElement()
197 addValue(lastXpath, currentText.toString()); in endElement()
199 currentText.setLength(0); in endElement()
DGenerateXMB.java1445 private StringBuilder currentText = new StringBuilder(); field in GenerateXMB.MyContentHandler
1462 currentText.append(chars); in characters()
1474 String chars = currentText.toString().replace("\n", "").trim(); in endElement()
1494 currentText.setLength(0); in endElement()
1535 currentText.setLength(0); in startElement()
1540 currentText.append(original); in startElement()
1547 String chars = currentText.toString().replace("\n", "").trim(); in startElement()
1549 currentText.setLength(0); in startElement()
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dnetworkconfig.cpp145 QString prev_val = phase2Select->currentText(); in eapChanged()
157 if (eapSelect->currentText().compare("TTLS") == 0) { in eapChanged()
162 } else if (eapSelect->currentText().compare("FAST") == 0) in eapChanged()
302 eapSelect->currentText().toLocal8Bit().constData(); in addNetwork()
310 QString eap = eapSelect->currentText(); in addNetwork()
311 QString inner = phase2Select->currentText(); in addNetwork()
Dwpagui.cpp1163 QString sel(networkSelect->currentText()); in editSelectedNetwork()
1228 QString sel(networkSelect->currentText()); in removeSelectedNetwork()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/testsupport/
DAsyncReaderWrapper.java24 public String currentText() throws IOException { in currentText() method in AsyncReaderWrapper
/external/autotest/frontend/client/src/autotest/moblab/
DDutManagementView.java365 String currentText = informationArea.getText(); in onLogActionComplete() local
368 "\n").append(currentText).toString()); in onLogActionComplete()
/external/doclava/res/assets/templates-sdk/assets/js/
Dandroid_3p-bundle.js2706currentText:"Today",monthNames:["January","February","March","April","May","June","July","August",… property