Home
last modified time | relevance | path

Searched refs:INSTANCE (Results 1 – 25 of 581) sorted by relevance

12345678910>>...24

/external/guava/guava-tests/test/com/google/common/collect/
DEmptyImmutableTableTest.java30 private static final ImmutableTable<Character, Integer, String> INSTANCE = ImmutableTable.of(); field in EmptyImmutableTableTest
33 return ImmutableSet.of(INSTANCE); in getTestInstances()
37 assertEquals(0, INSTANCE.hashCode()); in testHashCode()
45 .addEqualityGroup(INSTANCE, HashBasedTable.create(), TreeBasedTable.create()) in testEqualsObject()
53 .addEqualityGroup(INSTANCE) in testEqualsObjectNullValues()
59 assertEquals("{}", INSTANCE.toString()); in testToString()
63 assertEquals(0, INSTANCE.size()); in testSize()
67 assertNull(INSTANCE.get('a', 1)); in testGet()
71 assertTrue(INSTANCE.isEmpty()); in testIsEmpty()
75 assertEquals(ImmutableSet.of(), INSTANCE.cellSet()); in testCellSet()
[all …]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DEmptyImmutableTableTest.java29 private static final ImmutableTable<Character, Integer, String> INSTANCE = ImmutableTable.of(); field in EmptyImmutableTableTest
32 return ImmutableSet.of(INSTANCE); in getTestInstances()
36 assertEquals(0, INSTANCE.hashCode()); in testHashCode()
44 .addEqualityGroup(INSTANCE, HashBasedTable.create(), TreeBasedTable.create()) in testEqualsObject()
50 assertEquals("{}", INSTANCE.toString()); in testToString()
54 assertEquals(0, INSTANCE.size()); in testSize()
58 assertNull(INSTANCE.get('a', 1)); in testGet()
62 assertTrue(INSTANCE.isEmpty()); in testIsEmpty()
66 assertEquals(ImmutableSet.of(), INSTANCE.cellSet()); in testCellSet()
70 assertEquals(ImmutableMap.of(), INSTANCE.column(1)); in testColumn()
[all …]
/external/opencensus-java/api/src/test/java/io/opencensus/trace/
DBlankSpanTest.java32 assertThat(BlankSpan.INSTANCE.getContext()).isEqualTo(SpanContext.INVALID); in hasInvalidContextAndDefaultSpanOptions()
33 assertThat(BlankSpan.INSTANCE.getOptions().isEmpty()).isTrue(); in hasInvalidContextAndDefaultSpanOptions()
47 BlankSpan.INSTANCE.putAttribute( in doNotCrash()
49 BlankSpan.INSTANCE.addAttributes(attributes); in doNotCrash()
50 BlankSpan.INSTANCE.addAttributes(multipleAttributes); in doNotCrash()
51 BlankSpan.INSTANCE.addAnnotation("MyAnnotation"); in doNotCrash()
52 BlankSpan.INSTANCE.addAnnotation("MyAnnotation", attributes); in doNotCrash()
53 BlankSpan.INSTANCE.addAnnotation("MyAnnotation", multipleAttributes); in doNotCrash()
54 BlankSpan.INSTANCE.addAnnotation(Annotation.fromDescription("MyAnnotation")); in doNotCrash()
55 BlankSpan.INSTANCE.addNetworkEvent(NetworkEvent.builder(NetworkEvent.Type.SENT, 1L).build()); in doNotCrash()
[all …]
DTracerTest.java51 assertThat(noopTracer.getCurrentSpan()).isEqualTo(BlankSpan.INSTANCE); in defaultGetCurrentSpan()
61 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in getCurrentSpan_WithSpan()
68 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in getCurrentSpan_WithSpan()
74 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in wrapRunnable()
87 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in wrapRunnable()
94 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in wrapCallable()
108 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in wrapCallable()
118 assertThat(noopTracer.spanBuilder(SPAN_NAME).startSpan()).isSameAs(BlankSpan.INSTANCE); in defaultSpanBuilderWithName()
129 .isSameAs(BlankSpan.INSTANCE); in defaultSpanBuilderWithParentAndName()
140 .isSameAs(BlankSpan.INSTANCE); in defaultSpanBuilderWithRemoteParent_NullParent()
[all …]
DSpanBuilderTest.java52 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startScopedSpan()
60 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startScopedSpan()
65 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startSpanAndRun()
74 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startSpanAndRun()
80 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startSpanAndCall()
92 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startSpanAndCall()
102 assertThat(spanBuilder.startSpan()).isSameAs(BlankSpan.INSTANCE); in doNotCrash_NoopImplementation()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/
DVoidTypeTest.java58 assertEquals(false, ResolvedVoidType.INSTANCE.isArray()); in testIsArray()
63 assertEquals(false, ResolvedVoidType.INSTANCE.isPrimitive()); in testIsPrimitive()
68 assertEquals(false, ResolvedVoidType.INSTANCE.isNull()); in testIsNull()
73 assertEquals(false, ResolvedVoidType.INSTANCE.isReference()); in testIsReference()
78 assertEquals(false, ResolvedVoidType.INSTANCE.isReferenceType()); in testIsReferenceType()
83 assertEquals(true, ResolvedVoidType.INSTANCE.isVoid()); in testIsVoid()
88 assertEquals(false, ResolvedVoidType.INSTANCE.isTypeVariable()); in testIsTypeVariable()
93 ResolvedVoidType.INSTANCE.asReferenceType(); in testAsReferenceTypeUsage()
98 ResolvedVoidType.INSTANCE.asTypeParameter(); in testAsTypeParameter()
103 ResolvedVoidType.INSTANCE.asArrayType(); in testAsArrayTypeUsage()
[all …]
DNullTypeTest.java58 assertEquals(false, NullType.INSTANCE.isArray()); in testIsArray()
63 assertEquals(false, NullType.INSTANCE.isPrimitive()); in testIsPrimitive()
68 assertEquals(true, NullType.INSTANCE.isNull()); in testIsNull()
73 assertEquals(true, NullType.INSTANCE.isReference()); in testIsReference()
78 assertEquals(false, NullType.INSTANCE.isReferenceType()); in testIsReferenceType()
83 assertEquals(false, NullType.INSTANCE.isVoid()); in testIsVoid()
88 assertEquals(false, NullType.INSTANCE.isTypeVariable()); in testIsTypeVariable()
93 NullType.INSTANCE.asReferenceType(); in testAsReferenceTypeUsage()
98 NullType.INSTANCE.asTypeParameter(); in testAsTypeParameter()
103 NullType.INSTANCE.asArrayType(); in testAsArrayTypeUsage()
[all …]
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/
DSmaliElementTypes.java38 public static final SmaliFileElementType FILE = SmaliFileElementType.INSTANCE;
39 public static final SmaliClassElementType CLASS = SmaliClassElementType.INSTANCE;
40 public static final SmaliFieldElementType FIELD = SmaliFieldElementType.INSTANCE;
41 public static final SmaliMethodElementType METHOD = SmaliMethodElementType.INSTANCE;
42 …tic final SmaliClassStatementElementType CLASS_STATEMENT = SmaliClassStatementElementType.INSTANCE;
43 … final SmaliMethodPrototypeElementType METHOD_PROTOTYPE = SmaliMethodPrototypeElementType.INSTANCE;
44 …final SmaliMethodParamListElementType METHOD_PARAM_LIST = SmaliMethodParamListElementType.INSTANCE;
45 … final SmaliMethodParameterElementType METHOD_PARAMETER = SmaliMethodParameterElementType.INSTANCE;
46 public static final SmaliAnnotationElementType ANNOTATION = SmaliAnnotationElementType.INSTANCE;
47 …ic static final SmaliModifierListElementType MODIFIER_LIST = SmaliModifierListElementType.INSTANCE;
[all …]
/external/guava/guava/src/com/google/common/collect/
DReverseNaturalOrdering.java31 static final ReverseNaturalOrdering INSTANCE = new ReverseNaturalOrdering(); field in ReverseNaturalOrdering
49 return NaturalOrdering.INSTANCE.max(a, b); in min()
53 return NaturalOrdering.INSTANCE.max(a, b, c, rest); in min()
57 return NaturalOrdering.INSTANCE.max(iterator); in min()
61 return NaturalOrdering.INSTANCE.max(iterable); in min()
65 return NaturalOrdering.INSTANCE.min(a, b); in max()
69 return NaturalOrdering.INSTANCE.min(a, b, c, rest); in max()
73 return NaturalOrdering.INSTANCE.min(iterator); in max()
77 return NaturalOrdering.INSTANCE.min(iterable); in max()
82 return INSTANCE; in readResolve()
DDiscreteDomain.java54 return IntegerDomain.INSTANCE; in integers()
59 private static final IntegerDomain INSTANCE = new IntegerDomain(); field in DiscreteDomain.IntegerDomain
84 return INSTANCE; in readResolve()
101 return LongDomain.INSTANCE; in longs()
106 private static final LongDomain INSTANCE = new LongDomain(); field in DiscreteDomain.LongDomain
138 return INSTANCE; in readResolve()
155 return BigIntegerDomain.INSTANCE; in bigIntegers()
160 private static final BigIntegerDomain INSTANCE = new BigIntegerDomain(); field in DiscreteDomain.BigIntegerDomain
180 return INSTANCE; in readResolve()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCharacterPropertiesImpl.java37 UCharacterProperty.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
40 UCharacterProperty.INSTANCE.upropsvec_addPropertyStarts(incl); in getInclusionsForSource()
43 UCharacterProperty.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
44 UCharacterProperty.INSTANCE.upropsvec_addPropertyStarts(incl); in getInclusionsForSource()
48 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
63 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
66 UBiDiProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
71 UCharacterProperty.INSTANCE.ulayout_addPropertyStarts(src, incl); in getInclusionsForSource()
90 int src = UCharacterProperty.INSTANCE.getSource(prop); in getIntPropInclusions()
119 int src = UCharacterProperty.INSTANCE.getSource(prop); in getInclusionsForProperty()
/external/opencensus-java/api/src/main/java/io/opencensus/tags/
DNoopTags.java49 return NoopTagger.INSTANCE; in getNoopTagger()
58 return NoopTagContextBuilder.INSTANCE; in getNoopTagContextBuilder()
67 return NoopTagContext.INSTANCE; in getNoopTagContext()
72 return NoopTagPropagationComponent.INSTANCE; in getNoopTagPropagationComponent()
80 return NoopTagContextBinarySerializer.INSTANCE; in getNoopTagContextBinarySerializer()
113 static final Tagger INSTANCE = new NoopTagger(); field in NoopTags.NoopTagger
150 static final TagContextBuilder INSTANCE = new NoopTagContextBuilder(); field in NoopTags.NoopTagContextBuilder
178 static final TagContext INSTANCE = new NoopTagContext(); field in NoopTags.NoopTagContext
189 static final TagPropagationComponent INSTANCE = new NoopTagPropagationComponent(); field in NoopTags.NoopTagPropagationComponent
199 static final TagContextBinarySerializer INSTANCE = new NoopTagContextBinarySerializer(); field in NoopTags.NoopTagContextBinarySerializer
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DCharacterPropertiesImpl.java39 UCharacterProperty.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
42 UCharacterProperty.INSTANCE.upropsvec_addPropertyStarts(incl); in getInclusionsForSource()
45 UCharacterProperty.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
46 UCharacterProperty.INSTANCE.upropsvec_addPropertyStarts(incl); in getInclusionsForSource()
50 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
65 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
68 UBiDiProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
73 UCharacterProperty.INSTANCE.ulayout_addPropertyStarts(src, incl); in getInclusionsForSource()
92 int src = UCharacterProperty.INSTANCE.getSource(prop); in getIntPropInclusions()
121 int src = UCharacterProperty.INSTANCE.getSource(prop); in getInclusionsForProperty()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DRecordUtils.java109 CreateMutableSumDouble.INSTANCE, in createMutableAggregation()
110 CreateMutableSumLong.INSTANCE, in createMutableAggregation()
114 CreateMutableCount.INSTANCE, in createMutableAggregation()
115 CreateMutableDistribution.INSTANCE, in createMutableAggregation()
120 CreateMutableLastValueDouble.INSTANCE, in createMutableAggregation()
121 CreateMutableLastValueLong.INSTANCE, in createMutableAggregation()
125 AggregationDefaultFunction.INSTANCE); in createMutableAggregation()
172 private static final CreateMutableSumDouble INSTANCE = new CreateMutableSumDouble();
182 private static final CreateMutableSumLong INSTANCE = new CreateMutableSumLong();
191 private static final CreateMutableCount INSTANCE = new CreateMutableCount();
[all …]
/external/cldr/tools/java/org/unicode/cldr/tool/
DToolConfig.java14 private static CLDRConfig INSTANCE = null; field in ToolConfig
17 if (INSTANCE == null) { in getToolInstance()
18 INSTANCE = CLDRConfig.getInstance(); in getToolInstance()
19 …if (INSTANCE.getEnvironment() != Environment.LOCAL) { // verify we aren't in the server, unittests… in getToolInstance()
23 return INSTANCE; in getToolInstance()
/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DAggregation.java70 private static final Sum INSTANCE = new AutoValue_Aggregation_Sum(); field in Aggregation.Sum
79 return INSTANCE; in create()
104 private static final Count INSTANCE = new AutoValue_Aggregation_Count(); field in Aggregation.Count
113 return INSTANCE; in create()
141 private static final Mean INSTANCE = new AutoValue_Aggregation_Mean(); field in Aggregation.Mean
150 return INSTANCE; in create()
217 private static final LastValue INSTANCE = new AutoValue_Aggregation_LastValue(); field in Aggregation.LastValue
226 return INSTANCE; in create()
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DMethodDescriptorTest.java143 .setRequestMarshaller(StringMarshaller.INSTANCE) in toBuilderTest()
144 .setResponseMarshaller(StringMarshaller.INSTANCE) in toBuilderTest()
155 .setRequestMarshaller(StringMarshaller.INSTANCE) in toBuilderTest()
156 .setResponseMarshaller(StringMarshaller.INSTANCE) in toBuilderTest()
165 IntegerMarshaller.INSTANCE, in toBuilderTest()
166 IntegerMarshaller.INSTANCE).build(); in toBuilderTest()
169 assertSame(IntegerMarshaller.INSTANCE, md2.getRequestMarshaller()); in toBuilderTest()
170 assertSame(IntegerMarshaller.INSTANCE, md2.getResponseMarshaller()); in toBuilderTest()
182 .setRequestMarshaller(StringMarshaller.INSTANCE) in toStringTest()
183 .setResponseMarshaller(StringMarshaller.INSTANCE) in toStringTest()
/external/guava/guava/src/com/google/common/hash/
DFunnels.java40 return ByteArrayFunnel.INSTANCE; in byteArrayFunnel()
44 INSTANCE; enumConstant
63 return UnencodedCharsFunnel.INSTANCE; in unencodedCharsFunnel()
67 INSTANCE; enumConstant
140 return IntegerFunnel.INSTANCE; in integerFunnel()
144 INSTANCE; enumConstant
201 return LongFunnel.INSTANCE; in longFunnel()
205 INSTANCE; enumConstant
/external/caliper/examples/src/main/java/examples/
DListModificationBenchmark.java34 INSTANCE, enumConstant
62 list.add(Element.INSTANCE); in setUp()
70 list.add(Element.INSTANCE); in populate()
86 list.add(0, Element.INSTANCE); in headAddRemove()
94 list.add(index, Element.INSTANCE); in middleAddRemove()
102 list.add(Element.INSTANCE); in tailAddRemove()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DNormalizer.java156 private static final ModeImpl INSTANCE = new ModeImpl(Normalizer2.getNFDInstance()); field in Normalizer.NFDModeImpl
159 private static final ModeImpl INSTANCE = new ModeImpl(Normalizer2.getNFKDInstance()); field in Normalizer.NFKDModeImpl
162 private static final ModeImpl INSTANCE = new ModeImpl(Normalizer2.getNFCInstance()); field in Normalizer.NFCModeImpl
165 private static final ModeImpl INSTANCE = new ModeImpl(Normalizer2.getNFKCInstance()); field in Normalizer.NFKCModeImpl
168 private static final ModeImpl INSTANCE = new ModeImpl(Norm2AllModes.getFCDNormalizer2()); field in Normalizer.FCDModeImpl
172 private static final UnicodeSet INSTANCE = new UnicodeSet("[:age=3.2:]").freeze(); field in Normalizer.Unicode32
175 private static final ModeImpl INSTANCE = field in Normalizer.NFD32ModeImpl
177 Unicode32.INSTANCE));
180 private static final ModeImpl INSTANCE = field in Normalizer.NFKD32ModeImpl
182 Unicode32.INSTANCE));
[all …]
/external/desugar/test/java/com/google/devtools/build/android/desugar/
DDefaultMethodClassFixerTest.java18 …tatic com.google.devtools.build.android.desugar.DefaultMethodClassFixer.SubtypeComparator.INSTANCE;
209 assertThat(INSTANCE.compare(Runnable.class, Runnable.class)).isEqualTo(0); in testInterfaceComparator()
210 assertThat(INSTANCE.compare(Runnable.class, MyRunnable1.class)).isEqualTo(1); in testInterfaceComparator()
211 assertThat(INSTANCE.compare(MyRunnable2.class, Runnable.class)).isEqualTo(-1); in testInterfaceComparator()
212 assertThat(INSTANCE.compare(MyRunnable3.class, Runnable.class)).isEqualTo(-1); in testInterfaceComparator()
213 assertThat(INSTANCE.compare(MyRunnable1.class, MyRunnable3.class)).isEqualTo(1); in testInterfaceComparator()
214 assertThat(INSTANCE.compare(MyRunnable3.class, MyRunnable2.class)).isEqualTo(-1); in testInterfaceComparator()
215 assertThat(INSTANCE.compare(MyRunnable2.class, MyRunnable1.class)).isGreaterThan(0); in testInterfaceComparator()
216 assertThat(INSTANCE.compare(Runnable.class, Serializable.class)).isGreaterThan(0); in testInterfaceComparator()
217 assertThat(INSTANCE.compare(Serializable.class, Runnable.class)).isLessThan(0); in testInterfaceComparator()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
DSignatureSpi.java71 super(AndroidDigestFactory.getSHA1(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA()
93 super(new NullDigest(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSAnone()
104 … super(AndroidDigestFactory.getSHA224(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA224()
128 … super(AndroidDigestFactory.getSHA256(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA256()
152 … super(AndroidDigestFactory.getSHA384(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA384()
176 … super(AndroidDigestFactory.getSHA512(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA512()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DPasswordRecipient.java15 … PRF("HMacSHA1", new AlgorithmIdentifier(PKCSObjectIdentifiers.id_hmacWithSHA1, DERNull.INSTANCE));
16 …("HMacSHA224", new AlgorithmIdentifier(PKCSObjectIdentifiers.id_hmacWithSHA224, DERNull.INSTANCE));
17 …("HMacSHA256", new AlgorithmIdentifier(PKCSObjectIdentifiers.id_hmacWithSHA256, DERNull.INSTANCE));
18 …("HMacSHA384", new AlgorithmIdentifier(PKCSObjectIdentifiers.id_hmacWithSHA384, DERNull.INSTANCE));
19 …("HMacSHA512", new AlgorithmIdentifier(PKCSObjectIdentifiers.id_hmacWithSHA512, DERNull.INSTANCE));
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNormalizer.java157 private static final ModeImpl INSTANCE = new ModeImpl(Normalizer2.getNFDInstance()); field in Normalizer.NFDModeImpl
160 private static final ModeImpl INSTANCE = new ModeImpl(Normalizer2.getNFKDInstance()); field in Normalizer.NFKDModeImpl
163 private static final ModeImpl INSTANCE = new ModeImpl(Normalizer2.getNFCInstance()); field in Normalizer.NFCModeImpl
166 private static final ModeImpl INSTANCE = new ModeImpl(Normalizer2.getNFKCInstance()); field in Normalizer.NFKCModeImpl
169 private static final ModeImpl INSTANCE = new ModeImpl(Norm2AllModes.getFCDNormalizer2()); field in Normalizer.FCDModeImpl
173 private static final UnicodeSet INSTANCE = new UnicodeSet("[:age=3.2:]").freeze(); field in Normalizer.Unicode32
176 private static final ModeImpl INSTANCE = field in Normalizer.NFD32ModeImpl
178 Unicode32.INSTANCE));
181 private static final ModeImpl INSTANCE = field in Normalizer.NFKD32ModeImpl
183 Unicode32.INSTANCE));
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/ec/
DSignatureSpi.java78 super(AndroidDigestFactory.getSHA1(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA()
103 super(new NullDigest(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSAnone()
117 … super(AndroidDigestFactory.getSHA224(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA224()
144 … super(AndroidDigestFactory.getSHA256(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA256()
171 … super(AndroidDigestFactory.getSHA384(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA384()
198 … super(AndroidDigestFactory.getSHA512(), new ECDSASigner(), StandardDSAEncoding.INSTANCE); in ecDSA512()

12345678910>>...24