Home
last modified time | relevance | path

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

12345678910>>...62

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/ManualTests/SQL/MARSTest/
H A DMARSTest.cs162 Assert.True(reader1.GetInt32(0) == reader2.GetInt32(0), in MARSSyncBusyReaderTest()
165 "reader2.GetInt32(0): " + reader2.GetInt32(0)); in MARSSyncBusyReaderTest()
289 Assert.True(reader1.GetInt32(0) == reader2.GetInt32(0) && in MARSSyncExecuteReaderTest3()
290 reader2.GetInt32(0) == reader3.GetInt32(0) && in MARSSyncExecuteReaderTest3()
291 reader3.GetInt32(0) == reader4.GetInt32(0) && in MARSSyncExecuteReaderTest3()
292 reader4.GetInt32(0) == reader5.GetInt32(0), in MARSSyncExecuteReaderTest3()
294 "reader1.GetInt32(0): " + reader1.GetInt32(0) + "\n" + in MARSSyncExecuteReaderTest3()
298 "reader5.GetInt32(0): " + reader5.GetInt32(0)); in MARSSyncExecuteReaderTest3()
319 Assert.True(reader1.GetInt32(0) == 10248 && in MARSSyncExecuteReaderTest4()
320 reader2.GetInt32(0) == 10249 && in MARSSyncExecuteReaderTest4()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.Serialization.Formatters/src/System/Runtime/Serialization/Formatters/Binary/
H A DSerializationHeaderRecord.cs43 private static int GetInt32(byte[] buffer, int index) => in GetInt32() method in System.Runtime.Serialization.Formatters.Binary.SerializationHeaderRecord
56 _majorVersion = GetInt32(headerBytes, 9); in Read()
64 _topId = GetInt32(headerBytes, 1); in Read()
65 _headerId = GetInt32(headerBytes, 5); in Read()
66 _minorVersion = GetInt32(headerBytes, 13); in Read()
/dports/games/openrct2/OpenRCT2-0.3.5.1/test/tests/
H A DIniReaderTest.cpp41 ASSERT_EQ(ir->GetInt32("universal_answer", 42), 42); in TEST_F()
56 ASSERT_EQ(ir->GetInt32("bool", 42), 42); in TEST_F()
58 ASSERT_EQ(ir->GetInt32("one", 42), 42); in TEST_F()
60 ASSERT_EQ(ir->GetInt32("boolval", 42), 42); in TEST_F()
65 ASSERT_EQ(ir->GetInt32("one", 42), 42); in TEST_F()
72 ASSERT_EQ(ir->GetInt32("one", 42), 1); in TEST_F()
94 ASSERT_EQ(ir->GetInt32("fortytwo", 100), 41); in TEST_F()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Globalization.Calendars/tests/TaiwanCalendar/
H A DTaiwanCalendarUtilities.cs29 return minYear + Generator.GetInt32(-55) % (maxYear - 1911 + 1 - minYear); in RandomYear()
32 public static int RandomMonth() => Generator.GetInt32(-55) % 12 + 1; in RandomMonth()
38 return Generator.GetInt32(-55) % s_daysPerMonthLeapYear[month] + 1; in RandomDay()
42 return Generator.GetInt32(-55) % s_daysPerMonthCommonYear[month] + 1; in RandomDay()
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/config/
H A DConfig.cpp176 model->window_height = reader->GetInt32("window_height", -1); in ReadGeneral()
178 model->window_width = reader->GetInt32("window_width", -1); in ReadGeneral()
358 model->title_music = reader->GetInt32("title_music", 2); in ReadSound()
360 model->sound_volume = reader->GetInt32("sound_volume", 100); in ReadSound()
410 model->maxplayers = reader->GetInt32("maxplayers", 16); in ReadNetwork()
509 model->x_offset = reader->GetInt32("x_offset", false); in ReadFont()
510 model->y_offset = reader->GetInt32("y_offset", true); in ReadFont()
511 model->size_tiny = reader->GetInt32("size_tiny", true); in ReadFont()
512 model->size_small = reader->GetInt32("size_small", false); in ReadFont()
514 model->size_big = reader->GetInt32("size_big", false); in ReadFont()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Globalization.Calendars/tests/GregorianCalendar/
H A DGregorianCalendarTests.Utilities.cs28 return minYear + Generator.GetInt32(-55) % (maxYear + 1 - minYear); in RandomYear()
57 public static int RandomMonth() => Generator.GetInt32(-55) % 12 + 1; in RandomMonth()
69 …public static int RandomLeapYearDay(int month) => Generator.GetInt32(-55) % s_daysInMonthInLeapYea… in RandomLeapYearDay()
71 …public static int RandomCommonYearDay(int month) => Generator.GetInt32(-55) % s_daysInMonthInCommo… in RandomCommonYearDay()
H A DGregorianCalendarToDateTime.cs22 int randomHour = s_randomDataGenerator.GetInt32(-55) % 24; // 0-23 in ToDateTime_TestData()
23 int randomMinute = s_randomDataGenerator.GetInt32(-55) % 60; // 0-59 in ToDateTime_TestData()
24 int randomSecond = s_randomDataGenerator.GetInt32(-55) % 60; // 0-59 in ToDateTime_TestData()
25 int randomMillisecond = s_randomDataGenerator.GetInt32(-55) % 1000; // 0-999 in ToDateTime_TestData()
H A DGregorianCalendarAddMonths.cs19 …yield return new object[] { DateTime.MinValue, s_randomDataGenerator.GetInt32(-55) % MaxMonths + 1… in AddMonths_TestData()
20 …yield return new object[] { DateTime.MaxValue, -1 * s_randomDataGenerator.GetInt32(-55) % MaxMonth… in AddMonths_TestData()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Net.Mail/
H A DSmtpExceptionTest.cs214 Assert.AreEqual (0, si.GetInt32 ("RemoteStackIndex"), "#A9"); in GetObjectData()
215 Assert.AreEqual (-2146233088, si.GetInt32 ("HResult"), "#A10"); in GetObjectData()
219 si.GetInt32 ("Status"), "#A13"); in GetObjectData()
237 Assert.AreEqual (0, si.GetInt32 ("RemoteStackIndex"), "#B9"); in GetObjectData()
238 Assert.AreEqual (-2146233088, si.GetInt32 ("HResult"), "#B10"); in GetObjectData()
242 si.GetInt32 ("Status"), "#B13"); in GetObjectData()
258 Assert.AreEqual (0, si.GetInt32 ("RemoteStackIndex"), "#C9"); in GetObjectData()
259 Assert.AreEqual (-2146233088, si.GetInt32 ("HResult"), "#C10"); in GetObjectData()
263 si.GetInt32 ("Status"), "#C13"); in GetObjectData()
284 Assert.AreEqual (0, si.GetInt32 ("RemoteStackIndex"), "#D9"); in GetObjectData()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/
H A DInvalidProjectFileException.cs101 this.columnNumber = info.GetInt32 ("columnNumber"); in InvalidProjectFileException()
102 this.endColumnNumber = info.GetInt32 ("endColumnNumber"); in InvalidProjectFileException()
106 this.lineNumber = info.GetInt32 ("lineNumber"); in InvalidProjectFileException()
107 this.endLineNumber = info.GetInt32 ("endLineNumber"); in InvalidProjectFileException()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/src/google/protobuf/
H A Dtest_util.h386 EXPECT_EQ(102, reflection->GetInt32(message, in ExpectOneofSetViaReflection()
492 EXPECT_EQ(101, reflection->GetInt32(message, F("optional_int32"))); in ExpectAllFieldsSetViaReflection1()
496 EXPECT_EQ(105, reflection->GetInt32(message, F("optional_sint32"))); in ExpectAllFieldsSetViaReflection1()
634 EXPECT_EQ(217, sub_message->GetReflection()->GetInt32(*sub_message, in ExpectAllFieldsSetViaReflection2()
703 EXPECT_EQ(317, sub_message->GetReflection()->GetInt32(*sub_message, in ExpectAllFieldsSetViaReflection2()
770 EXPECT_EQ(401, reflection->GetInt32(message, F("default_int32"))); in ExpectAllFieldsSetViaReflection3()
774 EXPECT_EQ(405, reflection->GetInt32(message, F("default_sint32"))); in ExpectAllFieldsSetViaReflection3()
908 EXPECT_EQ(0, reflection->GetInt32(message, F("optional_int32"))); in ExpectClearViaReflection()
912 EXPECT_EQ(0, reflection->GetInt32(message, F("optional_sint32"))); in ExpectClearViaReflection()
1022 EXPECT_EQ(41, reflection->GetInt32(message, F("default_int32"))); in ExpectClearViaReflection()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/protobuf/src/google/protobuf/
H A Dtest_util.h386 EXPECT_EQ(102, reflection->GetInt32(message, in ExpectOneofSetViaReflection()
492 EXPECT_EQ(101, reflection->GetInt32(message, F("optional_int32"))); in ExpectAllFieldsSetViaReflection1()
496 EXPECT_EQ(105, reflection->GetInt32(message, F("optional_sint32"))); in ExpectAllFieldsSetViaReflection1()
634 EXPECT_EQ(217, sub_message->GetReflection()->GetInt32(*sub_message, in ExpectAllFieldsSetViaReflection2()
703 EXPECT_EQ(317, sub_message->GetReflection()->GetInt32(*sub_message, in ExpectAllFieldsSetViaReflection2()
770 EXPECT_EQ(401, reflection->GetInt32(message, F("default_int32"))); in ExpectAllFieldsSetViaReflection3()
774 EXPECT_EQ(405, reflection->GetInt32(message, F("default_sint32"))); in ExpectAllFieldsSetViaReflection3()
908 EXPECT_EQ(0, reflection->GetInt32(message, F("optional_int32"))); in ExpectClearViaReflection()
912 EXPECT_EQ(0, reflection->GetInt32(message, F("optional_sint32"))); in ExpectClearViaReflection()
1022 EXPECT_EQ(41, reflection->GetInt32(message, F("default_int32"))); in ExpectClearViaReflection()
[all …]
/dports/devel/protobuf/protobuf-3.17.3/src/google/protobuf/
H A Dtest_util.h386 EXPECT_EQ(102, reflection->GetInt32(message, in ExpectOneofSetViaReflection()
492 EXPECT_EQ(101, reflection->GetInt32(message, F("optional_int32"))); in ExpectAllFieldsSetViaReflection1()
496 EXPECT_EQ(105, reflection->GetInt32(message, F("optional_sint32"))); in ExpectAllFieldsSetViaReflection1()
634 EXPECT_EQ(217, sub_message->GetReflection()->GetInt32(*sub_message, in ExpectAllFieldsSetViaReflection2()
703 EXPECT_EQ(317, sub_message->GetReflection()->GetInt32(*sub_message, in ExpectAllFieldsSetViaReflection2()
770 EXPECT_EQ(401, reflection->GetInt32(message, F("default_int32"))); in ExpectAllFieldsSetViaReflection3()
774 EXPECT_EQ(405, reflection->GetInt32(message, F("default_sint32"))); in ExpectAllFieldsSetViaReflection3()
908 EXPECT_EQ(0, reflection->GetInt32(message, F("optional_int32"))); in ExpectClearViaReflection()
912 EXPECT_EQ(0, reflection->GetInt32(message, F("optional_sint32"))); in ExpectClearViaReflection()
1022 EXPECT_EQ(41, reflection->GetInt32(message, F("default_int32"))); in ExpectClearViaReflection()
[all …]
/dports/devel/py-grpcio-tools/grpcio-tools-1.43.0/third_party/protobuf/src/google/protobuf/
H A Dtest_util.h386 EXPECT_EQ(102, reflection->GetInt32(message, in ExpectOneofSetViaReflection()
492 EXPECT_EQ(101, reflection->GetInt32(message, F("optional_int32"))); in ExpectAllFieldsSetViaReflection1()
496 EXPECT_EQ(105, reflection->GetInt32(message, F("optional_sint32"))); in ExpectAllFieldsSetViaReflection1()
634 EXPECT_EQ(217, sub_message->GetReflection()->GetInt32(*sub_message, in ExpectAllFieldsSetViaReflection2()
703 EXPECT_EQ(317, sub_message->GetReflection()->GetInt32(*sub_message, in ExpectAllFieldsSetViaReflection2()
770 EXPECT_EQ(401, reflection->GetInt32(message, F("default_int32"))); in ExpectAllFieldsSetViaReflection3()
774 EXPECT_EQ(405, reflection->GetInt32(message, F("default_sint32"))); in ExpectAllFieldsSetViaReflection3()
908 EXPECT_EQ(0, reflection->GetInt32(message, F("optional_int32"))); in ExpectClearViaReflection()
912 EXPECT_EQ(0, reflection->GetInt32(message, F("optional_sint32"))); in ExpectClearViaReflection()
1022 EXPECT_EQ(41, reflection->GetInt32(message, F("default_int32"))); in ExpectClearViaReflection()
[all …]
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fxfa/parser/
H A Dxfa_script_hostpseudomodel.cpp365 bMark = pArguments->GetInt32(3) == 0 ? FALSE : TRUE; in Response()
471 dwType = pArguments->GetInt32(0); in Beep()
556 dwMessageType = pArguments->GetInt32(2); in MessageBox()
562 dwButtonType = pArguments->GetInt32(3); in MessageBox()
625 bShowDialog = pArguments->GetInt32(0) == 0 ? FALSE : TRUE; in Print()
632 nStartPage = pArguments->GetInt32(1); in Print()
636 nEndPage = pArguments->GetInt32(2); in Print()
640 bCanCancel = pArguments->GetInt32(3) == 0 ? FALSE : TRUE; in Print()
654 bAsImage = pArguments->GetInt32(5) == 0 ? FALSE : TRUE; in Print()
661 bAsImage = pArguments->GetInt32(5) == 0 ? FALSE : TRUE; in Print()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Exceptions/
H A DInvalidProjectFileException.cs49 LineNumber = info.GetInt32 ("lineNumber"); in InvalidProjectFileException()
50 ColumnNumber = info.GetInt32 ("columnNumber"); in InvalidProjectFileException()
51 EndLineNumber = info.GetInt32 ("endLineNumber"); in InvalidProjectFileException()
52 EndColumnNumber = info.GetInt32 ("endColumnNumber"); in InvalidProjectFileException()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build.Engine/Test/Microsoft.Build.BuildEngine/
H A DInvalidProjectFileExceptionTest.cs140 Assert.AreEqual (lineNumber, si.GetInt32 ("lineNumber"), "A2"); in TestGetObjectData2()
141 Assert.AreEqual (columnNumber, si.GetInt32 ("columnNumber"), "A3"); in TestGetObjectData2()
142 Assert.AreEqual (endLineNumber, si.GetInt32 ("endLineNumber"), "A4"); in TestGetObjectData2()
143 Assert.AreEqual (endColumnNumber, si.GetInt32 ("endColumnNumber"), "A5"); in TestGetObjectData2()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System/
H A DExceptionTest.cs285 Assert.AreEqual (0, si.GetInt32 ("RemoteStackIndex"), "#A9"); in GetObjectData()
286 Assert.AreEqual (-2146233088, si.GetInt32 ("HResult"), "#A10"); in GetObjectData()
306 Assert.AreEqual (0, si.GetInt32 ("RemoteStackIndex"), "#B9"); in GetObjectData()
307 Assert.AreEqual (-2146233088, si.GetInt32 ("HResult"), "#B10"); in GetObjectData()
325 Assert.AreEqual (0, si.GetInt32 ("RemoteStackIndex"), "#C9"); in GetObjectData()
326 Assert.AreEqual (-2146233088, si.GetInt32 ("HResult"), "#C10"); in GetObjectData()
349 Assert.AreEqual (0, si.GetInt32 ("RemoteStackIndex"), "#D9"); in GetObjectData()
350 Assert.AreEqual (-2146233088, si.GetInt32 ("HResult"), "#D10"); in GetObjectData()
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Errors/
H A DInvalidProjectFileException.cs84 this.lineNumber = info.GetInt32("lineNumber"); in InvalidProjectFileException()
85 this.columnNumber = info.GetInt32("columnNumber"); in InvalidProjectFileException()
86 this.endLineNumber = info.GetInt32("endLineNumber"); in InvalidProjectFileException()
87 this.endColumnNumber = info.GetInt32("endColumnNumber"); in InvalidProjectFileException()
/dports/games/openttd/openttd-12.1/src/
H A Dstrings.cpp1040 StringID str = args->GetInt32(SCC_STRING); in FormatString()
1059 StringID str = args->GetInt32(b); in FormatString()
1078 int digits = args->GetInt32(SCC_DECIMAL); in FormatString()
1105 CargoID cargo = args->GetInt32(SCC_CARGO_TINY); in FormatString()
1133 CargoID cargo = args->GetInt32(SCC_CARGO_SHORT); in FormatString()
1165 CargoID cargo = args->GetInt32(SCC_CARGO_LONG); in FormatString()
1313 CompanyID company = (CompanyID)args->GetInt32(); in FormatString()
1327 uint64 args_array[] = {(uint64)args->GetInt32()}; in FormatString()
1334 const Depot *d = Depot::Get(args->GetInt32()); in FormatString()
1416 StationID sid = args->GetInt32(SCC_STATION_NAME); in FormatString()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Build/Errors/
H A DInvalidProjectFileException.cs94 lineNumber = info.GetInt32("lineNumber"); in InvalidProjectFileException()
95 columnNumber = info.GetInt32("columnNumber"); in InvalidProjectFileException()
96 endLineNumber = info.GetInt32("endLineNumber"); in InvalidProjectFileException()
97 endColumnNumber = info.GetInt32("endColumnNumber"); in InvalidProjectFileException()
/dports/databases/arrow/apache-arrow-6.0.1/go/arrow/internal/flatbuf/
H A DDecimal.go53 return rcv._tab.GetInt32(o + rcv._tab.Pos)
67 return rcv._tab.GetInt32(o + rcv._tab.Pos)
82 return rcv._tab.GetInt32(o + rcv._tab.Pos)
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities/System/Activities/ExpressionParser/
H A DSourceExpressionException.cs49 int length = info.GetInt32("count"); in SourceExpressionException()
55 int line = info.GetInt32("line" + index); in SourceExpressionException()
56 int column = info.GetInt32("column" + index); in SourceExpressionException()
/dports/games/0ad/0ad-0.0.23b-alpha/libraries/source/fcollada/include/FMath/
H A DFMRandom.h50 FCOLLADA_EXPORT int32 GetInt32();
57 …inline int32 GetInt32(int32 rangeStart, int32 rangeEnd) { return (((int32) GetUInt32()) % (rangeEn… in GetInt32() function
/dports/games/0ad/0ad-0.0.23b-alpha/libraries/source/fcollada/src/FCollada/FMath/
H A DFMRandom.h50 FCOLLADA_EXPORT int32 GetInt32();
57 …inline int32 GetInt32(int32 rangeStart, int32 rangeEnd) { return (((int32) GetUInt32()) % (rangeEn… in GetInt32() function

12345678910>>...62