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

1 2 3 4 5 6 7 8 91011>>

  /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 28 assert(myconv.converted() == 0);
34 assert(myconv.converted() == 0);
  /prebuilts/ndk/r11/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);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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);
  /external/libcxx/test/libcxx/localization/locales/locale.convenience/conversions/conversions.string/
ctor_move.pass.cpp 30 const auto old_converted = myconv.converted();
31 assert(myconv.converted() == 4);
34 assert(myconv2.converted() == old_converted);
  /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 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.c 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;
  /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/java/com/android/dialer/app/dialpad/
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/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
StringContains.java 15 return converted(s).contains(converted(substring));
StringEndsWith.java 13 return converted(s).endsWith(converted(substring));
StringStartsWith.java 12 protected boolean evalSubstringOf(String s) { return converted(s).startsWith(converted(substring)); }
  /prebuilts/go/darwin-x86/test/
phiopt.go 18 return x // ERROR "converted OpPhi to Copy$"
29 return x // ERROR "converted OpPhi to Not$"
38 return x // ERROR "converted OpPhi to Not$"
47 return x // ERROR "converted OpPhi to Copy$"
52 return a || b // ERROR "converted OpPhi to OrB$"
63 return x // ERROR "converted OpPhi to OrB$"
74 return x // ERROR "converted OpPhi to AndB$"
81 // f6or has side effects so the OpPhi should not be converted.
91 // f6and has side effects so the OpPhi should not be converted.
99 return a || b // ERROR "converted OpPhi to OrB$
    [all...]
  /prebuilts/go/linux-x86/test/
phiopt.go 18 return x // ERROR "converted OpPhi to Copy$"
29 return x // ERROR "converted OpPhi to Not$"
38 return x // ERROR "converted OpPhi to Not$"
47 return x // ERROR "converted OpPhi to Copy$"
52 return a || b // ERROR "converted OpPhi to OrB$"
63 return x // ERROR "converted OpPhi to OrB$"
74 return x // ERROR "converted OpPhi to AndB$"
81 // f6or has side effects so the OpPhi should not be converted.
91 // f6and has side effects so the OpPhi should not be converted.
99 return a || b // ERROR "converted OpPhi to OrB$
    [all...]
  /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;
  /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...]
  /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.

Completed in 804 milliseconds

1 2 3 4 5 6 7 8 91011>>