Home
last modified time | relevance | path

Searched refs:GetInt32 (Results 1 – 20 of 20) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognitionException.cs170 _index = info.GetInt32("Index"); in RecognitionException()
171 _c = info.GetInt32("C"); in RecognitionException()
172 _line = info.GetInt32("Line"); in RecognitionException()
173 _charPositionInLine = info.GetInt32("CharPositionInLine"); in RecognitionException()
DMismatchedRangeException.cs78 this._a = info.GetInt32("A"); in MismatchedRangeException()
79 this._b = info.GetInt32("B"); in MismatchedRangeException()
DNoViableAltException.cs89 this._decisionNumber = info.GetInt32("DecisionNumber"); in NoViableAltException()
90 this._stateNumber = info.GetInt32("StateNumber"); in NoViableAltException()
DEarlyExitException.cs75 this._decisionNumber = info.GetInt32("DecisionNumber"); in EarlyExitException()
DMismatchedTreeNodeException.cs75 this._expecting = info.GetInt32("Expecting"); in MismatchedTreeNodeException()
DMismatchedTokenException.cs94 this._expecting = info.GetInt32("Expecting"); in MismatchedTokenException()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognitionException.cs192 _index = info.GetInt32("Index"); in RecognitionException()
193 _c = info.GetInt32("C"); in RecognitionException()
194 _line = info.GetInt32("Line"); in RecognitionException()
195 _charPositionInLine = info.GetInt32("CharPositionInLine"); in RecognitionException()
DMismatchedRangeException.cs87 this._a = info.GetInt32("A"); in MismatchedRangeException()
88 this._b = info.GetInt32("B"); in MismatchedRangeException()
DNoViableAltException.cs99 this._decisionNumber = info.GetInt32("DecisionNumber"); in NoViableAltException()
100 this._stateNumber = info.GetInt32("StateNumber"); in NoViableAltException()
DEarlyExitException.cs84 this._decisionNumber = info.GetInt32("DecisionNumber"); in EarlyExitException()
DMismatchedTreeNodeException.cs84 this._expecting = info.GetInt32("Expecting"); in MismatchedTreeNodeException()
DMismatchedTokenException.cs101 this._expecting = info.GetInt32("Expecting"); in MismatchedTokenException()
/external/protobuf/src/google/protobuf/
Dgenerated_message_reflection_unittest.cc565 EXPECT_EQ(0, reflection->GetInt32( in TEST()
586 EXPECT_EQ(5, reflection->GetInt32( in TEST()
602 EXPECT_EQ(123, reflection->GetInt32( in TEST()
753 reflection->GetInt32( in TEST()
763 reflection->GetInt32( in TEST()
771 reflection->GetInt32( in TEST()
Dtest_util.cc2576 EXPECT_EQ(102, reflection->GetInt32( in ExpectOneofSetViaReflection()
2679 EXPECT_EQ(101 , reflection->GetInt32 (message, F("optional_int32" ))); in ExpectAllFieldsSetViaReflection1()
2683 EXPECT_EQ(105 , reflection->GetInt32 (message, F("optional_sint32" ))); in ExpectAllFieldsSetViaReflection1()
2687 EXPECT_EQ(109 , reflection->GetInt32 (message, F("optional_sfixed32"))); in ExpectAllFieldsSetViaReflection1()
2699 EXPECT_EQ(117, sub_message->GetReflection()->GetInt32(*sub_message, group_a_)); in ExpectAllFieldsSetViaReflection1()
2701 EXPECT_EQ(118, sub_message->GetReflection()->GetInt32(*sub_message, nested_b_)); in ExpectAllFieldsSetViaReflection1()
2703 EXPECT_EQ(119, sub_message->GetReflection()->GetInt32(*sub_message, foreign_c_)); in ExpectAllFieldsSetViaReflection1()
2705 EXPECT_EQ(120, sub_message->GetReflection()->GetInt32(*sub_message, import_d_)); in ExpectAllFieldsSetViaReflection1()
2707 EXPECT_EQ(126, sub_message->GetReflection()->GetInt32(*sub_message, import_e_)); in ExpectAllFieldsSetViaReflection1()
2709 EXPECT_EQ(127, sub_message->GetReflection()->GetInt32(*sub_message, nested_b_)); in ExpectAllFieldsSetViaReflection1()
[all …]
Ddynamic_message_unittest.cc164 EXPECT_EQ(0, reflection->GetInt32( in TEST_F()
195 EXPECT_EQ(5, reflection->GetInt32( in TEST_F()
Dgenerated_message_reflection.h199 int32 GetInt32 (const Message& message,
Dmessage.h449 virtual int32 GetInt32 (const Message& message,
Dextension_set.h225 int32 GetInt32 (int number, int32 default_value) const;
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dttgsubtable.h391 TT_int32_t GetInt32(FT_Bytes& p) const in GetInt32() function
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc1635 int32 value = reflection->GetInt32(*message, field_descriptor); in CheckAndGetInteger()