HomeSort by relevance Sort by last modified time
    Searched refs:light (Results 1 - 25 of 490) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/interfaces/tests/extension/light/2.0/
IExtLight.hal 17 // Would normally be 'vendor.example.extension.light@2.0' however, this is
20 package android.hardware.tests.extension.light@2.0;
22 import android.hardware.light@2.0;
24 interface IExtLight extends android.hardware.light@2.0::ILight {
29 * @param type logical light to set
30 * @param state describes what the light should look like.
types.hal 17 package android.hardware.tests.extension.light@2.0;
19 import android.hardware.light@2.0;
  /hardware/interfaces/light/2.0/default/
service.cpp 17 #define LOG_TAG "android.hardware.light@2.0-service"
19 #include <android/hardware/light/2.0/ILight.h>
22 using android::hardware::light::V2_0::ILight;
Android.mk 4 LOCAL_MODULE := android.hardware.light@2.0-impl
8 Light.cpp \
19 android.hardware.light@2.0 \
26 LOCAL_MODULE := android.hardware.light@2.0-service
27 LOCAL_INIT_RC := android.hardware.light@2.0-service.rc
42 android.hardware.light@2.0 \
Light.h 19 #include <android/hardware/light/2.0/ILight.h>
28 namespace light { namespace in namespace:android::hardware
32 using ::android::hardware::light::V2_0::ILight;
33 using ::android::hardware::light::V2_0::LightState;
34 using ::android::hardware::light::V2_0::Status;
35 using ::android::hardware::light::V2_0::Type;
42 struct Light : public ILight {
43 Light(std::map<Type, light_device_t*> &&lights);
45 // Methods from ::android::hardware::light::V2_0::ILight follow.
57 } // namespace light
    [all...]
  /test/vts/script/
run-local.sh 17 PYTHONPATH=$PYTHONPATH:.. python -m vts.testcases.host.light.conventional.SampleLightTest
  /external/clang/test/Index/
print-bitwidth.c 10 unsigned light : 1; member in struct:X
22 // CHECK: FieldDecl=light:10:12 (Definition) bitwidth=1
  /test/vts/testcases/host/light/conventional/
SampleLightTest.py 30 target_type="light",
34 target_package="hal.conventional.light")
35 self.dut.hal.light.OpenConventionalHal("backlight")
40 arg = self.dut.hal.light.light_state_t(
42 flashMode=self.dut.hal.light.LIGHT_FLASH_HARDWARE,
45 brightnessMode=self.dut.hal.light.BRIGHTNESS_MODE_USER)
46 self.dut.hal.light.set_light(None, arg)
50 arg = self.dut.hal.light.light_state_t(
52 flashMode=self.dut.hal.light.LIGHT_FLASH_HARDWARE,
55 brightnessMode=self.dut.hal.light.BRIGHTNESS_MODE_USER
    [all...]
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/host/light/conventional
  /hardware/interfaces/tests/extension/light/2.0/default/
Android.mk 4 LOCAL_MODULE := android.hardware.tests.extension.light@2.0-service
5 LOCAL_INIT_RC := android.hardware.tests.extension.light@2.0-service.rc
9 Light.cpp \
16 android.hardware.light@2.0 \
17 android.hardware.tests.extension.light@2.0 \
Light.h 19 #include <android/hardware/tests/extension/light/2.0/IExtLight.h>
27 namespace light { namespace in namespace:android::hardware::tests::extension
31 using ::android::hardware::tests::extension::light::V2_0::ExtLightState;
32 using ::android::hardware::tests::extension::light::V2_0::IExtLight;
33 using ::android::hardware::light::V2_0::ILight;
34 using ::android::hardware::light::V2_0::LightState;
35 using ::android::hardware::light::V2_0::Status;
36 using ::android::hardware::light::V2_0::Type;
43 struct Light : public IExtLight {
44 // Methods from ::android::hardware::light::V2_0::ILight follow
    [all...]
service.cpp 16 #define LOG_TAG "android.hardware.tests.extension.light@2.0-service"
21 #include "Light.h"
27 using android::hardware::light::V2_0::ILight;
28 using android::hardware::tests::extension::light::V2_0::implementation::Light;
31 android::sp<ILight> service = new Light();
  /external/skia/src/effects/
SkEmbossMaskFilter.cpp 16 sk_sp<SkMaskFilter> SkEmbossMaskFilter::Make(SkScalar blurSigma, const Light& light) {
17 return sk_sp<SkMaskFilter>(new SkEmbossMaskFilter(blurSigma, light));
27 SkEmbossMaskFilter::Light light; local
29 memcpy(light.fDirection, direction, sizeof(light.fDirection));
31 light.fAmbient = SkUnitScalarClampToByte(ambient);
34 light.fSpecular = static_cast<U8CPU>(SkScalarPin(specular, 0, 16) * kSpecularMultiplier + 0.5);
36 return SkEmbossMaskFilter::Make(blurSigma, light);
91 Light light = fLight; local
111 Light light; local
    [all...]
  /hardware/interfaces/light/2.0/vts/functional/
VtsHalLightV2_0TargetTest.cpp 20 #include <android/hardware/light/2.0/ILight.h>
21 #include <android/hardware/light/2.0/types.h>
26 using ::android::hardware::light::V2_0::Brightness;
27 using ::android::hardware::light::V2_0::Flash;
28 using ::android::hardware::light::V2_0::ILight;
29 using ::android::hardware::light::V2_0::LightState;
30 using ::android::hardware::light::V2_0::Status;
31 using ::android::hardware::light::V2_0::Type;
78 light = ::testing::VtsHalHidlTargetTestBase::getService<ILight>();
80 ASSERT_NE(light, nullptr)
88 sp<ILight> light; member in class:LightHidlTest
    [all...]
  /external/skia/src/core/
SkLights.cpp 50 Light light = Light::MakePoint(color, dirOrPos, intensity, isRadial); local
51 light.setShadowMap(depthMap);
52 builder.add(light);
54 Light light = Light::MakeDirectional(color, dirOrPos, isRadial); local
55 light.setShadowMap(depthMap);
56 builder.add(light);
90 const Light& light = this->light(l); local
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_lights_LightsService.cpp 23 #include <android/hardware/light/2.0/ILight.h>
24 #include <android/hardware/light/2.0/types.h>
33 using Brightness = ::android::hardware::light::V2_0::Brightness;
34 using Flash = ::android::hardware::light::V2_0::Flash;
35 using ILight = ::android::hardware::light::V2_0::ILight;
36 using LightState = ::android::hardware::light::V2_0::LightState;
37 using Status = ::android::hardware::light::V2_0::Status;
38 using Type = ::android::hardware::light::V2_0::Type;
74 static bool validate(jint light, jint flash, jint brightness) {
77 if (light < 0 || light >= static_cast<jint>(Type::COUNT))
    [all...]
  /test/vts/testcases/fuzz/hal_light/conventional/
LightFuzzTest.py 35 target_type="light",
39 target_package="hal.conventional.light")
40 self.dut.hal.light.OpenConventionalHal("backlight")
42 self.dut.hal.light.LIGHT_ID_BACKLIGHT,
43 self.dut.hal.light.LIGHT_ID_NOTIFICATIONS,
44 self.dut.hal.light.LIGHT_ID_ATTENTION
48 # self.dut.hal.light.LIGHT_ID_KEYBOARD
49 # self.dut.hal.light.LIGHT_ID_BUTTONS
50 # self.dut.hal.light.LIGHT_ID_BATTERY
51 # self.dut.hal.light.LIGHT_ID_BLUETOOT
    [all...]
  /test/vts/testcases/fuzz/hal_light/conventional_standalone/
StandaloneLightFuzzTest.py 37 target_type="light",
41 target_package="hal.conventional.light")
42 self.dut.hal.light.OpenConventionalHal("backlight")
44 self.dut.hal.light.LIGHT_ID_BACKLIGHT,
45 self.dut.hal.light.LIGHT_ID_NOTIFICATIONS,
46 self.dut.hal.light.LIGHT_ID_ATTENTION
54 # self.dut.hal.light.LIGHT_ID_KEYBOARD
55 # self.dut.hal.light.LIGHT_ID_BUTTONS
56 # self.dut.hal.light.LIGHT_ID_BATTERY
57 # self.dut.hal.light.LIGHT_ID_BLUETOOT
    [all...]
  /test/vts-testcase/hal/light/V2_0/target/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/light/V2_0/target
  /test/vts-testcase/hal/light/V2_0/target_profiling/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/light/V2_0/target_profiling
  /test/vts-testcase/hal/light/V2_0/target_replay/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/light/V2_0/target_replay
  /cts/tests/tests/systemui/src/android/systemui/cts/
LightBarActivity.java 34 private void setLightBar(boolean light, int systemUiFlag) {
36 if (light) {
  /hardware/interfaces/light/2.0/
ILight.hal 17 package android.hardware.light@2.0;
24 * @param type logical light to set
25 * @param state describes what the light should look like.
  /external/mesa3d/src/mesa/tnl/
t_vb_lighttmp.h 52 GLfloat (*base)[3] = ctx->Light._BaseColor;
76 sumA[0] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_DIFFUSE][3];
81 sumA[1] = ctx->Light.Material.Attrib[MAT_ATTRIB_BACK_DIFFUSE][3];
94 sumA[0] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_DIFFUSE][3];
96 sumA[1] = ctx->Light.Material.Attrib[MAT_ATTRIB_BACK_DIFFUSE][3];
108 /* Add contribution from each enabled light source */
109 mask = ctx->Light._EnabledLights;
112 struct gl_light *light = &ctx->Light.Light[l] local
291 struct gl_light *light = &ctx->Light.Light[l]; local
426 const struct gl_light *light = local
585 const struct gl_light *light = &ctx->Light.Light[l]; local
    [all...]
  /external/mesa3d/src/mesa/main/
light.c 32 #include "light.h"
47 if (ctx->Light.ShadeModel == mode)
56 ctx->Light.ShadeModel = mode;
85 if (ctx->Light.ProvokingVertex == mode)
89 ctx->Light.ProvokingVertex = mode;
95 * per-light state.
103 struct gl_light *light; local
106 light = &ctx->Light.Light[lnum]
628 struct gl_light *light = &ctx->Light.Light[i]; local
638 struct gl_light *light = &ctx->Light.Light[i]; local
662 struct gl_light *light = &ctx->Light.Light[i]; local
672 struct gl_light *light = &ctx->Light.Light[i]; local
683 struct gl_light *light = &ctx->Light.Light[i]; local
693 struct gl_light *light = &ctx->Light.Light[i]; local
893 struct gl_light *light = &ctx->Light.Light[i]; local
964 struct gl_light *light = &ctx->Light.Light[i]; local
    [all...]

Completed in 353 milliseconds

1 2 3 4 5 6 7 8 91011>>