HomeSort by relevance Sort by last modified time
    Searched defs:converted (Results 1 - 25 of 265) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/icu/icu4c/source/io/
sscanf.cpp 41 int32_t converted; local
44 converted = u_vsscanf(buffer, patternSpecification, ap);
47 return converted;
56 int32_t converted; local
59 converted = u_vsscanf_u(buffer, patternSpecification, ap);
62 return converted;
70 int32_t converted; local
88 converted = u_vsscanf_u(buffer, pattern, ap);
95 return converted;
103 int32_t converted; local
    [all...]
uscanf.cpp 42 int32_t converted; local
45 converted = u_vfscanf(f, patternSpecification, ap);
48 return converted;
57 int32_t converted; local
60 converted = u_vfscanf_u(f, patternSpecification, ap);
63 return converted;
71 int32_t converted; local
89 converted = u_vfscanf_u(f, pattern, ap);
96 return converted;
  /packages/apps/Dialer/java/com/android/dialer/dialpadview/
UnicodeDialerKeyListener.java 35 final String converted = local
40 CharSequence result = super.filter(converted, start, end, dest, dstart, dend);
42 if (source.equals(converted)) {
50 // result == null we return the unfiltered but converted numeric string instead.
51 return converted.subSequence(start, end);
  /external/dng_sdk/source/
dng_safe_arithmetic.h 184 // Returns the result of converting val to an int32_t if it can be converted
190 // type TDest. If the value in 'src' cannot be converted to the type TDest
208 const TDest converted = static_cast<TDest>(src); local
212 if (static_cast<TSrc>(converted) != src) {
216 *dest = converted;
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
SubstringMatcher.java 41 protected String converted(String arg) { return ignoringCase ? arg.toLowerCase() : arg; } method in class:SubstringMatcher
  /external/mockito/src/main/java/org/mockito/internal/util/collections/
ListUtil.java 30 LinkedList<To> converted = new LinkedList<To>(); local
32 converted.add(converter.convert(f));
34 return converted;
  /packages/apps/Camera2/src/com/android/camera/util/
Size.java 152 Size[] converted = new Size[sizes.length]; local
154 converted[i] = new Size(sizes[i].getWidth(), sizes[i].getHeight());
156 return converted;
160 ArrayList<Size> converted = new ArrayList<>(sizes.size()); local
162 converted.add(new Size(size.width(), size.height()));
164 return converted;
  /external/libchrome/base/strings/
utf_string_conversions_unittest.cc 63 // An empty std::wstring should be converted to an empty std::string,
101 std::wstring converted; local
105 &converted));
107 EXPECT_EQ(expected, converted);
111 std::wstring converted; local
112 EXPECT_TRUE(UTF8ToWide("\00Z\t", 3, &converted));
113 ASSERT_EQ(3U, converted.length());
114 EXPECT_EQ(static_cast<wchar_t>(0), converted[0]);
115 EXPECT_EQ('Z', converted[1]);
116 EXPECT_EQ('\t', converted[2])
146 std::string converted; local
177 std::string converted; local
206 const std::string& converted = UTF16ToUTF8(multistring16); local
    [all...]
  /frameworks/base/core/java/android/service/autofill/
DateValueSanitizer.java 76 final String converted = mDateFormat.format(date); local
77 if (sDebug) Log.d(TAG, "Transformed " + date + " to " + converted);
79 final Date sanitized = mDateFormat.parse(converted);
CharSequenceTransformation.java 79 final StringBuilder converted = new StringBuilder(); local
98 converted.append(convertedValue);
106 parentTemplate.setCharSequence(childViewId, "setText", converted);
  /external/webrtc/webrtc/base/
