ArmNN
 20.02
SwTraceTypeCharPolicy Struct Reference

#include <ProfilingUtils.hpp>

Static Public Member Functions

static bool IsValidChar (unsigned char c)
 

Detailed Description

Definition at line 63 of file ProfilingUtils.hpp.

Member Function Documentation

◆ IsValidChar()

static bool IsValidChar ( unsigned char  c)
inlinestatic

Definition at line 65 of file ProfilingUtils.hpp.

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

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