Home
last modified time | relevance | path

Searched refs:dflt (Results 1 – 25 of 82) sorted by relevance

1234

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DMethodProbesAdapter.java138 public void visitLookupSwitchInsn(final Label dflt, final int[] keys, in visitLookupSwitchInsn() argument
140 if (markLabels(dflt, labels)) { in visitLookupSwitchInsn()
141 probesVisitor.visitLookupSwitchInsnWithProbes(dflt, keys, labels, in visitLookupSwitchInsn()
144 probesVisitor.visitLookupSwitchInsn(dflt, keys, labels); in visitLookupSwitchInsn()
150 final Label dflt, final Label... labels) { in visitTableSwitchInsn() argument
151 if (markLabels(dflt, labels)) { in visitTableSwitchInsn()
152 probesVisitor.visitTableSwitchInsnWithProbes(min, max, dflt, in visitTableSwitchInsn()
155 probesVisitor.visitTableSwitchInsn(min, max, dflt, labels); in visitTableSwitchInsn()
159 private boolean markLabels(final Label dflt, final Label[] labels) { in markLabels() argument
162 if (LabelInfo.isMultiTarget(dflt)) { in markLabels()
[all …]
DLabelFlowAnalyzer.java108 final Label dflt, final Label... labels) { in visitTableSwitchInsn() argument
109 visitSwitchInsn(dflt, labels); in visitTableSwitchInsn()
113 public void visitLookupSwitchInsn(final Label dflt, final int[] keys, in visitLookupSwitchInsn() argument
115 visitSwitchInsn(dflt, labels); in visitLookupSwitchInsn()
118 private void visitSwitchInsn(final Label dflt, final Label[] labels) { in visitSwitchInsn() argument
119 LabelInfo.resetDone(dflt); in visitSwitchInsn()
121 setTargetIfNotDone(dflt); in visitSwitchInsn()
DMethodProbesVisitor.java121 final Label dflt, final Label[] labels, final IFrame frame) { in visitTableSwitchInsnWithProbes() argument
146 public void visitLookupSwitchInsnWithProbes(final Label dflt, in visitLookupSwitchInsnWithProbes() argument
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodAnalyzer.java180 final Label dflt, final Label... labels) { in visitTableSwitchInsn() argument
181 visitSwitchInsn(dflt, labels); in visitTableSwitchInsn()
185 public void visitLookupSwitchInsn(final Label dflt, final int[] keys, in visitLookupSwitchInsn() argument
187 visitSwitchInsn(dflt, labels); in visitLookupSwitchInsn()
190 private void visitSwitchInsn(final Label dflt, final Label[] labels) { in visitSwitchInsn() argument
193 jumps.add(new Jump(lastInsn, dflt)); in visitSwitchInsn()
194 LabelInfo.setDone(dflt); in visitSwitchInsn()
229 final Label dflt, final Label[] labels, final IFrame frame) { in visitTableSwitchInsnWithProbes() argument
230 visitSwitchInsnWithProbes(dflt, labels); in visitTableSwitchInsnWithProbes()
234 public void visitLookupSwitchInsnWithProbes(final Label dflt, in visitLookupSwitchInsnWithProbes() argument
[all …]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DMethodInstrumenter.java112 final Label dflt, final Label[] labels, final IFrame frame) { in visitTableSwitchInsnWithProbes() argument
114 LabelInfo.resetDone(dflt); in visitTableSwitchInsnWithProbes()
116 final Label newDflt = createIntermediate(dflt); in visitTableSwitchInsnWithProbes()
121 insertIntermediateProbes(dflt, labels, frame); in visitTableSwitchInsnWithProbes()
125 public void visitLookupSwitchInsnWithProbes(final Label dflt, in visitLookupSwitchInsnWithProbes() argument
128 LabelInfo.resetDone(dflt); in visitLookupSwitchInsnWithProbes()
130 final Label newDflt = createIntermediate(dflt); in visitLookupSwitchInsnWithProbes()
135 insertIntermediateProbes(dflt, labels, frame); in visitLookupSwitchInsnWithProbes()
173 private void insertIntermediateProbes(final Label dflt, in insertIntermediateProbes() argument
175 LabelInfo.resetDone(dflt); in insertIntermediateProbes()
[all …]
DDuplicateFrameEliminator.java108 final Label dflt, final Label... labels) { in visitTableSwitchInsn() argument
110 mv.visitTableSwitchInsn(min, max, dflt, labels); in visitTableSwitchInsn()
114 public void visitLookupSwitchInsn(final Label dflt, final int[] keys, in visitLookupSwitchInsn() argument
117 mv.visitLookupSwitchInsn(dflt, keys, labels); in visitLookupSwitchInsn()
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
DTableSwitchInsnNode.java61 public LabelNode dflt; field in TableSwitchInsnNode
81 final LabelNode dflt, in TableSwitchInsnNode() argument
87 this.dflt = dflt; in TableSwitchInsnNode()
103 mv.visitTableSwitchInsn(min, max, dflt.getLabel(), labels); in accept()
109 clone(dflt, labels), in clone()
DLookupSwitchInsnNode.java51 public LabelNode dflt; field in LookupSwitchInsnNode
73 final LabelNode dflt, in LookupSwitchInsnNode() argument
78 this.dflt = dflt; in LookupSwitchInsnNode()
104 mv.visitLookupSwitchInsn(dflt.getLabel(), keys, labels); in accept()
108 LookupSwitchInsnNode clone = new LookupSwitchInsnNode(clone(dflt, in clone()
DMethodNode.java298 final Label dflt,
303 getLabelNode(dflt),
308 final Label dflt,
312 instructions.add(new LookupSwitchInsnNode(getLabelNode(dflt),
/external/iproute2/tc/
Dq_dsmark.c35 int dflt,set_tc_index; in dsmark_parse_opt() local
38 dflt = -1; in dsmark_parse_opt()
51 dflt = strtoul(*argv,&end,0); in dsmark_parse_opt()
74 if (dflt != -1) { in dsmark_parse_opt()
75 __u16 tmp = dflt; in dsmark_parse_opt()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
DMethodVisitorTee.java111 public void visitTableSwitchInsn(int min, int max, Label dflt, Label labels[]) { in visitTableSwitchInsn() argument
112 mv1.visitTableSwitchInsn(min, max, dflt, labels); in visitTableSwitchInsn()
113 mv2.visitTableSwitchInsn(min, max, dflt, labels); in visitTableSwitchInsn()
116 public void visitLookupSwitchInsn(Label dflt, int keys[], Label labels[]) { in visitLookupSwitchInsn() argument
117 mv1.visitLookupSwitchInsn(dflt, keys, labels); in visitLookupSwitchInsn()
118 mv2.visitLookupSwitchInsn(dflt, keys, labels); in visitLookupSwitchInsn()
/external/mockito/cglib-and-asm/src/org/mockito/asm/
DMethodAdapter.java146 final Label dflt, in visitTableSwitchInsn() argument
149 mv.visitTableSwitchInsn(min, max, dflt, labels); in visitTableSwitchInsn()
153 final Label dflt, in visitLookupSwitchInsn() argument
157 mv.visitLookupSwitchInsn(dflt, keys, labels); in visitLookupSwitchInsn()
DMethodVisitor.java304 void visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels); in visitTableSwitchInsn() argument
314 void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels); in visitLookupSwitchInsn() argument
/external/strace/
Dipc_defs.h40 #define PRINTCTL(flagset, arg, dflt) \ argument
42 printxval((flagset), (arg) &~ IPC_64, dflt)
Devdev.c233 const unsigned int max_nr, const char *dflt) in decode_bitset() argument
255 printxval(decode_nr, i, dflt); in decode_bitset()
263 printxval(decode_nr, i, dflt); in decode_bitset()
Dutil.c211 printxvals(const unsigned int val, const char *dflt, const struct xlat *xlat, ...) in printxvals() argument
226 tprintf("%#x /* %s */", val, dflt); in printxvals()
359 printflags(const struct xlat *xlat, int flags, const char *dflt) argument
387 if (dflt)
388 tprintf(" /* %s */", dflt);
390 if (dflt)
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
DASMifierMethodVisitor.java251 final Label dflt, in visitTableSwitchInsn() argument
258 declareLabel(dflt); in visitTableSwitchInsn()
265 appendLabel(dflt); in visitTableSwitchInsn()
276 final Label dflt, in visitLookupSwitchInsn() argument
284 declareLabel(dflt); in visitLookupSwitchInsn()
287 appendLabel(dflt); in visitLookupSwitchInsn()
DTraceMethodVisitor.java360 final Label dflt, in visitTableSwitchInsn() argument
371 appendLabel(dflt); in visitTableSwitchInsn()
376 mv.visitTableSwitchInsn(min, max, dflt, labels); in visitTableSwitchInsn()
381 final Label dflt, in visitLookupSwitchInsn() argument
393 appendLabel(dflt); in visitLookupSwitchInsn()
398 mv.visitLookupSwitchInsn(dflt, keys, labels); in visitLookupSwitchInsn()
DCheckMethodAdapter.java535 final Label dflt, in visitTableSwitchInsn() argument
544 checkLabel(dflt, false, "default label"); in visitTableSwitchInsn()
551 mv.visitTableSwitchInsn(min, max, dflt, labels); in visitTableSwitchInsn()
555 final Label dflt, in visitLookupSwitchInsn() argument
561 checkLabel(dflt, false, "default label"); in visitLookupSwitchInsn()
568 mv.visitLookupSwitchInsn(dflt, keys, labels); in visitLookupSwitchInsn()
/external/freetype/src/autofit/
Dafglobal.c141 FT_UInt dflt = ~0U; /* a non-valid value */ in af_face_globals_compute_style_coverage() local
181 dflt = ss; in af_face_globals_compute_style_coverage()
219 af_get_coverage( globals, AF_STYLE_CLASSES_GET[dflt], gstyles ); in af_face_globals_compute_style_coverage()
227 if ( ss != dflt && style_class->coverage == AF_COVERAGE_DEFAULT ) in af_face_globals_compute_style_coverage()
/external/emma/core/java12/com/vladium/util/
DIProperties.java45 String getProperty (String key, String dflt); in getProperty() argument
137 public String getProperty (final String key, final String dflt) in getProperty() argument
156 return value != null ? value : dflt; in getProperty()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
DMethodProbesAdapterTest.java75 Label dflt, Label[] labels, IFrame frame) { in visitTableSwitchInsnWithProbes() argument
77 Integer.valueOf(max), dflt, labels); in visitTableSwitchInsnWithProbes()
82 public void visitLookupSwitchInsnWithProbes(Label dflt, int[] keys, in visitLookupSwitchInsnWithProbes() argument
84 rec("visitLookupSwitchInsnWithProbes", dflt, keys, labels); in visitLookupSwitchInsnWithProbes()
DClassProbesAdapterTest.java41 Label dflt, Label[] labels, IFrame frame) { in visitTableSwitchInsnWithProbes() argument
46 public void visitLookupSwitchInsnWithProbes(Label dflt, int[] keys, in visitLookupSwitchInsnWithProbes() argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
DAnalyzer.java210 int jump = insns.indexOf(lsi.dflt); in analyze()
221 int jump = insns.indexOf(tsi.dflt); in analyze()
324 findSubroutine(insns.indexOf(tsnode.dflt), sub, calls); in findSubroutine()
331 findSubroutine(insns.indexOf(lsnode.dflt), sub, calls); in findSubroutine()
/external/emma/core/java12/com/vladium/emma/report/
DReportProperties.java543 …rties properties, final String type, final String key, final boolean allowBlank, final String dflt) in getReportProperty() argument
548 … = properties.getProperty (IReportProperties.PREFIX.concat (type).concat (".").concat (key), dflt); in getReportProperty()
551 return dflt; in getReportProperty()

1234