/external/testng/src/main/java/org/testng/internal/annotations/ |
BaseAnnotation.java | 3 import java.lang.reflect.Constructor; 4 import java.lang.reflect.Method;
|
/external/testng/src/test/java/test/annotationtransformer/ |
AnnotationTransformerInTestngXml.java | 7 import java.lang.reflect.Constructor; 8 import java.lang.reflect.Method;
|
/prebuilts/go/darwin-x86/src/cmd/gofmt/testdata/ |
rewrite2.golden | 10 // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
|
rewrite2.input | 10 // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
|
/prebuilts/go/darwin-x86/src/cmd/vet/testdata/ |
structtag.go | 10 A int "hello" // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag pair" 11 B int "\tx:\"y\"" // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag key" 12 C int "x:\"y\"\tx:\"y\"" // ERROR "not compatible with reflect.StructTag.Get" 13 D int "x:`y`" // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag value" 14 E int "ct\brl:\"char\"" // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag pair" 15 F int `:"emptykey"` // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag key" 16 G int `x:"noEndQuote` // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag value" 17 H int `x:"trunc\x0"` // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag value"
|
/prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/testdata/ |
imports.gox | 6 init imports imports..import 7 math math..import 1 runtime runtime..import 1 strconv strconv..import 2 io io..import 3 reflect reflect..import 3 syscall syscall..import 3 time time..import 4 os os..import 5 fmt fmt..import 6;
|
/prebuilts/go/linux-x86/src/cmd/gofmt/testdata/ |
rewrite2.golden | 10 // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
|
rewrite2.input | 10 // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
|
/prebuilts/go/linux-x86/src/cmd/vet/testdata/ |
structtag.go | 10 A int "hello" // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag pair" 11 B int "\tx:\"y\"" // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag key" 12 C int "x:\"y\"\tx:\"y\"" // ERROR "not compatible with reflect.StructTag.Get" 13 D int "x:`y`" // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag value" 14 E int "ct\brl:\"char\"" // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag pair" 15 F int `:"emptykey"` // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag key" 16 G int `x:"noEndQuote` // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag value" 17 H int `x:"trunc\x0"` // ERROR "not compatible with reflect.StructTag.Get: bad syntax for struct tag value"
|
/prebuilts/go/linux-x86/src/go/internal/gccgoimporter/testdata/ |
imports.gox | 6 init imports imports..import 7 math math..import 1 runtime runtime..import 1 strconv strconv..import 2 io io..import 3 reflect reflect..import 3 syscall syscall..import 3 time time..import 4 os os..import 5 fmt fmt..import 6;
|
/external/junit/src/org/junit/runners/model/ |
NoGenericTypeParametersValidator.java | 3 import java.lang.reflect.GenericArrayType; 4 import java.lang.reflect.Method; 5 import java.lang.reflect.ParameterizedType; 6 import java.lang.reflect.Type; 7 import java.lang.reflect.TypeVariable; 8 import java.lang.reflect.WildcardType;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
UndeclaredThrowableExceptionTests.java | 1 package org.apache.harmony.tests.java.lang.reflect; 6 import java.lang.reflect.UndeclaredThrowableException; 13 * java.lang.reflect.UndeclaredThrowableException#getCause() 22 * java.lang.reflect.UndeclaredThrowableException#getUndeclaredThrowable() 32 * java.lang.reflect.UndeclaredThrowableException#UndeclaredThrowableException(java.lang.Throwable) 43 * java.lang.reflect.UndeclaredThrowableException#UndeclaredThrowableException(java.lang.Throwable, java.lang.String)
|
/external/v8/test/mjsunit/es6/ |
proxies-construct.js | 44 assertSame(Target.prototype, Reflect.getPrototypeOf(instance)); 51 assertSame(Target.prototype, Reflect.getPrototypeOf(instance)); 78 return Reflect.construct(target, args, new_target); 89 var instance2 = Reflect.construct(proxy, ['a1', 'b1'], Array); 110 assertSame(Array.prototype, Reflect.getPrototypeOf(result)); 115 assertSame(Array.prototype, Reflect.getPrototypeOf(otherResult)); 121 assertSame(Array.prototype, Reflect.getPrototypeOf(otherResult2)); 139 // realm of the Reflect.construct function. 140 var result = Reflect.construct(proxy, argsRealm1); 141 assertSame(Array.prototype, Reflect.getPrototypeOf(result)) [all...] |
proxies-set-prototype-of.js | 83 Reflect.setPrototypeOf(proxy2, prototype); 84 assertSame(prototype, Reflect.getPrototypeOf(target)); 87 Reflect.setPrototypeOf(target, value); 91 Reflect.setPrototypeOf(proxy2, prototype); 92 assertSame(prototype, Reflect.getPrototypeOf(target)); 102 Reflect.setPrototypeOf(proxy2, prototype); 104 assertSame(prototype, Reflect.getPrototypeOf(target)); 108 Reflect.preventExtensions(target); 109 assertThrows(() => {Reflect.setPrototypeOf(proxy2, [4])}, TypeError); 111 assertEquals([3], Reflect.getPrototypeOf(target)) [all...] |
reflect-own-keys.js | 33 var keys = Reflect.ownKeys(obj); 39 var keys = Reflect.ownKeys(obj); 47 var keys = Reflect.ownKeys(obj) 53 var keys = Reflect.ownKeys([1, 2]); 64 keys = Reflect.ownKeys(obj); 71 keys = Reflect.ownKeys(obj); 78 keys = Reflect.ownKeys({0: 'foo', bar: 'baz'}); 85 assertThrows(function() { Reflect.ownKeys(4) }, TypeError); 86 assertThrows(function() { Reflect.ownKeys("foo") }, TypeError); 87 assertThrows(function() { Reflect.ownKeys(true) }, TypeError) [all...] |
/prebuilts/go/darwin-x86/src/encoding/gob/ |
encode.go | 12 "reflect" 17 type encHelper func(state *encoderState, v reflect.Value) bool 121 type encOp func(i *encInstr, state *encoderState, v reflect.Value) 150 func encIndirect(pv reflect.Value, indir int) reflect.Value { 161 func encBool(i *encInstr, state *encoderState, v reflect.Value) { 174 func encInt(i *encInstr, state *encoderState, v reflect.Value) { 183 func encUint(i *encInstr, state *encoderState, v reflect.Value) { 209 func encFloat(i *encInstr, state *encoderState, v reflect.Value) { 220 func encComplex(i *encInstr, state *encoderState, v reflect.Value) [all...] |
/prebuilts/go/linux-x86/src/encoding/gob/ |
encode.go | 12 "reflect" 17 type encHelper func(state *encoderState, v reflect.Value) bool 121 type encOp func(i *encInstr, state *encoderState, v reflect.Value) 150 func encIndirect(pv reflect.Value, indir int) reflect.Value { 161 func encBool(i *encInstr, state *encoderState, v reflect.Value) { 174 func encInt(i *encInstr, state *encoderState, v reflect.Value) { 183 func encUint(i *encInstr, state *encoderState, v reflect.Value) { 209 func encFloat(i *encInstr, state *encoderState, v reflect.Value) { 220 func encComplex(i *encInstr, state *encoderState, v reflect.Value) [all...] |
/external/llvm/test/CodeGen/NVPTX/ |
nvvm-reflect.ll | 1 ; RUN: opt < %s -S -nvvm-reflect -nvvm-reflect-list USE_MUL=0 -O2 | FileCheck %s --check-prefix=USE_MUL_0 2 ; RUN: opt < %s -S -nvvm-reflect -nvvm-reflect-list USE_MUL=1 -O2 | FileCheck %s --check-prefix=USE_MUL_1 15 %reflect = tail call i32 @__nvvm_reflect(i8* %ptr) 16 %cmp = icmp ugt i32 %reflect, 0 36 declare i32 @llvm.nvvm.reflect.p0i8(i8*) 41 ; USE_MUL_0-NOT: call i32 @llvm.nvvm.reflect 43 ; USE_MUL_1-NOT: call i32 @llvm.nvvm.reflect 46 %reflect = tail call i32 @llvm.nvvm.reflect.p0i8(i8* %ptr [all...] |
/prebuilts/go/darwin-x86/doc/progs/ |
interface2.go | 11 "reflect" 16 fmt.Println("type:", reflect.TypeOf(x)) 26 v := reflect.ValueOf(x) 28 fmt.Println("kind is float64:", v.Kind() == reflect.Float64) 36 v := reflect.ValueOf(x) 38 fmt.Println("kind is uint8: ", v.Kind() == reflect.Uint8) // true. 47 v := reflect.ValueOf(x) 64 v := reflect.ValueOf(x) 72 v := reflect.ValueOf(x) 80 v := reflect.ValueOf(x [all...] |
/prebuilts/go/linux-x86/doc/progs/ |
interface2.go | 11 "reflect" 16 fmt.Println("type:", reflect.TypeOf(x)) 26 v := reflect.ValueOf(x) 28 fmt.Println("kind is float64:", v.Kind() == reflect.Float64) 36 v := reflect.ValueOf(x) 38 fmt.Println("kind is uint8: ", v.Kind() == reflect.Uint8) // true. 47 v := reflect.ValueOf(x) 64 v := reflect.ValueOf(x) 72 v := reflect.ValueOf(x) 80 v := reflect.ValueOf(x [all...] |
/prebuilts/go/darwin-x86/pkg/darwin_amd64/net/rpc/ |
jsonrpc.a | 46 import reflect "reflect" // indirect 47 type @"reflect".typeAlg struct { @"reflect".hash func(? @"unsafe".Pointer, ? uintptr) (? uintptr); @"reflect".equal func(? @"unsafe".Pointer, ? @"unsafe".Pointer) (? bool) } 48 type @"reflect".method struct { @"reflect".name *string; @"reflect".pkgPath *string; @"reflect".mtyp *@"reflect".rtype; @"reflect".typ *@"reflect".rtype; @"reflect".ifn @"unsafe".Pointer; @"reflect".tfn @"unsaf (…) [all...] |
/prebuilts/go/darwin-x86/pkg/darwin_amd64_race/net/rpc/ |
jsonrpc.a | 46 import reflect "reflect" // indirect 47 type @"reflect".typeAlg struct { @"reflect".hash func(? @"unsafe".Pointer, ? uintptr) (? uintptr); @"reflect".equal func(? @"unsafe".Pointer, ? @"unsafe".Pointer) (? bool) } 48 type @"reflect".method struct { @"reflect".name *string; @"reflect".pkgPath *string; @"reflect".mtyp *@"reflect".rtype; @"reflect".typ *@"reflect".rtype; @"reflect".ifn @"unsafe".Pointer; @"reflect".tfn @"unsaf (…) [all...] |
/prebuilts/go/linux-x86/pkg/linux_amd64/net/rpc/ |
jsonrpc.a | 46 import reflect "reflect" // indirect 47 type @"reflect".typeAlg struct { @"reflect".hash func(? @"unsafe".Pointer, ? uintptr) (? uintptr); @"reflect".equal func(? @"unsafe".Pointer, ? @"unsafe".Pointer) (? bool) } 48 type @"reflect".method struct { @"reflect".name *string; @"reflect".pkgPath *string; @"reflect".mtyp *@"reflect".rtype; @"reflect".typ *@"reflect".rtype; @"reflect".ifn @"unsafe".Pointer; @"reflect".tfn @"unsaf (…) [all...] |
/prebuilts/go/linux-x86/pkg/linux_amd64_race/net/rpc/ |
jsonrpc.a | 46 import reflect "reflect" // indirect 47 type @"reflect".typeAlg struct { @"reflect".hash func(? @"unsafe".Pointer, ? uintptr) (? uintptr); @"reflect".equal func(? @"unsafe".Pointer, ? @"unsafe".Pointer) (? bool) } 48 type @"reflect".method struct { @"reflect".name *string; @"reflect".pkgPath *string; @"reflect".mtyp *@"reflect".rtype; @"reflect".typ *@"reflect".rtype; @"reflect".ifn @"unsafe".Pointer; @"reflect".tfn @"unsaf (…) [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/reflect/ |
ArrayReflection.java | 17 package com.badlogic.gdx.utils.reflect;
25 return java.lang.reflect.Array.newInstance(c, size);
30 return java.lang.reflect.Array.getLength(array);
35 return java.lang.reflect.Array.get(array, index);
40 java.lang.reflect.Array.set(array, index, value);
|