Home
last modified time | relevance | path

Searched refs:configRoot (Results 1 – 1 of 1) sorted by relevance

/frameworks/native/libs/input/
DTfLiteMotionPredictor.cpp93 int64_t parseXMLInt64(const tinyxml2::XMLElement& configRoot, const char* elementName) { in parseXMLInt64() argument
94 const tinyxml2::XMLElement* element = configRoot.FirstChildElement(elementName); in parseXMLInt64()
103 float parseXMLFloat(const tinyxml2::XMLElement& configRoot, const char* elementName) { in parseXMLFloat() argument
104 const tinyxml2::XMLElement* element = configRoot.FirstChildElement(elementName); in parseXMLFloat()
279 const tinyxml2::XMLElement* configRoot = configDocument.FirstChildElement("motion-predictor"); in create() local
280 LOG_ALWAYS_FATAL_IF(!configRoot); in create()
282 .predictionInterval = parseXMLInt64(*configRoot, "prediction-interval"), in create()
283 .distanceNoiseFloor = parseXMLFloat(*configRoot, "distance-noise-floor"), in create()
284 .lowJerk = parseXMLFloat(*configRoot, "low-jerk"), in create()
285 .highJerk = parseXMLFloat(*configRoot, "high-jerk"), in create()