Home
last modified time | relevance | path

Searched refs:reflect (Results 1 - 25 of 146) sorted by relevance

123456

/third_party/skia/third_party/externals/tint/tools/src/list/
H A Dlist.go20 "reflect"
48 ElementType() reflect.Type
53 ptr := reflect.ValueOf(s)
54 if ptr.Kind() != reflect.Ptr || ptr.Elem().Kind() != reflect.Slice {
61 func New(elem reflect.Type, count int) List {
62 slice := reflect.SliceOf(elem)
63 return list{reflect.MakeSlice(slice, count, count)}
73 type list struct{ v reflect.Value }
84 l.v.Index(i).Set(reflect
[all...]
H A Dlist_test.go18 "reflect"
34 func (customList) ElementType() reflect.Type { return nil }
39 l := list.New(reflect.TypeOf(0), 3)
112 if !reflect.DeepEqual(slice, []int{0, 10, 20, 10, 20, 0}) {
126 if !reflect.DeepEqual(sliceA, []int{10, 3, 4, 5, 50, 60}) {
137 if !reflect.DeepEqual(sliceA, []int{10, 30, 40, 50, 50, 60}) {
171 if !reflect.DeepEqual(slice, []int{50, 10, 90, 10, 60}) {
196 if !reflect.DeepEqual(slice, []int{1, 2, 3, 9, 8, 7}) {
210 if !reflect.DeepEqual(sliceA, []int{1, 2, 3, 9, 8, 7}) {
213 if !reflect
[all...]
/third_party/node/lib/internal/modules/esm/
H A Dcreate_dynamic_module.js46 * @param {(reflect: DynamicModuleReflect) => void} evaluate - The function to evaluate the module.
50 * @property {(cb: (reflect: DynamicModuleReflect) => void) => void} onReady - Callback to evaluate the module.
64 const reflect = {
70 reflect.imports = { __proto__: null };
76 meta.exports = reflect.exports;
77 if (reflect.imports) {
78 meta.imports = reflect.imports;
81 evaluate(reflect);
82 reflect.onReady = (cb) => cb(reflect);
[all...]
H A Dtranslators.js390 return createDynamicModule(imports, exports, url, (reflect) => {
391 const { exports } = new WebAssembly.Instance(compiled, reflect.imports);
393 reflect.exports[expt].set(exports[expt]);
/third_party/glslang/Test/
H A Druntests58 run -l -q -C --reflect-strict-array-suffix --reflect-basic-array-suffix --reflect-intermediate-io --reflect-separate-buffers --reflect-all-block-variables --reflect-unwrap-io-blocks --reflect-all-io-variables --reflect-shared-std140-ubo --reflect-shared-std140-ssbo reflection.options.vert > $TARGETDIR/reflection.options.vert.out
62 run -l -q -C --reflect
[all...]
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_structs.hpp103 reflect() const VULKAN_HPP_NOEXCEPT
115 return this->reflect() == rhs.reflect();
304 reflect() const VULKAN_HPP_NOEXCEPT
401 reflect() const VULKAN_HPP_NOEXCEPT
495 reflect() const VULKAN_HPP_NOEXCEPT
659 reflect() const VULKAN_HPP_NOEXCEPT
921 reflect() const VULKAN_HPP_NOEXCEPT
1022 reflect() const VULKAN_HPP_NOEXCEPT
1034 return this->reflect()
[all...]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DDeprecatedFieldTest.java34 import java.lang.reflect.AnnotatedElement;
35 import java.lang.reflect.Method;
72 java.lang.reflect.Field enumValue = oneofCase.getField(name); in testDeprecatedFieldInOneof()
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DDeprecatedAPIChecker.java13 import java.lang.reflect.Constructor;
14 import java.lang.reflect.Field;
15 import java.lang.reflect.GenericArrayType;
16 import java.lang.reflect.Method;
17 import java.lang.reflect.Modifier;
18 import java.lang.reflect.ParameterizedType;
19 import java.lang.reflect.Type;
20 import java.lang.reflect.TypeVariable;
21 import java.lang.reflect.WildcardType;
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/gen/
H A Dgenerate.go20 "reflect"
171 rty := reflect.TypeOf(ty)
173 ty := reflect.TypeOf(v)
174 return ty == rty || ty == reflect.PtrTo(rty)
180 s := reflect.ValueOf(slice)
190 s := reflect.ValueOf(slice)
/third_party/jerryscript/tests/jerry/es2015/
H A Dfunction-new-target.js22 var reflect = Reflect.construct(Function, ['a','b','return a+b'], func); variable
23 assert(Object.getPrototypeOf(reflect) == func.prototype);
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
H A DDeprecatedFieldTest.java38 import java.lang.reflect.AnnotatedElement;
39 import java.lang.reflect.Method;
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/
H A DAudioLatencyTuner.java23 import java.lang.reflect.Field;
24 import java.lang.reflect.InvocationTargetException;
25 import java.lang.reflect.Method;
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DFieldType.java33 import java.lang.reflect.Field;
34 import java.lang.reflect.ParameterizedType;
35 import java.lang.reflect.Type;
36 import java.lang.reflect.TypeVariable;
H A DOneofInfo.java33 import java.lang.reflect.Field;
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/
H A DLauncher.java22 import java.lang.reflect.InvocationTargetException;
23 import java.lang.reflect.Method;
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
H A DNamePrepTransform.java13 import java.lang.reflect.InvocationTargetException;
14 import java.lang.reflect.Method;
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DNamePrepTransform.java12 import java.lang.reflect.InvocationTargetException;
13 import java.lang.reflect.Method;
/kernel/linux/linux-5.10/arch/mips/include/asm/octeon/
H A Dcvmx-pip.h455 * @reflect: Reflect
460 uint64_t invert_result, uint64_t reflect, in cvmx_pip_config_crc()
469 config.s.reflect = reflect; in cvmx_pip_config_crc()
459 cvmx_pip_config_crc(uint64_t interface, uint64_t invert_result, uint64_t reflect, uint32_t initialization_vector) cvmx_pip_config_crc() argument
/kernel/linux/linux-6.6/arch/mips/include/asm/octeon/
H A Dcvmx-pip.h455 * @reflect: Reflect
460 uint64_t invert_result, uint64_t reflect, in cvmx_pip_config_crc()
469 config.s.reflect = reflect; in cvmx_pip_config_crc()
459 cvmx_pip_config_crc(uint64_t interface, uint64_t invert_result, uint64_t reflect, uint32_t initialization_vector) cvmx_pip_config_crc() argument
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
H A DPropertiesTest.java16 import java.lang.reflect.Field;
17 import java.lang.reflect.InvocationTargetException;
18 import java.lang.reflect.Method;
19 import java.lang.reflect.Modifier;
20 // TODO: enable in Java 8: import java.lang.reflect.Parameter;
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
H A DPropertiesTest.java15 import java.lang.reflect.Field;
16 import java.lang.reflect.InvocationTargetException;
17 import java.lang.reflect.Method;
18 import java.lang.reflect.Modifier;
19 // TODO: enable in Java 8: import java.lang.reflect.Parameter;
/third_party/skia/third_party/externals/dawn/src/dawn_node/tools/src/cmd/idlgen/
H A Dmain.go25 "reflect"
453 types := make([]reflect.Type, len(prototypes))
455 types[i] = reflect.TypeOf(p)
458 ty := reflect.TypeOf(v)
460 if ty == rty || ty == reflect.PtrTo(rty) {
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DJavaTimeZone.java13 import java.lang.reflect.InvocationTargetException;
14 import java.lang.reflect.Method;
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetICU.java12 import java.lang.reflect.Constructor;
13 import java.lang.reflect.InvocationTargetException;
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
H A DTestBoilerplate.java12 import java.lang.reflect.Constructor;
13 import java.lang.reflect.Method;

Completed in 31 milliseconds

123456