Searched refs:exception (Results 1 – 15 of 15) sorted by relevance
59 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailIfTypeIsSpecifiedSecondTime()60 Assert.AreEqual(ParsingError.VariableAlreadyDeclared, exception.Error); in ShouldFailIfTypeIsSpecifiedSecondTime()68 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnEmptyEntry()69 Assert.AreEqual(ParsingError.EmptyEntry, exception.Error); in ShouldFailOnEmptyEntry()78 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnNotExistingType()79 Assert.AreEqual(ParsingError.TypeNotResolved, exception.Error); in ShouldFailOnNotExistingType()89 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnRegisteringNotIPeripheral()90 Assert.AreEqual(ParsingError.NoUsableRegisterInterface, exception.Error); in ShouldFailOnRegisteringNotIPeripheral()101 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnStringMismatch()102 Assert.AreEqual(ParsingError.TypeMismatch, exception.Error); in ShouldFailOnStringMismatch()[all …]
165 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnUnclosedMultipleMultilineQuotedStrings()166 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnUnclosedMultipleMultilineQuotedStrings()167 …var position = exception.Message.Split(new string[] { Environment.NewLine }, StringSplitOptions.No… in ShouldFailOnUnclosedMultipleMultilineQuotedStrings()187 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnUnclosedMultilineQuotedStringBetweenQuotedStrings()188 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnUnclosedMultilineQuotedStringBetweenQuotedStrings()189 …var position = exception.Message.Split(new string[] { Environment.NewLine }, StringSplitOptions.No… in ShouldFailOnUnclosedMultilineQuotedStringBetweenQuotedStrings()241 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnMultilineQuotedStringInUsing()242 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnMultilineQuotedStringInUsing()279 var exception = Assert.Throws<ParsingException>(() => ProcessSource(source)); in ShouldFailOnAnyStringAfterClosedMultilineString()280 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnAnyStringAfterClosedMultilineString()[all …]
45 var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a)); in ShouldNotFindLocalVariableFromUsing()46 Assert.AreEqual(ParsingError.MissingReference, exception.Error); in ShouldNotFindLocalVariableFromUsing()306 … var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a, b)); in ShouldFailOnDuplicateUsingEntry()307 Assert.AreEqual(ParsingError.DuplicateUsing, exception.Error); in ShouldFailOnDuplicateUsingEntry()339 … var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a, b)); in ShouldFailOnRecurringUsings()340 Assert.AreEqual(ParsingError.RecurringUsing, exception.Error); in ShouldFailOnRecurringUsings()354 var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a)); in ShouldFailOnDirectlyRecurringUsings()355 Assert.AreEqual(ParsingError.RecurringUsing, exception.Error); in ShouldFailOnDirectlyRecurringUsings()364 var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source)); in ShouldFailOnNonExistingUsingFile()365 Assert.AreEqual(ParsingError.UsingFileNotFound, exception.Error); in ShouldFailOnNonExistingUsingFile()
216 var exception = Assert.Throws<ParsingException>(() => result.ToArray()); in ShouldFailOnUnterminatedString()217 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailOnUnterminatedString()290 var exception = Assert.Throws<ParsingException>(() => result.ToArray()); in ShouldFailIfTheMultilineCommentFinishesBeforeEndOfLine()291 Assert.AreEqual(ParsingError.SyntaxError, exception.Error); in ShouldFailIfTheMultilineCommentFinishesBeforeEndOfLine()333 var exception = Assert.Throws<ParsingException>(() => result.ToArray());334 Assert.AreEqual(ParsingError.WrongIndent, exception.Error);346 var exception = Assert.Throws<ParsingException>(() => result.ToArray());347 Assert.AreEqual(ParsingError.SyntaxError, exception.Error);
52 exception = null; in Invoke()74 exception = e; in Invoke()87 if(exception != null) in Invoke()89 throw exception; in Invoke()103 private Exception exception; field in Antmicro.Renode.Network.ExternalControl.RunFor
98 # Let's remap exception vector for cpu0 and cpu2.102 # Verify exception vectors, it should be a default for other CPUs.
147 # Each timer interrupt sets FAULTMASK, so if the field is not cleared by exception exit
98 …# After NMI exception, binary falls into while(true) loop while waiting for the watchdog to reset …
547 # two instructions after entering exception handler with Step command684 # two instructions after entering exception handler with Step command
5 … 0xC0001073 # CSRRW 0x, cycle, x0. Since cycle is read only, triggers illegal instruction exception
48 # invalid instruction exception at ${vector_opcode} or ${fvf_vector_opcode}.
619 catch(TargetInvocationException exception) in CreateAndHandleError()621 var constructionException = exception.InnerException as ConstructionException; in CreateAndHandleError()764 catch(TargetInvocationException exception) in SetPropertiesAndConnectInterrupts()766 var recoverableException = exception.InnerException as RecoverableException; in SetPropertiesAndConnectInterrupts()1013 catch(TargetInvocationException exception) in TryRegisterFromEntry()1015 var recoverableException = exception.InnerException as RecoverableException; in TryRegisterFromEntry()1029 catch(RecoverableException exception) in TryRegisterFromEntry()1032 …ception was thrown during setting a name: {0}{1}", Environment.NewLine, exception.Message), false); in TryRegisterFromEntry()
14 * RISC-V MTVAL register now contains the invalid instruction after illegal instruction exception73 * infinite loop on debug exception with an interrupt pending154 * remapping exception vector in Arm CPUs having neither VBAR nor VTOR209 * exception thrown on an empty message in log when failing a Robot test683 * exception when issuing a DMA transaction during register access684 * reported PC on exception when executing vector instructions in RISC-V1096 * stacktrace reporting when exception is rethrown on the native-managed boundary1098 * exception handling on EnsureTypeIsLoaded1275 * updating PC before raising MMU exception on RISC-V1296 * illegal instruction exception on wrong CSR access on RISC-V[all …]
163 # Some of the exception messages end with whitespace.
46 Please note that the constructor of CTCPServer or the SSL/TLS version throws only an exception in t…