macconversion.cc 47 bool converted = false; local
58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
59 if (converted) *i = static_cast<int>(sint8);
63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
64 if (converted) *i = static_cast<int>(sint16);
68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
69 if (converted) *i = static_cast<int>(sint32);
73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
74 if (converted) *i = static_cast<int>(sint64);
78 converted = CFNumberGetValue(cfn, ntype
150 bool converted = p_convertCFNumberToInt(cfn, &asInt); local
    [all...]
  /frameworks/base/tools/aapt2/jni/
aapt2_jni.cpp 41 std::vector<ScopedUtfChars> converted; local
59 converted.push_back(ScopedUtfChars(env, string_obj));
62 return converted;
  /hardware/interfaces/keymaster/4.0/support/
Keymaster3.cpp 46 V3_0::KeyParameter converted; local
47 converted.tag = static_cast<V3_0::Tag>(param.tag);
48 static_assert(sizeof(converted.f) == sizeof(param.f), "This function assumes sizes match");
49 memcpy(&converted.f, &param.f, sizeof(param.f));
50 converted.blob = param.blob;
51 return converted;
55 KeyParameter converted; local
56 converted.tag = static_cast<Tag>(param.tag);
57 static_assert(sizeof(converted.f) == sizeof(param.f), "This function assumes sizes match");
58 memcpy(&converted.f, &param.f, sizeof(param.f))
98 KeyCharacteristics converted; local
    [all...]
  /external/desugar/java/com/google/devtools/common/options/testing/
ConverterTester.java 68 * <p>The inputs added here will be converted to values using the Converter class passed to the
75 * <li>to the other values converted from inputs in the same addEqualityGroup call
83 * <li>to any values converted from inputs in a different addEqualityGroup call
125 Object converted; local
129 converted = converter.convert(input);
139 + "\" was not equal to itself when converted twice by the same Converter")
141 .isEqualTo(converted);
145 + "\" did not have a consistent hashCode when converted twice "
148 .isEqualTo(converted.hashCode());
152 + "\" was not equal to itself when converted twice by a different Converter"
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatDataDrivenTest.java 527 String converted = PatternStringUtils.convertLocalized(tuple.localizedPattern, symbols, false); local
528 PatternStringParser.parseToExistingProperties(converted, properties);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatDataDrivenTest.java 524 String converted = PatternStringUtils.convertLocalized(tuple.localizedPattern, symbols, false); local
525 PatternStringParser.parseToExistingProperties(converted, properties);
  /external/libbrillo/brillo/
any_internal_impl.h 57 // converted to type T). Secondly, this allows us to specialize a helper
177 bool converted = TryConvert(value_, &int_val); variable
178 CHECK(converted) << "Unable to convert value of type '"
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_if_conversion.cpp 44 unsigned converted = 0; local
53 ++converted;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
StreamReader.java 184 int converted = this.stream.read(data); local
185 if (converted > 0) {
192 checkPrintable(data, 0, converted);
193 this.buffer = new StringBuilder(buffer.length() + converted).append(buffer)
194 .append(data, 0, converted).toString();
  /system/core/base/
utf8_test.cpp 48 // Thus, we verify that the valid characters are converted, but we ignore the
133 // An empty std::wstring should be converted to an empty std::string,
172 std::wstring converted; local
176 &converted);
178 // The original test always compared expected and converted, but don't do
183 EXPECT_EQ(expected, converted);
190 std::wstring converted; local
191 EXPECT_TRUE(UTF8ToWide("\00Z\t", 3, &converted));
192 ASSERT_EQ(3U, converted.length());
193 EXPECT_EQ(static_cast<wchar_t>(0), converted[0])
241 std::string converted; local
282 std::string converted; local
333 const std::string& converted = UTF16ToUTF8(multistring16); local
    [all...]
  /bionic/benchmarks/
bionic_benchmarks.cpp 298 int converted = static_cast<int>(strtol(argstr.c_str(), &check_null, 10)); local
302 (*to_populate)[0].push_back(converted);
  /external/deqp/framework/delibs/deimage/
deImage.c 100 deImage* converted = deImage_create(width, height, format); local
101 if (!converted)
105 memcpy(converted->pixels, image->pixels, width * height * deImageFormat_getBytesPerPixel(format));
111 deImage_setPixel(converted, x, y, deImage_getPixel(image, x, y));
114 return converted;
  /external/llvm/lib/Target/SystemZ/
SystemZTDC.cpp 91 // have been already converted.
94 // Marks an instruction as converted - adds it to ConvertedInsts and adds
96 void converted(Instruction *I, Value *V, int Mask, bool Worthy) { function in class:__anon27868::SystemZTDCPass
137 // All comparisons with 0 can be converted.
229 converted(&I, Op0, Mask, Worthy);
258 converted(&I, V, Mask, true);
283 converted(&I, V, Mask, false);
309 converted(&I, Op0, Mask, true);
367 // If unused, or used and converted, remove it.
  /external/syslinux/com32/lib/
vsscanf.c 71 int converted = 0; /* Successful conversions */ local
216 converted++;
256 converted++;
268 converted++;
337 converted++;
345 if (bail == bail_eof && !converted)
346 converted = -1; /* Return EOF (-1) */
348 return converted;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneNumberUtilsTest.java 720 Uri converted = PhoneNumberUtils.convertSipUriToTelUri(source); local
    [all...]

Completed in 4685 milliseconds

1 2 3 4 5 6 7 8 91011