/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_syntax_parser.h | 27 enum class ParseType { kStrict, kLoose }; enum 47 ParseType parse_type); 93 ParseType parse_type);
|
D | cpdf_syntax_parser.cpp | 359 auto result = GetObjectBodyInternal(pObjList, ParseType::kLoose); in GetObjectBody() 367 ParseType parse_type) { in GetObjectBodyInternal() 411 GetObjectBodyInternal(pObjList, ParseType::kLoose)) { in GetObjectBodyInternal() 414 return (parse_type == ParseType::kLoose || m_WordBuffer[0] == ']') in GetObjectBodyInternal() 444 if (key.IsEmpty() && parse_type == ParseType::kLoose) in GetObjectBodyInternal() 448 GetObjectBodyInternal(pObjList, ParseType::kLoose); in GetObjectBodyInternal() 450 if (parse_type == ParseType::kLoose) in GetObjectBodyInternal() 479 ParseType parse_type) { in GetIndirectObject()
|
D | cpdf_linearized_header.cpp | 61 parser->GetIndirectObject(nullptr, CPDF_SyntaxParser::ParseType::kLoose)); in Parse()
|
D | cpdf_cross_ref_avail.cpp | 173 parser_->GetIndirectObject(nullptr, CPDF_SyntaxParser::ParseType::kLoose); in CheckCrossRefStream()
|
D | cpdf_parser.h | 195 CPDF_SyntaxParser::ParseType parse_type,
|
D | cpdf_parser.cpp | 1263 pObjList, pos, objnum, CPDF_SyntaxParser::ParseType::kLoose, nullptr); in ParseIndirectObjectAt() 1270 CPDF_SyntaxParser::ParseType parse_type, in ParseIndirectObjectAtInternal() 1299 pObjList, pos, objnum, CPDF_SyntaxParser::ParseType::kStrict, pResultPos); in ParseIndirectObjectAtByStrict()
|
/external/annotation-tools/annotation-file-utilities/tests/ |
D | ParseType.goal | 3 public class ParseType<E> { 16 Object o11 = ((ParseType<String>.Inner<Integer> @A []) (o));
|
D | ParseType.jaif | 5 class ParseType: 19 … insert-typecast Block.statement 11, Variable.initializer: @A ParseType<String>.Inner<Integer>[]
|
D | ParseType.java | 3 public class ParseType<E> { class
|
/external/annotation-tools/annotation-file-utilities/tests/converted/ |
D | ParseType.jaif | 5 class ParseType: 20 … insert-typecast Block.statement 11, Variable.initializer: @A ParseType<String>.Inner<Integer>[]
|
/external/llvm/lib/AsmParser/ |
D | LLParser.h | 294 bool ParseType(Type *&Result, const Twine &Msg, bool AllowVoid = false); 295 bool ParseType(Type *&Result, bool AllowVoid = false) { 296 return ParseType(Result, "expected type", AllowVoid); 298 bool ParseType(Type *&Result, const Twine &Msg, LocTy &Loc, 301 return ParseType(Result, Msg, AllowVoid); 303 bool ParseType(Type *&Result, LocTy &Loc, bool AllowVoid = false) { 305 return ParseType(Result, AllowVoid);
|
D | LLParser.cpp | 67 if (ParseType(Ty) || parseConstantValue(Ty, C)) in parseStandaloneConstantValue() 82 if (ParseType(Ty)) in parseTypeAtBeginning() 723 if (ParseType(Ty) || in parseIndirectSymbol() 854 ParseType(Ty, TyLoc)) in ParseGlobal() 1964 bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) { in ParseType() function in LLParser 2107 if (ParseType(ArgTy, ArgLoc)) in ParseParameterList() 2168 if (ParseType(Ty) || ParseValue(Ty, Input, PFS)) in ParseOptionalOperandBundles() 2211 if (ParseType(ArgTy) || in ParseArgumentList() 2239 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true; in ParseArgumentList() 2338 return ParseType(ResultTy); in ParseStructDefinition() [all …]
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | json_stream_parser.h | 103 enum ParseType { enum 208 std::stack<ParseType> stack_;
|
D | json_stream_parser.cc | 209 ParseType type = stack_.top(); in RunParser()
|
/external/swiftshader/third_party/LLVM/lib/AsmParser/ |
D | LLParser.cpp | 529 ParseType(Ty, TyLoc) || in ParseStandaloneMetadata() 663 ParseType(Ty, TyLoc)) in ParseGlobal() 1231 bool LLParser::ParseType(Type *&Result, bool AllowVoid) { in ParseType() function in LLParser 1364 if (ParseType(ArgTy, ArgLoc)) in ParseParameterList() 1405 if (ParseType(ArgTy) || in ParseArgumentList() 1430 if (ParseType(ArgTy) || ParseOptionalAttrs(Attrs, 0)) return true; in ParseArgumentList() 1526 return ParseType(ResultTy); in ParseStructDefinition() 1565 if (ParseType(Ty)) return true; in ParseStructBody() 1573 if (ParseType(Ty)) return true; in ParseStructBody() 1603 if (ParseType(EltTy)) return true; in ParseArrayVectorType() [all …]
|
D | LLParser.h | 219 bool ParseType(Type *&Result, bool AllowVoid = false); 220 bool ParseType(Type *&Result, LocTy &Loc, bool AllowVoid = false) { 222 return ParseType(Result, AllowVoid);
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_suppressions_test.cc | 114 TEST_F(SuppressionContextTest, ParseType) { in TEST_F() argument
|
/external/swiftshader/third_party/LLVM/lib/TableGen/ |
D | TGParser.h | 126 RecTy *ParseType();
|
D | TGParser.cpp | 581 RecTy *TGParser::ParseType() { in ParseType() function in TGParser 615 RecTy *SubType = ParseType(); in ParseType() 1010 Type = ParseType(); in ParseOperatorType() 1181 GivenEltTy = ParseType(); in ParseSimpleValue() 1471 RecTy *Type = ParseType(); in ParseDeclaration()
|
/external/llvm/lib/TableGen/ |
D | TGParser.h | 184 RecTy *ParseType();
|
D | TGParser.cpp | 659 RecTy *TGParser::ParseType() { in ParseType() function in TGParser 693 RecTy *SubType = ParseType(); in ParseType() 1097 Type = ParseType(); in ParseOperatorType() 1335 GivenEltTy = ParseType(); in ParseSimpleValue() 1694 RecTy *Type = ParseType(); in ParseDeclaration()
|
/external/protobuf/src/google/protobuf/compiler/ |
D | parser.cc | 855 DO(ParseType(&map_field.key_type, &map_field.key_type_name)); in ParseMessageFieldNoLabel() 857 DO(ParseType(&map_field.value_type, &map_field.value_type_name)); in ParseMessageFieldNoLabel() 877 DO(ParseType(&type, &type_name)); in ParseMessageFieldNoLabel() 1958 bool Parser::ParseType(FieldDescriptorProto::Type* type, in ParseType() function in google::protobuf::compiler::Parser
|
D | parser.h | 424 bool ParseType(FieldDescriptorProto::Type* type,
|
/external/flatbuffers/src/ |
D | idl_parser.cpp | 483 CheckedError Parser::ParseType(Type &type) { in ParseType() function in flatbuffers::Parser 527 ECHECK(ParseType(subtype)); in ParseType() 577 ECHECK(ParseType(type)); in ParseField() 1422 ECHECK(ParseType(enum_def.underlying_type)); in ParseEnum() 1460 ECHECK(ParseType(ev.union_type)); in ParseEnum()
|
/external/flatbuffers/include/flatbuffers/ |
D | idl.h | 598 FLATBUFFERS_CHECKED_ERROR ParseType(Type &type);
|