reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
521 if (node) { 522 if (node->GetType() == eStructuredDataTypeString) { 523 strm.Printf("%s", node->GetAsString()->GetValue().str().c_str()); 526 if (node->GetType() == eStructuredDataTypeInteger) { 527 strm.Printf("0x%" PRIx64, node->GetAsInteger()->GetValue()); 530 if (node->GetType() == eStructuredDataTypeFloat) { 531 strm.Printf("0x%f", node->GetAsFloat()->GetValue()); 534 if (node->GetType() == eStructuredDataTypeBoolean) { 535 if (node->GetAsBoolean()->GetValue()) 541 if (node->GetType() == eStructuredDataTypeNull) {