TSShape names are case insensitive
| 116 | |
| 117 | // TSShape names are case insensitive |
| 118 | static inline bool namesEqual(const String& nameA, const String& nameB) |
| 119 | { |
| 120 | return nameA.equal(nameB, String::NoCase); |
| 121 | } |
| 122 | |
| 123 | static void SplitSequencePathAndName(String& srcPath, String& srcName) |
| 124 | { |
no test coverage detected