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

1 2 3 4 5 6 7 8 9

  /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...]
  /external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/
converted.pass.cpp 14 // size_t converted() const;
25 assert(myconv.converted() == 0);
27 assert(myconv.converted() == 1);
29 assert(myconv.converted() == 2);
31 assert(myconv.converted() == 4);
ctor_codecvt_state.pass.cpp 26 assert(myconv.converted() == 0);
ctor_codecvt.pass.cpp 26 assert(myconv.converted() == 0);
32 assert(myconv.converted() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.string/
converted.pass.cpp 14 // size_t converted() const;
25 assert(myconv.converted() == 0);
27 assert(myconv.converted() == 1);
29 assert(myconv.converted() == 2);
31 assert(myconv.converted() == 4);
ctor_codecvt_state.pass.cpp 26 assert(myconv.converted() == 0);
ctor_codecvt.pass.cpp 26 assert(myconv.converted() == 0);
32 assert(myconv.converted() == 0);
  /external/svox/pico/tts/
svox_ssml_parser.cpp 596 char* converted = NULL; local
599 converted = new char[4];
600 if (!converted)
605 strcpy(converted, SSML_PITCH_XLOW);
609 converted = new char[4];
610 if (!converted)
615 strcpy(converted, SSML_PITCH_LOW);
619 converted = new char[4];
620 if (!converted)
625 strcpy(converted, SSML_PITCH_MEDIUM)
666 char* converted = NULL; local
736 char* converted = NULL; local
816 char* converted = NULL; local
    [all...]
  /external/icu/icu4c/source/io/
sscanf.c 39 int32_t converted; local
42 converted = u_vsscanf(buffer, patternSpecification, ap);
45 return converted;
54 int32_t converted; local
57 converted = u_vsscanf_u(buffer, patternSpecification, ap);
60 return converted;
68 int32_t converted; local
86 converted = u_vsscanf_u(buffer, pattern, ap);
93 return converted;
101 int32_t converted; local
    [all...]
uscanf.c 40 int32_t converted; local
43 converted = u_vfscanf(f, patternSpecification, ap);
46 return converted;
55 int32_t converted; local
58 converted = u_vfscanf_u(f, patternSpecification, ap);
61 return converted;
69 int32_t converted; local
87 converted = u_vfscanf_u(f, pattern, ap);
94 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...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
UnicodeDialerKeyListener.java 34 final String converted = PhoneNumberUtils.convertKeypadLettersToDigits( local
38 CharSequence result = super.filter(converted, start, end, dest, dstart, dend);
40 if (source.equals(converted)) {
48 // result == null we return the unfiltered but converted numeric string instead.
49 return converted.subSequence(start, end);
  /system/core/base/
utf8_test.cpp 43 // Thus, we verify that the valid characters are converted, but we ignore the
128 // An empty std::wstring should be converted to an empty std::string,
167 std::wstring converted; local
171 &converted);
173 // The original test always compared expected and converted, but don't do
178 EXPECT_EQ(expected, converted);
185 std::wstring converted; local
186 EXPECT_TRUE(UTF8ToWide("\00Z\t", 3, &converted));
187 ASSERT_EQ(3U, converted.length());
188 EXPECT_EQ(static_cast<wchar_t>(0), converted[0])
236 std::string converted; local
277 std::string converted; local
328 const std::string& converted = UTF16ToUTF8(multistring16); local
    [all...]
  /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;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
jalbal.s 1 # Test that jal gets converted to bal on the RM9000 when it is in range.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
local_label_coff.d 7 # Check if relocations against local symbols are converted to
local_label_elf.d 7 # Check if relocations against local symbols are converted to
local_label_wince.d 7 # Check if relocations against local symbols are converted to
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
rodata-merge-map2.s 4 @ would otherwise be converted in a symbol table entry with no
  /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();
  /external/libweave/src/commands/
command_instance_unittest.cc 130 auto converted = instance->ToJson(); local
133 *json, *converted);
157 auto converted = instance->ToJson(); local
160 *json, *converted);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
beq.s 16 # Test that branches which overflow are converted to jumps.
mips16e.s 12 # these jumps should all be converted to compact versions
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/
sonofmmm.cfg 39 output_bucket = <S3 bucket where converted videos should be stored>
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
Binding.java 210 String converted) {
212 ".getBinding().setVariable(BR." + mName + ", " + converted + ")";
217 String oldValue, String converted) {
258 String converted) {
261 null, converted);
266 String oldValue, String converted) {

Completed in 453 milliseconds

1 2 3 4 5 6 7 8 9