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

1 2

  /external/icu4c/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;
  /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);
  /external/chromium/base/
utf_string_conversions_unittest.cc 60 // An empty std::wstring should be converted to an empty std::string,
98 std::wstring converted; local
102 &converted));
104 EXPECT_EQ(expected, converted);
108 std::wstring converted; local
109 EXPECT_TRUE(UTF8ToWide("\00Z\t", 3, &converted));
110 ASSERT_EQ(3U, converted.length());
111 EXPECT_EQ(static_cast<wchar_t>(0), converted[0]);
112 EXPECT_EQ('Z', converted[1]);
113 EXPECT_EQ('\t', converted[2])
143 std::string converted; local
176 std::string converted; local
206 const std::string& converted = WideToUTF8(wmultistring); local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
macconversion.cc 64 bool converted = false; local
75 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
76 if (converted) *i = static_cast<int>(sint8);
80 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
81 if (converted) *i = static_cast<int>(sint16);
85 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
86 if (converted) *i = static_cast<int>(sint32);
90 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
91 if (converted) *i = static_cast<int>(sint64);
95 converted = CFNumberGetValue(cfn, ntype
167 bool converted = p_convertCFNumberToInt(cfn, &asInt); local
    [all...]
  /external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
MipMapGenerator.java 94 Image converted = loader.load(current, false); local
95 format = converted.getFormat();
96 output.add(converted.getData(0));
97 totalSize += converted.getData(0).capacity();
  /external/webkit/Source/WebCore/plugins/
PluginPackage.cpp 260 bool converted = false; local
261 unsigned major = majorMinorParts[0].toUInt(&converted);
262 if (converted)
266 bool converted = false; local
267 unsigned minor = majorMinorParts[1].toUInt(&converted);
268 if (converted)
  /external/qemu/distrib/sdl-1.2.15/test/
testalpha.c 183 SDL_Surface *converted; local
199 converted = SDL_DisplayFormat(sprite);
201 if ( converted == NULL ) {
206 sprite = converted;
219 converted = SDL_DisplayFormat(backing);
221 if ( converted == NULL ) {
227 backing = 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...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidStrictMathTest.java 597 double converted = StrictMath.toDegrees(StrictMath.toRadians(d)); local
598 assertTrue("Converted number not equal to original. d = " + d,
599 converted >= d * 0.99999999 && converted <= d * 1.00000001);
605 double converted = StrictMath.toRadians(StrictMath.toDegrees(d)); local
606 assertTrue("Converted number not equal to original. d = " + d,
607 converted >= d * 0.99999999 && converted <= d * 1.00000001);
OldAndroidMathTest.java 574 double converted = Math.toDegrees(Math.toRadians(d)); local
575 assertTrue("Converted number not equal to original. d = " + d,
576 converted >= d * 0.99999999 && converted <= d * 1.00000001);
582 double converted = Math.toRadians(Math.toDegrees(d)); local
583 assertTrue("Converted number not equal to original. d = " + d,
584 converted >= d * 0.99999999 && converted <= d * 1.00000001);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 100 * @param image the image to be converted
104 BufferedImage converted = new BufferedImage(image.getWidth(), image.getHeight(), local
106 Graphics graphics = converted.getGraphics();
110 return converted;
189 * @param swtImage the SWT image to be converted to AWT
  /external/chromium/chrome/browser/autofill/
credit_card.cc 124 bool converted = base::StringToInt(date, num); local
125 DCHECK(converted);
126 if (!converted)
312 bool converted = false; local
313 converted = base::StringToInt(year_month[0], &num);
314 DCHECK(converted);
316 converted = base::StringToInt(year_month[1], &num);
317 DCHECK(converted);
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 93 Castable(bool* converted) : converted_(converted) {}
104 bool converted = false; local
105 Castable castable(&converted);
107 EXPECT_TRUE(converted);
112 ConstCastable(bool* converted) : converted_(converted) {}
123 bool converted = false; local
124 const ConstCastable const_castable(&converted);
126 EXPECT_TRUE(converted);
148 bool converted = false; local
169 bool converted = false; local
    [all...]
  /external/gtest/test/
gtest-port_test.cc 95 Castable(bool* converted) : converted_(converted) {}
106 bool converted = false; local
107 Castable castable(&converted);
109 EXPECT_TRUE(converted);
114 ConstCastable(bool* converted) : converted_(converted) {}
125 bool converted = false; local
126 const ConstCastable const_castable(&converted);
128 EXPECT_TRUE(converted);
150 bool converted = false; local
171 bool converted = false; local
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest-port_test.cc 95 Castable(bool* converted) : converted_(converted) {}
106 bool converted = false; local
107 Castable castable(&converted);
109 EXPECT_TRUE(converted);
114 ConstCastable(bool* converted) : converted_(converted) {}
125 bool converted = false; local
126 const ConstCastable const_castable(&converted);
128 EXPECT_TRUE(converted);
150 bool converted = false; local
171 bool converted = false; local
    [all...]
  /frameworks/base/media/jni/mediaeditor/
VideoEditorClasses.cpp 978 bool converted = true; local
1258 bool converted = true; local
1748 bool converted = true; local
2279 bool converted = true; local
2606 bool converted = true; local
2714 bool converted = true; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldOutputStreamWriterTest.java 210 String converted = new String(bout.toByteArray(), "ISO8859_1"); local
211 assertTrue("Test 4: Invalid conversion: " + converted,
212 converted.equals("a"));
220 converted = new String(bout.toByteArray(), "ISO8859_1");
221 assertTrue("Test 5: Invalid conversion: " + converted,
222 converted.equals("\u001b$B$("));
224 converted = new String(bout.toByteArray(), "ISO8859_1");
225 assertTrue("Test 6: Invalid conversion: " + converted,
226 converted.equals("\u001b$B$(\u001b(B"));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
OutputStreamWriterTest.java 587 String converted = new String(bout.toByteArray(), "ISO8859_1"); local
588 assertTrue("invalid conversion 1: " + converted, converted
597 converted = new String(bout.toByteArray(), "ISO8859_1");
598 assertTrue("invalid conversion 2: " + converted, converted
601 converted = new String(bout.toByteArray(), "ISO8859_1");
602 assertTrue("invalid conversion 3: " + converted, converted
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StrictMathTest.java 1401 double converted = StrictMath.toDegrees(StrictMath.toRadians(d)); local
1412 double converted = StrictMath.toRadians(StrictMath.toDegrees(d)); local
    [all...]
  /external/chromium/testing/gmock/test/
gmock-actions_test.cc 389 // Tests that an Action<From> object can be converted to a
515 // Tests that the type of the value passed into Return is converted into T
522 bool* converted() const { return converted_; } function in class:__anon5236::FromType
532 ToType(const FromType& x) { *x.converted() = true; }
536 bool converted = false; local
537 FromType x(&converted);
539 EXPECT_TRUE(converted) << "Return must convert its argument in its own "
541 converted = false;
543 EXPECT_FALSE(converted) << "Action must NOT convert its argument "
    [all...]
  /external/doclava/src/com/google/doclava/
Converter.java 654 Object converted; local
657 converted = Converter.obtainType((Type) orig);
660 converted = Converter.obtainField((FieldDoc) orig);
663 converted = Converter.obtainAnnotationInstance((AnnotationDesc) orig);
670 converted = values;
672 converted = orig;
674 v.init(converted);
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_video.c 957 SDL_Surface *converted; local
1006 converted = SDL_ConvertSurface(surface, format, flags);
1008 return(converted);
    [all...]
  /external/skia/legacy/src/animator/
SkDisplayApply.cpp 134 SkTypedArray converted; local
138 animator->packARGB(&values->fScalar, count, &converted);
139 values = converted.begin();
140 count = converted.count();
  /external/skia/src/animator/
SkDisplayApply.cpp 134 SkTypedArray converted; local
138 animator->packARGB(&values->fScalar, count, &converted);
139 values = converted.begin();
140 count = converted.count();

Completed in 1651 milliseconds

1 2