Home
last modified time | relevance | path

Searched refs:IsIdent (Results 1 – 6 of 6) sorted by relevance

/third_party/flatbuffers/src/
Didl_parser.cpp578 bool Parser::IsIdent(const char *id) const { in IsIdent() function in flatbuffers::Parser
639 if (IsIdent("bool")) { in ParseType()
642 } else if (IsIdent("byte") || IsIdent("int8")) { in ParseType()
645 } else if (IsIdent("ubyte") || IsIdent("uint8")) { in ParseType()
648 } else if (IsIdent("short") || IsIdent("int16")) { in ParseType()
651 } else if (IsIdent("ushort") || IsIdent("uint16")) { in ParseType()
654 } else if (IsIdent("int") || IsIdent("int32")) { in ParseType()
657 } else if (IsIdent("uint") || IsIdent("uint32")) { in ParseType()
660 } else if (IsIdent("long") || IsIdent("int64")) { in ParseType()
663 } else if (IsIdent("ulong") || IsIdent("uint64")) { in ParseType()
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/lang/render/
Drender.go248 return x.IsClose() || x.IsIdent(tm) || x.IsLiteral(tm)
252 return x.IsClose() || x.IsIdent(tm) || x.IsStrLiteral(tm)
271 (remaining[x].ID.IsIdent(tm)) {
/third_party/flutter/skia/third_party/externals/wuffs/lang/token/
Dlist.go93 func (x ID) IsIdent(m *Map) bool { func
114 return x.IsClose() || x.IsKeyword() || x.IsIdent(m) || x.IsLiteral(m)
/third_party/flatbuffers/include/flatbuffers/
Didl.h895 bool IsIdent(const char *id) const;
/third_party/flutter/skia/third_party/externals/wuffs/lang/check/
Dtype.go364 } else if id1.IsIdent(q.tm) {
/third_party/flutter/skia/third_party/externals/wuffs/lang/parse/
Dparse.go292 if !x.ID.IsIdent(p.tm) {