OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exceptionHandler
(Results
1 - 25
of
25
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
ExceptionHandlerRewriter.java
35
import org.jf.dexlib2.iface.
ExceptionHandler
;
40
public class ExceptionHandlerRewriter implements Rewriter<
ExceptionHandler
> {
47
@Nonnull @Override public
ExceptionHandler
rewrite(@Nonnull
ExceptionHandler
value) {
52
@Nonnull protected
ExceptionHandler
exceptionHandler
;
54
public RewrittenExceptionHandler(@Nonnull
ExceptionHandler
exceptionHandler
) {
55
this.
exceptionHandler
=
exceptionHandler
;
[
all
...]
/external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
ExceptionHandler.java
8
* An {@link
ExceptionHandler
} is notified of any {@link RuntimeException} happening in the
11
public interface
ExceptionHandler
{
22
* The default
ExceptionHandler
, which simply throws the exception upon receiving it. It can
23
* also delegate the handling of the exceptions to another instance of
ExceptionHandler
.
25
public static class DefaultExceptionHandler implements
ExceptionHandler
{
26
private
ExceptionHandler
mDelegate;
53
* Sets a delegate
ExceptionHandler
, in case throwing an exception is not desirable.
55
public void setDelegate(
ExceptionHandler
exceptionHandler
) {
56
mDelegate =
exceptionHandler
;
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderTryBlock.java
44
@Nonnull public final BuilderExceptionHandler
exceptionHandler
;
54
this.
exceptionHandler
= BuilderExceptionHandler.newExceptionHandler(exceptionType, handler);
61
this.
exceptionHandler
= BuilderExceptionHandler.newExceptionHandler(exceptionType, handler);
67
this.
exceptionHandler
= BuilderExceptionHandler.newExceptionHandler(handler);
79
return ImmutableList.of(
exceptionHandler
);
MutableMethodImplementation.java
42
import org.jf.dexlib2.iface.
ExceptionHandler
;
114
for (TryBlock<? extends
ExceptionHandler
> tryBlock: methodImplementation.getTryBlocks()) {
118
for (
ExceptionHandler
exceptionHandler
: tryBlock.getExceptionHandlers()) {
120
exceptionHandler
.getExceptionTypeReference(),
121
newLabel(codeAddressToIndex,
exceptionHandler
.getHandlerCodeAddress())));
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableExceptionHandler.java
36
import org.jf.dexlib2.iface.
ExceptionHandler
;
42
public class ImmutableExceptionHandler extends BaseExceptionHandler implements
ExceptionHandler
{
52
public static ImmutableExceptionHandler of(
ExceptionHandler
exceptionHandler
) {
53
if (
exceptionHandler
instanceof ImmutableExceptionHandler) {
54
return (ImmutableExceptionHandler)
exceptionHandler
;
57
exceptionHandler
.getExceptionType(),
58
exceptionHandler
.getHandlerCodeAddress());
66
@Nullable Iterable<? extends
ExceptionHandler
> list) {
70
private static final ImmutableConverter<ImmutableExceptionHandler,
ExceptionHandler
> CONVERTER
[
all
...]
/external/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRv3Tree.g
129
:
exceptionHandler
+ finallyClause?
133
exceptionHandler
LeftRecursiveRuleWalker.g
227
:
exceptionHandler
+ finallyClause?
231
exceptionHandler
ANTLRTreePrinter.g
327
: (
exceptionHandler
)+ (finallyClause)?
331
exceptionHandler
AssignTokenTypesWalker.g
342
: (
exceptionHandler
)+ (finallyClause)?
346
exceptionHandler
ANTLRv3.g
222
: (
exceptionHandler
)+ ( finallyClause )?
226
exceptionHandler
DefineGrammarItemsWalker.g
374
: (
exceptionHandler
)+ (finallyClause)?
378
exceptionHandler
ANTLR.g
717
:
exceptionHandler
+ finallyClause?
721
exceptionHandler
TreeToNFAConverter.g
322
: (
exceptionHandler
)+ (finallyClause)?
326
exceptionHandler
CodeGenTreeWalker.g
656
: (
exceptionHandler
[$ruleST] )+ (finallyClause[$ruleST])?
660
exceptionHandler
[ST ruleST]
[
all
...]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
FixOffsetsTest.java
39
import org.jf.dexlib2.iface.
ExceptionHandler
;
110
List<? extends TryBlock<? extends
ExceptionHandler
>> exceptionHandlers = impl.getTryBlocks();
118
ExceptionHandler
exceptionHandler
= exceptionHandlers.get(0).getExceptionHandlers().get(0);
119
Assert.assertEquals(504,
exceptionHandler
.getHandlerCodeAddress());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
TryListBuilder.java
36
import org.jf.dexlib2.iface.
ExceptionHandler
;
46
public class TryListBuilder<EH extends
ExceptionHandler
>
60
public static <EH extends
ExceptionHandler
> List<TryBlock<EH>> massageTryBlocks(
68
for (EH
exceptionHandler
: tryBlock.getExceptionHandlers()) {
69
tlb.addHandler(startAddress, endAddress,
exceptionHandler
);
75
private static class TryBounds<EH extends
ExceptionHandler
> {
99
private static class MutableTryBlock<EH extends
ExceptionHandler
> extends BaseTryBlock<EH> {
165
for (
ExceptionHandler
existingHandler: exceptionHandlers) {
/external/antlr/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g
225
: (
exceptionHandler
)+ ( finallyClause )?
229
exceptionHandler
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java
452
List<? extends TryBlock<? extends
ExceptionHandler
>> tries = methodImpl.getTryBlocks();
475
TryBlock<? extends
ExceptionHandler
> tryBlock = tries.get(triesIndex);
586
for (AnalyzedInstruction
exceptionHandler
: exceptionHandlersForSuccessor) {
587
addPredecessorSuccessor(predecessor,
exceptionHandler
, exceptionHandlers, instructionsToProcess, true);
593
private AnalyzedInstruction[] buildExceptionHandlerArray(@Nonnull TryBlock<? extends
ExceptionHandler
> tryBlock) {
594
List<? extends
ExceptionHandler
> exceptionHandlers = tryBlock.getExceptionHandlers();
[
all
...]
/external/mockito/lib/
byte-buddy-1.8.15.jar
/external/guice/extensions/persist/lib/
antlr-2.7.5h3.jar
/external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar
/external/cldr/tools/java/libs/
guava.jar
/external/guice/extensions/struts2/lib/
core-3.1.1.jar
/external/guice/lib/
guava-19.0.jar
/external/kotlinc/lib/
kotlin-compiler.jar
Completed in 423 milliseconds