Lines Matching refs:ProcessSource
26 ProcessSource(source); in ShouldProcessOneObject()
37 ProcessSource(source); in ShouldProcessLateAttach()
48 ProcessSource(source); in ShouldProcessWithoutTypeNameInFirstEntry()
59 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailIfTypeIsSpecifiedSecondTime()
68 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnEmptyEntry()
78 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNotExistingType()
89 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnRegisteringNotIPeripheral()
101 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnStringMismatch()
112 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNonWritableProperty()
123 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNumericEnumMismatch()
134 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNonExistingInlineType()
146 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnDoubleAttribute()
158 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNonExistingProperty()
171 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldCheckTypeOfAReference()
182 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnIncorrectInlineObjectType()
195 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnIncorrectPropertyTypeInNestedInlineObject()
206 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNotExistingIrqDestination()
218 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnIrqDestinationNotBeingIrqReceiver()
230 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnWrongIrqArity()
243 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnWrongIrqName()
255 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNumberIrqSourceNotBeingNumberedGpioOutput()
268 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAmbiguousDefaultIrq()
280 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNoIrqWhenUsingDefaultOne()
293 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailIfInterruptUsedSecondTimeInEntryAsSource()
306 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailIfDefaultInterruptUsedSecondTimeInEntry()
319 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailIfTheSameIrqUsedTwiceOnceAsDefault()
333 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailWithMoreThanOneInitAttribute()
344 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnMissingReference()
354 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnMissingReferenceInRegistrationPoint()
365 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnWrongReferenceRegistrationPointType()
375 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnWrongObjectRegistrationPointType()
385 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNonConstruableRegistrationPoint()
396 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAmbiguousConstructorForRegistrationPoint()
409 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldValidateObjectValueInCtorParameter()
420 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNoAvailableCtorInEntry()
431 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAmbiguousCtorInEntry()
444 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNoAvailableCtorInObjectValue()
458 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAmbiguousCtorInObjectValue()
470 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAmbiguousRegistrationPoint()
480 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAliasWithoutRegistrationInfo()
490 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAliasWithNoneRegistrationInfo()
501 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailWithConstructorAttributesWithNonCreatingEntry()
512 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAmbiguousRegistree()
523 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNonPeripheralRegister()
535 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNonExistingIrqSourcePin()
545 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNonExistingConstructor()
559 private static void ProcessSource(string source) in ProcessSource() method in Antmicro.Renode.UnitTests.PlatformDescription.VerificationTests