/external/llvm-project/llvm/test/CodeGen/X86/GC/ |
D | inline.ll | 3 %IntArray = type { i32, [0 x i32*] } 15 %obj = call %IntArray* @h( ) ; <%IntArray*> [#uses=2] 16 %obj.2 = bitcast %IntArray* %obj to i8* ; <i8*> [#uses=1] 18 %Length.ptr = getelementptr %IntArray, %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1] 23 declare %IntArray* @h()
|
D | inline2.ll | 4 %IntArray = type { i32, [0 x i32*] } 16 %obj = call %IntArray* @h( ) ; <%IntArray*> [#uses=2] 17 %obj.2 = bitcast %IntArray* %obj to i8* ; <i8*> [#uses=1] 19 %Length.ptr = getelementptr %IntArray, %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1] 24 declare %IntArray* @h()
|
/external/llvm/test/CodeGen/X86/GC/ |
D | inline.ll | 3 %IntArray = type { i32, [0 x i32*] } 15 %obj = call %IntArray* @h( ) ; <%IntArray*> [#uses=2] 16 %obj.2 = bitcast %IntArray* %obj to i8* ; <i8*> [#uses=1] 18 %Length.ptr = getelementptr %IntArray, %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1] 23 declare %IntArray* @h()
|
D | inline2.ll | 4 %IntArray = type { i32, [0 x i32*] } 16 %obj = call %IntArray* @h( ) ; <%IntArray*> [#uses=2] 17 %obj.2 = bitcast %IntArray* %obj to i8* ; <i8*> [#uses=1] 19 %Length.ptr = getelementptr %IntArray, %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1] 24 declare %IntArray* @h()
|
/external/antlr/runtime/ObjC/Framework/test/runtime/misc/ |
D | IntArrayTest.m | 10 #import "IntArray.h" 16 IntArray *intArray = [IntArray newArrayWithLen:10]; 25 IntArray *intArray = [IntArray newArrayWithLen:10]; 38 IntArray *intArray = [IntArray newArrayWithLen:10];
|
/external/clang/test/SemaTemplate/ |
D | instantiate-array.cpp | 12 template <int N> class IntArray { class 16 static_assert(sizeof(IntArray<10>) == sizeof(int) * 10, "Array size mismatch"); 17 static_assert(sizeof(IntArray<1>) == sizeof(int) * 1, "Array size mismatch");
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | instantiate-array.cpp | 12 template <int N> class IntArray { class 16 static_assert(sizeof(IntArray<10>) == sizeof(int) * 10, "Array size mismatch"); 17 static_assert(sizeof(IntArray<1>) == sizeof(int) * 1, "Array size mismatch");
|
/external/antlr/runtime/ObjC/Framework/ |
D | IntArray.m | 2 // IntArray.m 31 #import "IntArray.h" 34 @implementation IntArray implementation 43 + (IntArray *)newArray 45 return [[IntArray alloc] init]; 48 + (IntArray *)newArrayWithLen:(NSUInteger)aLen 50 return [[IntArray alloc] initWithLen:aLen]; 84 NSLog( @"called dealloc in IntArray" ); 92 IntArray *copy;
|
D | IntArray.h | 34 @interface IntArray : NSObject 44 + (IntArray *)newArray; 45 + (IntArray *)newArrayWithLen:(NSUInteger)aLen;
|
D | CommonTreeNodeStream.h | 52 __strong IntArray *calls; 118 @property (retain) IntArray *calls;
|
/external/okio/okio/src/commonMain/kotlin/okio/ |
D | SegmentedByteString.kt | 45 directory: IntArray 49 internal val directory: IntArray
|
/external/dokka/core/testdata/format/ |
D | summarizeSignaturesProperty.kt | 4 class IntArray class 10 val IntArray.foo: Int = 0 constant
|
D | summarizeSignatures.kt | 4 class IntArray class 10 fun IntArray.foo(predicate: (Int) -> Boolean): Boolean = false method
|
D | summarizeSignaturesProperty.md | 9 | [IntArray](-int-array/index.md) | `class IntArray` |
|
D | summarizeSignatures.md | 9 | [IntArray](-int-array/index.md) | `class IntArray` |
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/selects/ |
D | SelectBiasTest.kt | 17 val counter = IntArray(2) in <lambda>() 33 val counter = IntArray(2) in <lambda>()
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/ |
D | ResStringPool.java | 48 private IntArray mEntries; 50 private IntArray mEntryStyles; 79 static class IntArray extends WithOffset { class in ResStringPool 80 IntArray(ByteBuffer buf, int offset) { in IntArray() method in ResStringPool.IntArray 169 mEntries = new IntArray(mHeader.myBuf(), mHeader.myOffset() + mHeader.header.headerSize); in setTo() 256 …mEntryStyles = new IntArray(mEntries.myBuf(), mEntries.myOffset() + mHeader.stringCount * SIZEOF_I… in setTo()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/ |
D | JobTest.kt | 41 val fireCount = IntArray(n) in <lambda>() 59 val fireCount = IntArray(n) in <lambda>() 83 val fireCount = IntArray(n) in <lambda>() 98 val fireCount = IntArray(n) in <lambda>()
|
/external/tensorflow/tensorflow/lite/c/ |
D | common_test.cc | 27 TEST(IntArray, TestIntArrayCreate) { in TEST() argument 34 TEST(IntArray, TestIntArrayCopy) { in TEST() argument 47 TEST(IntArray, TestIntArrayEqual) { in TEST() argument
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonTreeNodeStream.java | 34 import org.antlr.runtime.misc.IntArray; 53 protected IntArray calls; 158 calls = new IntArray(); in push()
|
/external/auto/value/src/it/functional/src/test/java/com/google/auto/value/ |
D | AutoAnnotationTest.java | 416 @interface IntArray { annotation in AutoAnnotationTest 420 @IntArray(ints = {1, 2, 3}) 424 static IntArray newIntArray(IntList ints) { in newIntArray() 441 IntArray actual = newIntArray(intList); in testDerivedPrimitiveCollection() 442 IntArray expected = AnnotatedWithIntArray.class.getAnnotation(IntArray.class); in testDerivedPrimitiveCollection()
|
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/flow/scrabble/ |
D | ShakespearePlaysScrabble.kt | 61 …public val letterScores: IntArray = intArrayOf(1, 3, 3, 2, 1, 4, 2, 4, 1, 8, 5, 1, 3, 1, 1, 3, 10,… 64 public val scrabbleAvailableLetters: IntArray =
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/ |
D | JoinStrTest.kt | 24 val results = IntArray(2) in <lambda>() 57 val results = IntArray(2) in <lambda>()
|
/external/okio/samples/src/jvmMain/kotlin/okio/samples/ |
D | BitmapEncoder.kt | 27 private val pixels: Array<IntArray> in <lambda>() 44 val pixels = Array(1080) { IntArray(1920) } in <lambda>()
|
/external/dokka/core/testdata/javadoc/ |
D | bytearr.kt | 4 fun foo(): IntArray { in foo()
|