Searched defs:converted (Results 1 - 25 of 38) sorted by relevance

12

/external/dng_sdk/source/
H A Ddng_safe_arithmetic.h184 // 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/icu/icu4c/source/io/
H A Dsscanf.c41 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...]
H A Duscanf.c42 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;
H A Duscanf_p.c294 * @param argConverted The number of arguments converted and assigned, or -1 if an
400 /* will contain the # of items converted thus far */
411 /* we converted 0 args */
473 /* we converted 1 arg */
572 /* we converted 1 arg */
662 /* we converted 1 arg */
723 /* we converted 1 arg */
792 /* we converted 1 arg */
875 /* we converted 1 arg */
944 /* we converted
1307 int32_t count, converted, argConsumed, cpConsumed; local
[all...]
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DSubstringMatcher.java41 protected String converted(String arg) { return ignoringCase ? arg.toLowerCase() : arg; } method in class:SubstringMatcher
/external/libchrome/base/strings/
H A Dutf_string_conversions_unittest.cc63 // 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[
146 std::string converted; local
177 std::string converted; local
206 const std::string& converted = UTF16ToUTF8(multistring16); local
[all...]
/external/webrtc/webrtc/base/
H A Dmacconversion.cc47 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
150 bool converted = p_convertCFNumberToInt(cfn, &asInt); local
[all...]
/external/deqp/framework/delibs/deimage/
H A DdeImage.c100 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/libbrillo/brillo/
H A Dany_internal_impl.h57 // 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/llvm/lib/Target/SystemZ/
H A DSystemZTDC.cpp91 // 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:__anon13170::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/
H A Dvsscanf.c71 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;
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-port_test.cc95 explicit Castable(bool* converted) : converted_(converted) {} argument
106 bool converted = false; local
107 Castable castable(&converted);
109 EXPECT_TRUE(converted);
114 explicit ConstCastable(bool* converted) : converted_(converted) {} argument
125 bool converted = false; local
126 const ConstCastable const_castable(&converted);
128 EXPECT_TRUE(converted);
133 ConstAndNonConstCastable(bool* converted, bool* const_converted) argument
150 bool converted = false; local
167 To(bool* converted) argument
171 bool converted = false; local
[all...]
/external/googletest/googletest/test/
H A Dgtest-port_test.cc132 explicit Castable(bool* converted) : converted_(converted) {} argument
143 bool converted = false; local
144 Castable castable(&converted);
146 EXPECT_TRUE(converted);
151 explicit ConstCastable(bool* converted) : converted_(converted) {} argument
162 bool converted = false; local
163 const ConstCastable const_castable(&converted);
165 EXPECT_TRUE(converted);
170 ConstAndNonConstCastable(bool* converted, bool* const_converted) argument
187 bool converted = false; local
204 To(bool* converted) argument
208 bool converted = false; local
[all...]
/external/svox/pico/tts/
H A Dsvox_ssml_parser.cpp596 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_MEDIU
666 char* converted = NULL; local
736 char* converted = NULL; local
816 char* converted = NULL; local
[all...]
/external/v8/testing/gtest/test/
H A Dgtest-port_test.cc132 explicit Castable(bool* converted) : converted_(converted) {} argument
143 bool converted = false; local
144 Castable castable(&converted);
146 EXPECT_TRUE(converted);
151 explicit ConstCastable(bool* converted) : converted_(converted) {} argument
162 bool converted = false; local
163 const ConstCastable const_castable(&converted);
165 EXPECT_TRUE(converted);
170 ConstAndNonConstCastable(bool* converted, bool* const_converted) argument
187 bool converted = false; local
204 To(bool* converted) argument
208 bool converted = false; local
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-port_test.cc132 explicit Castable(bool* converted) : converted_(converted) {} argument
143 bool converted = false; local
144 Castable castable(&converted);
146 EXPECT_TRUE(converted);
151 explicit ConstCastable(bool* converted) : converted_(converted) {} argument
162 bool converted = false; local
163 const ConstCastable const_castable(&converted);
165 EXPECT_TRUE(converted);
170 ConstAndNonConstCastable(bool* converted, bool* const_converted) argument
187 bool converted = false; local
204 To(bool* converted) argument
208 bool converted = false; local
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-actions_test.cc389 // 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:__anon6901::FromType
533 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
537 bool converted = false; local
538 FromType x(&converted);
540 EXPECT_TRUE(converted) << "Return must convert its argument in its own "
542 converted = false;
544 EXPECT_FALSE(converted) << "Action must NOT convert its argument "
/external/googletest/googlemock/test/
H A Dgmock-actions_test.cc435 // Tests that an Action<From> object can be converted to a
581 // Tests that the type of the value passed into Return is converted into T
588 bool* converted() const { return converted_; } function in class:__anon6989::FromType
599 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
603 bool converted = false; local
604 FromType x(&converted);
606 EXPECT_TRUE(converted) << "Return must convert its argument in its own "
608 converted = false;
610 EXPECT_FALSE(converted) << "Action must NOT convert its argument "
/external/v8/testing/gmock/test/
H A Dgmock-actions_test.cc435 // Tests that an Action<From> object can be converted to a
581 // Tests that the type of the value passed into Return is converted into T
588 bool* converted() const { return converted_; } function in class:__anon21884::FromType
599 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
603 bool converted = false; local
604 FromType x(&converted);
606 EXPECT_TRUE(converted) << "Return must convert its argument in its own "
608 converted = false;
610 EXPECT_FALSE(converted) << "Action must NOT convert its argument "
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.event_1.2.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/core/src/com/google/inject/internal/
H A DErrors.java176 TypeConverterBinding typeConverterBinding, Object converted) {
180 stringValue, convert(source), type, typeConverterBinding, converted);
175 conversionTypeError(String stringValue, Object source, TypeLiteral<?> type, TypeConverterBinding typeConverterBinding, Object converted) argument
/external/libchrome/base/process/
H A Dprocess_metrics_linux.cc288 bool converted = StringToUint64(value_str, target_counter); local
289 DCHECK(converted);
/external/mesa3d/src/glsl/
H A Dast_function.cpp214 ir_rvalue *converted local
216 actual->replace_with(converted);
578 * that can be converted to the element type of the array according to
/external/protobuf/ruby/ext/google/protobuf_c/
H A Ddefs.c732 bool converted = false; local
741 converted = true; \
750 if (!converted) {
/external/valgrind/coregrind/
H A Dm_libcbase.c97 Bool neg = False, converted = False; local
109 converted = True; // Ok, we've actually converted a digit.
114 if (!converted) str = str0; // If nothing converted, endptr points to
123 Bool converted = False; local
135 converted = True; // Ok, we've actually converted a digit.
140 if (!converted) str = str0; // If nothing converted, endpt
149 Bool neg = False, converted = False; local
183 Bool converted = False; local
[all...]

Completed in 2867 milliseconds

12