HomeSort by relevance Sort by last modified time
    Searched full:resultstring (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/lzma/CPP/Common/
UTFConvert.h 9 bool ConvertUTF8ToUnicode(const AString &utfString, UString &resultString);
10 bool ConvertUnicodeToUTF8(const UString &unicodeString, AString &resultString);
StringConvert.cpp 14 UString resultString;
18 srcString.Len(), resultString.GetBuffer(srcString.Len()),
22 resultString.ReleaseBuffer(numChars);
24 return resultString;
134 UString resultString;
136 resultString += (wchar_t)srcString[i];
140 int numChars = mbstowcs(resultString.GetBuffer(srcString.Len()), srcString, srcString.Len() + 1);
142 resultString.ReleaseBuffer(numChars);
145 return resultString;
150 AString resultString;
    [all...]
StdInStream.h 24 void ReadToString(AString &resultString);
StdInStream.cpp 75 void CStdInStream::ReadToString(AString &resultString)
77 resultString.Empty();
80 resultString += (char)c;
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalReceiver.java 35 String resultString = LaunchpadActivity.RECEIVER_LOCAL;
37 resultString = "Successfully registered, but expected it to fail";
42 //resultString = "This is the correct behavior but not yet implemented";
43 resultString = LaunchpadActivity.RECEIVER_LOCAL;
46 resultString = "Successfully bound to service, but expected it to fail";
58 //resultString = "This is the correct behavior but not yet implemented";
59 resultString = LaunchpadActivity.RECEIVER_LOCAL;
70 data.writeString(resultString);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDMessageResponse.m 34 + (ARDMessageResultType)resultTypeFromString:(NSString *)resultString {
36 if ([resultString isEqualToString:@"SUCCESS"]) {
38 } else if ([resultString isEqualToString:@"INVALID_CLIENT"]) {
40 } else if ([resultString isEqualToString:@"INVALID_ROOM"]) {
ARDJoinResponse.m 42 NSString *resultString = responseJSON[kARDJoinResultKey];
43 response.result = [[self class] resultTypeFromString:resultString];
72 + (ARDJoinResultType)resultTypeFromString:(NSString *)resultString {
74 if ([resultString isEqualToString:@"SUCCESS"]) {
76 } else if ([resultString isEqualToString:@"FULL"]) {
  /external/xmlrpcpp/test/
HelloServer.cpp 37 std::string resultString = "Hello, ";
38 resultString += std::string(params[0]);
39 result = resultString;
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OnedEAN13Reader.h 26 CFX_ByteString& resultString,
BC_OnedEAN13Reader.cpp 47 CFX_ByteString& resultString,
62 resultString += (FX_CHAR)('0' + bestMatch % 10);
70 DetermineFirstDigit(resultString, lgPatternFound, e);
91 resultString += (FX_CHAR)('0' + bestMatch);
BC_OnedUPCAReader.h 37 CFX_ByteString& resultString,
BC_OnedUPCAReader.cpp 82 CFX_ByteString& resultString,
84 int32_t temp = m_ean13Reader->DecodeMiddle(row, startRange, resultString, e);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
BuildStep.java 190 String resultString = "";
193 resultString = "Certificate to be tried.\n";
196 resultString = "Certificate backed out since path does not "
200 resultString = "Certificate satisfies conditions.\n";
203 resultString = "Certificate backed out since path does not "
207 resultString = "Certificate satisfies conditions.\n";
210 resultString = "Internal error: Invalid step result value.\n";
212 return resultString;
  /packages/services/Telephony/tests/src/com/android/phone/tests/
OtaspTestActivity.java 94 String resultString;
97 resultString = "User skipped!";
100 resultString = "Success!";
103 resultString = "FAILURE";
106 resultString = "Unexpected code: " + resultCode;
109 Log.i(LOG_TAG, " - result: " + resultString);
110 mResult.setText(resultString);
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorExpressionEvaluator.java 73 final String resultString = mTokenizer.getLocalizedExpression(
75 callback.onEvaluate(expr, resultString, Calculator.INVALID_RES_ID);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
FrequencyVerification.java 130 String resultString = String.format(
139 Log.e(LOG_TAG, "Frequency test FAIL: " + resultString);
140 Assert.fail(String.format("Frequency out of range: " + resultString));
142 Log.i(LOG_TAG, "Frequency test pass: " + resultString);
  /packages/apps/Contacts/src/com/android/contacts/editor/
EventFieldEditorView.java 242 final String resultString;
244 resultString = kind.dateFormatWithoutYear.format(outCalendar.getTime());
246 resultString = kind.dateFormatWithYear.format(outCalendar.getTime());
248 onFieldChanged(column, resultString);
  /external/chromium-trace/catapult/tracing/tracing/base/unittest/
html_test_results.html 422 var resultString;
424 resultString = 'FAILED';
428 resultString = 'FLAKY';
432 resultString = 'PASSED';
436 this.log_('[' + resultString + ']\n');
439 this.notifyTestResultToDevServer_(resultString);
  /frameworks/base/services/tests/servicestests/src/com/android/server/notification/
ValidateNotificationPeopleTest.java 149 String resultString = Arrays.toString(result);
150 assertEquals(message + ": arrays differ", expectedString, resultString);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
AdvancedWifiOptionsFlow.java 340 private FormPage createFormPage(String resultString) {
342 result.putString(FormPage.DATA_KEY_SUMMARY_STRING, resultString);
343 FormPage formPage = FormPage.createTextInputForm(resultString);
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417DecodedBitStreamParser.cpp 486 CFX_ByteString resultString(bigIntegerToString(result).c_str());
487 if (resultString.GetAt(0) != '1') {
491 return resultString.Mid(1, resultString.GetLength() - 1);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
NewInstanceStringTest.java 295 String resultString = getStringValue(objectResult.objectID);
297 expectedString, resultString);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
TestResultsGenerator.java 608 String resultString = source.substring(0, replaceIndex);
609 resultString = resultString + replacement;
610 resultString =
611 resultString
613 return resultString;
    [all...]
  /external/icu/icu4c/source/common/
ucase.cpp     [all...]
uprops.cpp 130 const UChar *resultString;
131 return (UBool)(ucase_toFullFolding(csp, c, &resultString, U_FOLD_CASE_DEFAULT)>=0);

Completed in 1571 milliseconds

1 2 3 4