ArmNN
 20.05
SwTraceTypeCharPolicy Struct Reference

#include <ProfilingUtils.hpp>

Static Public Member Functions

static bool IsValidChar (unsigned char c)
 

Detailed Description

Definition at line 67 of file ProfilingUtils.hpp.

Member Function Documentation

◆ IsValidChar()

static bool IsValidChar ( unsigned char  c)
inlinestatic

Definition at line 69 of file ProfilingUtils.hpp.

70  {
71  // Check that the given character is among the allowed ones
72  switch (c)
73  {
74  case '@':
75  case 't':
76  case 'i':
77  case 'I':
78  case 'l':
79  case 'L':
80  case 'F':
81  case 'p':
82  case 's':
83  return true; // Valid char
84  default:
85  return false; // Invalid char
86  }
87  }

The documentation for this struct was generated from the following file: