HomeSort by relevance Sort by last modified time
    Searched full:reflect (Results 51 - 75 of 5891) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/text/template/
exec.go 11 "reflect"
31 value reflect.Value
35 func (s *state) push(name string, value reflect.Value) {
50 func (s *state) setVar(n int, value reflect.Value) {
55 func (s *state) varValue(name string) reflect.Value {
65 var zero reflect.Value
134 value := reflect.ValueOf(data)
174 func (s *state) walk(dot reflect.Value, node parse.Node) {
207 func (s *state) walkIfOrWith(typ parse.NodeType, dot reflect.Value, pipe *parse.PipeNode, list, elseList *parse.ListNode) {
227 func isTrue(val reflect.Value) (truth, ok bool)
    [all...]
  /build/blueprint/proptools/
typeequal.go 17 import "reflect"
23 return typeEqual(reflect.ValueOf(s1), reflect.ValueOf(s2))
26 func typeEqual(v1, v2 reflect.Value) bool {
31 if v1.Kind() == reflect.Interface {
45 if v1.Kind() == reflect.Ptr {
46 if v1.Type().Elem().Kind() != reflect.Struct {
59 if v1.Kind() != reflect.Struct {
68 case reflect.Interface, reflect.Ptr, reflect.Struct
    [all...]
  /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)
  /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...]
  /external/v8/test/mjsunit/harmony/
reflect-own-keys.js 30 // Flags: --harmony-reflect
35 var keys = Reflect.ownKeys(obj);
41 var keys = Reflect.ownKeys(obj);
49 var keys = Reflect.ownKeys(obj)
55 var keys = Reflect.ownKeys([1, 2]);
66 keys = Reflect.ownKeys(obj);
73 keys = Reflect.ownKeys(obj);
80 keys = Reflect.ownKeys({0: 'foo', bar: 'baz'});
87 assertThrows(function() { Reflect.ownKeys(4) }, TypeError);
88 assertThrows(function() { Reflect.ownKeys("foo") }, TypeError)
    [all...]
proxies-set-prototype-of.js 5 // Flags: --harmony-proxies --harmony-reflect
85 Reflect.setPrototypeOf(proxy2, prototype);
86 assertSame(prototype, Reflect.getPrototypeOf(target));
89 Reflect.setPrototypeOf(target, value);
93 Reflect.setPrototypeOf(proxy2, prototype);
94 assertSame(prototype, Reflect.getPrototypeOf(target));
104 Reflect.setPrototypeOf(proxy2, prototype);
106 assertSame(prototype, Reflect.getPrototypeOf(target));
110 Reflect.preventExtensions(target);
111 assertThrows(() => {Reflect.setPrototypeOf(proxy2, [4])}, TypeError)
    [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...]

Completed in 1831 milliseconds

1 23 4 5 6 7 8 91011>>