/frameworks/rs/script_api/ |
D | rs_math.spec | 168 attrib: const 182 attrib: const 196 attrib: const 205 attrib: const 219 attrib: const 228 attrib: const 244 attrib: const 253 attrib: const 267 attrib: const 276 attrib: const [all …]
|
D | rs_vector_math.spec | 39 attrib: const 53 attrib: const 64 attrib: const 80 attrib: const 91 attrib: const 105 attrib: const 116 attrib: const 135 attrib: const 153 attrib: const 174 attrib: const [all …]
|
D | rs_convert.spec | 26 attrib: const 48 attrib: const 58 attrib: const 68 attrib: const 78 attrib: const 88 attrib: const 97 attrib: const 118 attrib: const 128 attrib: const 135 attrib: const [all …]
|
D | rs_for_each.spec | 180 attrib: = 191 attrib: =
|
/frameworks/base/media/mca/filterfw/native/core/ |
D | shader_program.cpp | 124 const VertexAttrib& attrib = iter->second; in ~ShaderProgram() local 125 if (attrib.owned_data) in ~ShaderProgram() 126 delete[] attrib.owned_data; in ~ShaderProgram() 955 VertexAttrib attrib; in SetAttributeValues() local 956 attrib.is_const = false; in SetAttributeValues() 957 attrib.index = var; in SetAttributeValues() 958 attrib.components = components; in SetAttributeValues() 959 attrib.normalized = normalize; in SetAttributeValues() 960 attrib.stride = stride; in SetAttributeValues() 961 attrib.type = type; in SetAttributeValues() [all …]
|
D | shader_program.h | 492 bool StoreAttribute(VertexAttrib attrib);
|
/frameworks/native/opengl/tests/hwc/ |
D | hwcTestLib.cpp | 547 const struct attrib { in hwcTestColor2Pixel() struct 568 const struct attrib *attrib; in hwcTestColor2Pixel() local 569 for (attrib = attributes; attrib < attributes + NUMA(attributes); in hwcTestColor2Pixel() 570 attrib++) { in hwcTestColor2Pixel() 571 if (attrib->format == format) { break; } in hwcTestColor2Pixel() 573 if (attrib >= attributes + NUMA(attributes)) { in hwcTestColor2Pixel() 579 pixel = htonl((uint32_t) round((((1 << attrib->c1Size) - 1) * color.c1())) in hwcTestColor2Pixel() 581 - (attrib->c1Offset + attrib->c1Size))); in hwcTestColor2Pixel() 582 pixel |= htonl((uint32_t) round((((1 << attrib->c2Size) - 1) * color.c2())) in hwcTestColor2Pixel() 584 - (attrib->c2Offset + attrib->c2Size))); in hwcTestColor2Pixel() [all …]
|
D | hwcCommit.cpp | 1324 const struct hwcTestGraphicFormat *attrib; in setSourceDim() local 1325 attrib = hwcTestGraphicFormatLookup(this->format); in setSourceDim() 1326 if (attrib != NULL) { in setSourceDim() 1327 if (sourceDim.width() % attrib->wMod) { in setSourceDim() 1328 sourceDim.setWidth(sourceDim.width() + attrib->wMod in setSourceDim() 1329 - (sourceDim.width() % attrib->wMod)); in setSourceDim() 1331 if (sourceDim.height() % attrib->hMod) { in setSourceDim() 1332 sourceDim.setHeight(sourceDim.height() + attrib->hMod in setSourceDim() 1333 - (sourceDim.height() % attrib->hMod)); in setSourceDim()
|
/frameworks/base/tools/stringslint/ |
D | stringslint.py | 59 key = "%s:%d" % (tag.attrib["name"], hash(msg)) 62 tag.attrib["name"], 103 …not isinstance(tag, ET._Comment) and re.match("{.*xliff.*}g", tag.tag) and "example" in tag.attrib: 104 yield tag.attrib["example"] 145 if "translatable" in child.attrib and child.attrib["translatable"].lower() == "false": 152 if misspelling in child.attrib: 193 if " phone " in text and "product" not in child.attrib: 208 if "id" not in gc.attrib: 211 if "example" not in gc.attrib:
|
/frameworks/av/media/codec2/sfplugin/ |
D | CCodecConfig.h | 154 C2ParamDescriptor::attrib_t attrib = C2ParamDescriptor::IS_READ_ONLY, 183 mParamUpdater->addStandardParam<T>(name, attrib); 194 C2ParamDescriptor::attrib_t attrib = C2ParamDescriptor::IS_READ_ONLY, 197 if (addLocalParam<T>(name, attrib, validator_)) { 214 C2ParamDescriptor::attrib_t attrib = C2ParamDescriptor::IS_READ_ONLY, 217 return addLocalParam(std::unique_ptr<T>(default_), name, attrib, validator_);
|
D | ReflectedParamUpdater.h | 95 void addStandardParam(const std::string &name, C2ParamDescriptor::attrib_t attrib = 98 C2Param::Index(T::PARAM_TYPE), attrib, name.c_str()),
|
/frameworks/layoutlib/rename_font/ |
D | build_font_single.py | 125 if 'nameID' in namerecord.attrib: 126 name_id = int(namerecord.attrib['nameID']) 155 if 'nameID' in namerecord.attrib: 156 name_id = int(namerecord.attrib['nameID'])
|
D | build_font.py | 141 if 'nameID' in namerecord.attrib: 142 name_id = int(namerecord.attrib['nameID']) 171 if 'nameID' in namerecord.attrib: 172 name_id = int(namerecord.attrib['nameID'])
|
/frameworks/av/media/codec2/core/include/ |
D | C2.h | 300 #define DEFINE_C2_CNTR_BINARY_OP(attrib, op, op_assign) \ argument 302 attrib inline c2_cntr_t<T>& operator op_assign(const U &value) { \ 308 attrib inline constexpr c2_cntr_t<T> operator op(const U &value) const { \ 313 attrib inline constexpr c2_cntr_t<U> operator op(const c2_cntr_t<U> &value) const { \ 317 #define DEFINE_C2_CNTR_UNARY_OP(attrib, op) \ argument 318 attrib inline constexpr c2_cntr_t<T> operator op() const { \ 322 #define DEFINE_C2_CNTR_CREMENT_OP(attrib, op) \ argument 323 attrib inline c2_cntr_t<T> &operator op() { \ 327 attrib inline c2_cntr_t<T> operator op(int) { \
|
D | C2Param.h | 1249 C2Param::Index index, attrib_t attrib, C2StringLiteral name) 1251 _mAttrib(attrib), 1255 C2Param::Index index, attrib_t attrib, C2String &&name, 1258 _mAttrib(attrib),
|
/frameworks/av/media/codec2/vndk/include/util/ |
D | C2InterfaceHelper.h | 352 attrib_t& attrib(); 454 attrib() = attrib_t::IS_PERSISTENT; 459 attrib() |= attrib_t::IS_REQUIRED; 465 attrib() &= ~attrib_t::IS_PERSISTENT; 471 attrib() |= attrib_t::IS_HIDDEN; 477 attrib() |= attrib_t::IS_INTERNAL; 512 attrib() |= attrib_t::IS_CONST; 544 attrib() |= attrib_t::IS_STRICT; 626 attrib() |= attrib_t::IS_READ_ONLY;
|
/frameworks/native/opengl/include/EGL/ |
D | eglext_angle.h | 163 typedef EGLint (EGLAPIENTRYP PFNEGLPROGRAMCACHEGETATTRIBANGLEPROC) (EGLDisplay dpy, EGLenum attrib); 168 EGLAPI EGLint EGLAPIENTRY eglProgramCacheGetAttribANGLE(EGLDisplay dpy, EGLenum attrib);
|
/frameworks/native/opengl/tools/glgen2/registry/ |
D | reg.py | 74 if ('api' in elem.attrib): 81 if ('profile' in elem.attrib): 712 if ('api' in elem.attrib): 752 type.attrib['name'] = type.find('name').text 784 cmd.attrib['name'] = cmd.find('proto/name').text 845 if (required and ('requires' in type.elem.attrib)): 935 if ('requires' in f.elem.attrib): 1136 if ('group' in proto.attrib.keys()): 1151 if ('group' in param.attrib.keys()):
|
/frameworks/native/opengl/tests/tritex/ |
D | tritex.cpp | 121 EGLint attrib[] = in init_gl_surface() local 141 EGLUtils::selectConfigForNativeWindow(eglDisplay, attrib, window, &myConfig); in init_gl_surface()
|
/frameworks/rs/tests/lldb/ |
D | run_tests.py | 666 results.attrib['name'] = 'LLDB RS Test Suite' 677 testcase.attrib['name'] = "%s:%s" % key 695 results.attrib['tests'] = str(total)
|
/frameworks/native/opengl/tests/gl_basic/ |
D | gl_basic.cpp | 216 EGLint attrib[] = in init_gl_surface() local 240 EGLUtils::selectConfigForNativeWindow(eglDisplay, attrib, window, &myConfig); in init_gl_surface()
|
/frameworks/av/media/codec2/vndk/util/ |
D | C2InterfaceHelper.cpp | 79 C2InterfaceHelper::ParamHelper::attrib_t& attrib() { in attrib() function in C2InterfaceHelper::ParamHelper::Impl 268 C2InterfaceHelper::ParamHelper::attrib_t& C2InterfaceHelper::ParamHelper::attrib() { in attrib() function in C2InterfaceHelper::ParamHelper 269 return mImpl->attrib(); in attrib()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ActivityManagerShellCommand.java | 2039 int[] attrib = new int[1]; 2043 egl.eglGetConfigAttrib(display, configs[i], EGL10.EGL_CONFIG_CAVEAT, attrib); 2044 if (attrib[0] == EGL10.EGL_SLOW_CONFIG) { 2051 egl.eglGetConfigAttrib(display, configs[i], EGL10.EGL_SURFACE_TYPE, attrib); 2052 if ((attrib[0] & EGL10.EGL_PBUFFER_BIT) == 0) { 2058 egl.eglGetConfigAttrib(display, configs[i], EGL10.EGL_RENDERABLE_TYPE, attrib); 2059 if ((attrib[0] & EGL_OPENGL_ES_BIT) != 0) { 2062 if ((attrib[0] & EGL_OPENGL_ES2_BIT) != 0) {
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_platform_entries.cpp | 390 EGLint attrib = attrib_list[0]; in eglChooseConfigImpl() local 399 while (attrib != EGL_NONE) { in eglChooseConfigImpl() 400 attrib = attrib_list[attribCount]; in eglChooseConfigImpl() 401 switch (attrib) { in eglChooseConfigImpl()
|
/frameworks/av/media/codec2/hidl/1.0/utils/ |
D | types.cpp | 565 d->attrib = static_cast<hidl_bitfield<ParamDescriptor::Attrib>>( in objcpy() 581 static_cast<C2ParamDescriptor::attrib_t>(s.attrib), in objcpy()
|