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

1 2 3

  /external/parameter-framework/utility/
convert.hpp 60 static inline bool convertTo(const std::string &str, T &result)
116 static inline bool convertTo(const std::string &str, T &result)
118 return details::convertTo<T>(str, result);
122 * Specialization for int16_t of convertTo template function.
136 inline bool convertTo<int16_t>(const std::string &str, int16_t &result)
140 if (!convertTo<int64_t>(str, res)) {
153 * Specialization for float of convertTo template function.
168 inline bool convertTo<float>(const std::string &str, float &result)
170 if (!details::convertTo(str, result)) {
183 * Specialization for double of convertTo template function
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/utils/
ArrayUtils.java 65 * {@code convertTo} as a one-to-one map (via the index).
68 * strings appearing in {@code convertFrom} but not {@code convertTo} are silently
73 * @param convertTo Conversion list of ints
74 * @return An array of ints where the values correspond to the ones in {@code convertTo}
78 List<String> list, String[] convertFrom, int[] convertTo) {
83 List<Integer> convertedList = convertStringListToIntList(list, convertFrom, convertTo);
95 * {@code convertTo} as a one-to-one map (via the index).
98 * strings appearing in {@code convertFrom} but not {@code convertTo} are silently
103 * @param convertTo Conversion list of ints
104 * @return A list of ints where the values correspond to the ones in {@code convertTo}
    [all...]
  /frameworks/av/services/audiopolicy/utilities/convert/
convert.h 44 * Vector to vector conversion calls convertTo on each element.
54 static inline bool convertTo(const srcType &input, dstType &result);
183 /** Convert a vector by applying convertTo on each element.
202 if (not convertTo(*it, dstElem)) {
214 static inline bool convertTo(const srcType &input, dstType &result)
220 * Specialization for int16_t of convertTo template function.
234 inline bool convertTo<std::string, int16_t>(const std::string &str, int16_t &result)
238 if (!convertTo<std::string, int64_t>(str, res)) {
251 * Specialization for float of convertTo template function.
266 inline bool convertTo<std::string, float>(const std::string &str, float &result
    [all...]
  /frameworks/base/tools/aapt2/
ResChunkPullParser.h 78 inline static const T* convertTo(const android::ResChunk_header* chunk) {
BinaryResourceParser.cpp 198 const SymbolTable_header* symbolTableHeader = convertTo<SymbolTable_header>(chunk);
248 const ResTable_header* tableHeader = convertTo<ResTable_header>(chunk);
335 const ResTable_package* packageHeader = convertTo<ResTable_package>(chunk);
459 const Public_header* header = convertTo<Public_header>(chunk);
522 const ResTable_typeSpec* typeSpec = convertTo<ResTable_typeSpec>(chunk);
556 const ResTable_type* type = convertTo<ResTable_type>(chunk);
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 202 ->template convertTo<T>();
231 return DynTypedMatcher(Matcher.convertTo<T>());
  /external/parameter-framework/parameter/
FixedPointParameterType.cpp 286 if (!convertTo(strValue, uiData) || !isEncodable(uiData, false)) {
304 if (!convertTo(strValue, iData) || !isEncodable((uint32_t)iData, true)) {
319 if (!convertTo(strValue, dData) || !checkValueAgainstRange(dData)) {
  /external/skia/src/animator/
SkScript.h 76 bool convertTo(SkDisplayTypes , SkScriptValue* );
91 static bool ConvertTo(SkScriptEngine* , SkDisplayTypes toType, SkScriptValue* value);
198 convertTo(SkType_String, &scriptValue);
SkScript2.h 41 bool convertTo(SkOperand2::OpType , SkScriptValue2* );
53 static bool ConvertTo(SkScriptEngine2* , SkOperand2::OpType toType, SkScriptValue2* value);
231 convertTo(SkOperand2::kString, &scriptValue);
SkScript.cpp 337 if (convertTo((SkDisplayTypes) paramTypes[index], &params[index]) == false)
343 bool SkScriptEngine::convertTo(SkDisplayTypes toType, SkScriptValue* value ) {
364 return convertTo(toType, value);
366 return ConvertTo(this, toType, value);
559 if (convertTo(tokenInfo->getType(), &tokenValue) == false)
595 if (convertTo(type, &tokenValue) == false)
846 if (convertTo(ToDisplayType(fReturnType), value) == false)
888 if (convertTo(SkType_Int, &scriptValue) == false)
    [all...]
SkMemberInfo.cpp 282 success = engine.convertTo(SkType_String, &scriptValue);
286 success = engine.convertTo(SkType_Float, &scriptValue);
289 success = engine.convertTo(SkType_Int, &scriptValue);
292 success = engine.convertTo(arrayType(), &scriptValue);
SkScriptTokenizer.cpp 156 if (value->fIsConstant == SkScriptValue2::kConstant && convertTo(toType, value))
342 convertTo(paramTypes[index], &(*params)[index]);
346 bool SkScriptEngine2::convertTo(SkOperand2::OpType toType, SkScriptValue2* value ) {
353 return convertTo(toType, value);
355 return ConvertTo(this, toType, value);
503 convertTo(type, &tokenValue);
763 convertTo(fReturnType, value);
781 success = convertTo(SkOperand2::kS32, &scriptValue);
    [all...]
SkAnimatorScript.cpp 212 engine->convertTo(SkType_Int, valuePtr);
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 275 SDValue convertTo(SDLoc DL, EVT VT, SDValue N) const;
856 SDValue SystemZDAGToDAGISel::convertTo(SDLoc DL, EVT VT, SDValue N) const {
913 convertTo(SDLoc(N), OpcodeVT, RISBG.Input),
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
SetterStore.java 303 HashMap<String, MethodDescription> convertTo = mStore.conversionMethods.get(fromType);
304 if (convertTo == null) {
305 convertTo = new HashMap<String, MethodDescription>();
306 mStore.conversionMethods.put(fromType, convertTo);
308 convertTo.put(toType, methodDescription);
685 ModelClass convertTo = mClassAnalyzer.findClass(toClassName,
687 if (canUseForConversion(convertTo, to)) {
    [all...]
  /frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
ParameterManagerWrapper.cpp 63 using utilities::convertTo;
168 if (!convertTo<string, uint32_t>(first, index)) {
  /external/parameter-framework/test/test-platform/
TestPlatform.cpp 229 if(!convertTo(strAbort, bFail)) {
  /external/jetty/src/java/org/eclipse/jetty/util/ajax/
JSON.java 84 * loaded and the method {@link #convertTo(Class,Map)} is used to find a
600 protected Object convertTo(Class type, Map map)
935 return convertTo(c,map);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 357 template <typename T> Matcher<T> convertTo() const {
362 /// \brief Same as \c convertTo(), but does not check that the underlying
517 inline Matcher<QualType> DynTypedMatcher::convertTo<QualType>() const {
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv-android.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
  /external/jetty/lib/
jetty-util-6.1.26.jar 
  /prebuilts/devtools/tools/lib/
lint-api.jar 

Completed in 1736 milliseconds

1 2 3