Home
last modified time | relevance | path

Searched refs:IsIdentifier (Results 1 – 10 of 10) sorted by relevance

/external/deqp-deps/amber/src/amberscript/
Dparser.cc217 if (token->IsIdentifier() && token->AsString() == "END") in ParseBufferData()
292 if (!token->IsIdentifier()) in Parse()
456 if (!token->IsIdentifier()) in ParseShaderBlock()
467 if (!token->IsIdentifier()) in ParseShaderBlock()
473 if (!token->IsIdentifier()) in ParseShaderBlock()
502 if (token->IsIdentifier() && token->AsString() == "TARGET_ENV") { in ParseShaderBlock()
505 if (!token->IsIdentifier() && !token->IsString()) in ParseShaderBlock()
511 if (token->IsIdentifier() && token->AsString() == "VIRTUAL_FILE") { in ParseShaderBlock()
515 if (!token->IsIdentifier() && !token->IsString()) in ParseShaderBlock()
550 if (!token->IsIdentifier() || token->AsString() != "END") in ParseShaderBlock()
[all …]
/external/deqp-deps/amber/src/
Dtokenizer_test.cc37 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
136 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
148 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
165 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
181 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
195 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
224 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
238 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
251 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
297 EXPECT_TRUE(next->IsIdentifier()); in TEST_F()
[all …]
Ddescriptor_set_and_binding_parser.cc68 if (!token->IsIdentifier()) in Parse()
Dtokenizer.h45 bool IsIdentifier() const { return type_ == TokenType::kIdentifier; } in IsIdentifier() function
Dtokenizer.cc34 if (IsIdentifier() || IsEOL() || IsEOS()) in ConvertToDouble()
/external/deqp-deps/amber/src/vkscript/
Dcommand_parser.cc92 if (!token->IsIdentifier()) { in Parse()
102 if (!token->IsIdentifier()) in Parse()
128 if (!token->IsIdentifier() || token->AsString() != "probe") in Parse()
140 if (!token->IsIdentifier() || (token->AsString() != "control" && in Parse()
151 if (!token->IsIdentifier() || token->AsString() != "entrypoint") in Parse()
265 while (token->IsIdentifier()) { in ProcessDrawRect()
316 while (token->IsIdentifier()) { in ProcessDrawArrays()
379 if (token->IsIdentifier() && token->AsString() == "entrypoint") in ProcessCompute()
413 if (token->IsIdentifier()) { in ProcessClear()
547 if (token->IsIdentifier() && token->AsString() != "subdata") { in ProcessSSBO()
[all …]
Dparser.cc159 if (!token->IsIdentifier()) { in ProcessRequireBlock()
170 if (!token->IsIdentifier()) in ProcessRequireBlock()
190 if (!token->IsIdentifier()) in ProcessRequireBlock()
351 if (!token->IsIdentifier()) { in ProcessVertexDataBlock()
/external/protobuf/src/google/protobuf/io/
Dtokenizer.h255 static bool IsIdentifier(const std::string& text);
Dtokenizer.cc1121 bool Tokenizer::IsIdentifier(const std::string& text) { in IsIdentifier() function in google::protobuf::io::Tokenizer
/external/protobuf/src/google/protobuf/
Ddescriptor.cc5610 if (!io::Tokenizer::IsIdentifier(proto.default_value())) { in CrossLinkField()