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

1 2 3 4 5

  /external/deqp/scripts/egl/
__init__.py 28 import enums namespace
40 enums.gen(iface)
enums.py 32 writeInlFile(os.path.join(EGL_WRAPPER_DIR, "eglwEnums.inl"), indentLines(map(enumDefinition, iface.enums)))
  /external/v8/src/base/
flags-unittest.cc 86 typedef Flags<Enum, uint32_t> Enums;
90 DEFINE_OPERATORS_FOR_FLAGS(Foo::Enums)
96 Foo::Enums enums; local
97 enums |= Foo::kEnum1;
98 enums |= Foo::kEnum2;
99 EXPECT_TRUE(enums & Foo::kEnum1);
100 EXPECT_TRUE(enums & Foo::kEnum2);
  /external/deqp/scripts/opengl/
gen_enums.py 32 src = indentLines(map(enumDefinition, iface.enums))
  /hardware/ti/omap4xxx/libtiutils/
Android.mk 26 LOCAL_CFLAGS += -fno-short-enums
  /device/asus/flo/camera/QCamera2/HAL/test/
Android.mk 29 LOCAL_CFLAGS += -Wall -fno-short-enums -O0
  /device/lge/hammerhead/camera/QCamera2/HAL/test/
Android.mk 29 LOCAL_CFLAGS += -Wall -fno-short-enums -O0
  /external/mesa3d/src/mesa/main/
shaderobj.h 124 static const GLenum enums[MESA_SHADER_TYPES] = { local
132 return enums[i];
  /hardware/qcom/gps/msm8960/core/
Android.mk 25 -fno-short-enums \
  /hardware/ti/omap4xxx/test/CameraHal/
Android.mk 31 LOCAL_CFLAGS += -Wall -fno-short-enums -O0 -g -D___ANDROID___
  /libcore/luni/src/main/java/java/util/
MiniEnumSet.java 21 * A concrete EnumSet for enums with 64 or fewer elements.
29 private final E[] enums; field in class:MiniEnumSet
37 * @param enums non-null; pre-populated array of constants in ordinal
40 MiniEnumSet(Class<E> elementType, E[] enums) {
42 this.enums = enums;
73 last = enums[ordinal];
247 if (enums.length != 0) {
249 bits &= (-1L >>> (MAX_ELEMENTS - enums.length));
250 size = enums.length - size
    [all...]
HugeEnumSet.java 21 * A concrete EnumSet for enums with more than 64 elements.
28 final private E[] enums; field in class:HugeEnumSet
38 * @param enums non-null; pre-populated array of constants in ordinal
41 HugeEnumSet(Class<E> elementType, E[] enums) {
43 this.enums = enums;
44 bits = new long[(enums.length + BIT_IN_LONG - 1) / BIT_IN_LONG];
102 last = enums[ordinal];
181 b &= -1L >>> (BIT_IN_LONG - (enums.length % BIT_IN_LONG));
  /external/libvpx/libvpx/
args.h 39 const struct arg_enum_list *enums; member in struct:arg_def
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
args.h 39 const struct arg_enum_list *enums; member in struct:arg_def
  /hardware/qcom/gps/loc_api/libloc_api_50001/
Android.mk 38 -fno-short-enums \
86 -fno-short-enums \
  /hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
Android.mk 38 -fno-short-enums \
83 -fno-short-enums \
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
Android.mk 38 -fno-short-enums \
83 -fno-short-enums \
  /hardware/qcom/gps/msm8974/loc_api/libloc_api_50001/
Android.mk 38 -fno-short-enums \
83 -fno-short-enums \
  /hardware/ti/omap4-aah/libtiutils/
Android.mk 32 LOCAL_CFLAGS += -fno-short-enums $(ANDROID_API_CFLAGS)
  /hardware/qcom/gps/core/
Android.mk 34 -fno-short-enums \
  /hardware/qcom/gps/msm8084/core/
Android.mk 28 -fno-short-enums \
  /hardware/qcom/gps/msm8960/utils/
Android.mk 24 -fno-short-enums \
  /hardware/qcom/gps/msm8974/core/
Android.mk 28 -fno-short-enums \
  /external/deqp/scripts/khr_util/
registry.py 46 class Enums(Located):
49 enums = None variable in class:Enums
183 self.enums = EnumIndex(eRegistry.findall('enums/enum'))
184 for eEnum in self.enums:
239 self.enums = set()
256 modify(self.enums, enumName)
303 return parseEnum(registry.enums[enumName, api])
348 # Missing enums are often from exotic extensions. Don't create dummy entries,
350 enums=NameIndex(enums[name] for name in eGroup.xpath('enum/@name'
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_size.py 39 # "enums" is a set of lists. The element in the set is the
45 self.enums = {}
48 # is a list of index to "enums" that have that number of
57 # Fill self.count and self.enums using the dictionary of enums
75 raise RuntimeError("Not all enums for %s have the same mode." % (func_name))
79 if self.enums.has_key( e.value ):
80 if e.name not in self.enums[ e.value ]:
81 self.enums[ e.value ].append( e )
86 self.enums[ e.value ] = [ e
    [all...]

Completed in 512 milliseconds

1 2 3 4 5