MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / parseAbsoluteAddress

Method parseAbsoluteAddress

src/App/Range.cpp:316–326  ·  view source on GitHub ↗

! * \brief App::CellAddress::parseAbsoluteAddress * \param address * If the passed string is a valid and absolute cell address it will be assigned to this instance. * \return True if it's an absolute cell address and false otherwise */

Source from the content-addressed store, hash-verified

314 * \return True if it's an absolute cell address and false otherwise
315 */
316bool App::CellAddress::parseAbsoluteAddress(const char* address)
317{
318 if (maybeAbsolute(address)) {
319 CellAddress addr = stringToAddress(address, true);
320 if (addr.isValid()) {
321 *this = addr;
322 return true;
323 }
324 }
325 return false;
326}

Callers 2

executeMethod · 0.80
verifyMethod · 0.80

Calls 2

maybeAbsoluteFunction · 0.85
isValidMethod · 0.45

Tested by 1

executeMethod · 0.64