/external/chromium_org/gpu/GLES2/extensions/CHROMIUM/ |
D | CHROMIUM_get_multiple.txt | 31 void GetMultipleIntegervCHROMIUM (const GLenum* pnames, GLuint count, 34 <pnames> points to an array of state enums that would normally be queried by 35 GetIntegerv. <count> is the number of pnames. <results> points memory large 39 Example: <pnames> points to an array with VIEWPORT and MAX_TEXTURE_SIZE. 44 INVALID_ENUM is generated if any of the pnames are not valid for GetIntegerv
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
D | ppucd.h | 102 void setPropertyNames(const PropertyNames *pn) { pnames=pn; } in setPropertyNames() 157 const PropertyNames *pnames; // aliased variable
|
D | ppucd.cpp | 58 : icuPnames(new PropertyNames()), pnames(icuPnames), in PreparsedUCD() 298 int32_t prop=pnames->getPropertyEnum(p); in parseProperty() 336 int32_t value=pnames->getPropertyValueEnum(prop, v); in parseProperty() 548 int32_t script=pnames->getPropertyValueEnum(UCHAR_SCRIPT, scs); in parseScriptExtensions()
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ppucd.h | 102 void setPropertyNames(const PropertyNames *pn) { pnames=pn; } in setPropertyNames() 157 const PropertyNames *pnames; // aliased variable
|
D | ppucd.cpp | 58 : icuPnames(new PropertyNames()), pnames(icuPnames), in PreparsedUCD() 298 int32_t prop=pnames->getPropertyEnum(p); in parseProperty() 336 int32_t value=pnames->getPropertyValueEnum(prop, v); in parseProperty() 548 int32_t script=pnames->getPropertyValueEnum(UCHAR_SCRIPT, scs); in parseScriptExtensions()
|
/external/chromium_org/gpu/command_buffer/service/ |
D | gles2_cmd_decoder_unittest.cc | 389 GLenum* pnames = GetSharedMemoryAs<GLenum*>(); in TEST_P() local 390 pnames[0] = GL_DEPTH_WRITEMASK; in TEST_P() 391 pnames[1] = GL_COLOR_WRITEMASK; in TEST_P() 392 pnames[2] = GL_STENCIL_WRITEMASK; in TEST_P() 394 GetSharedMemoryAsWithOffset<GLint*>(sizeof(*pnames) * kCount); in TEST_P() 398 num_results += decoder_->GetGLES2Util()->GLGetNumValuesReturned(pnames[ii]); in TEST_P() 411 kSharedMemoryOffset + sizeof(*pnames) * kCount, in TEST_P() 430 GLenum* pnames = GetSharedMemoryAsWithOffset<GLenum*>(kPnameOffset); in TEST_P() local 431 pnames[0] = GL_DEPTH_WRITEMASK; in TEST_P() 432 pnames[1] = GL_COLOR_WRITEMASK; in TEST_P() [all …]
|
/external/chromium_org/gpu/command_buffer/client/ |
D | gles2_implementation.h | 412 GetMultipleIntegervState(const GLenum* pnames, GLuint pnames_count, in NON_EXPORTED_BASE() 414 : pnames(pnames), in NON_EXPORTED_BASE() 420 const GLenum* pnames; in NON_EXPORTED_BASE() member
|
D | gles2_implementation.cc | 223 static const GLenum pnames[] = { in QueryAndCacheStaticState() local 240 pnames, arraysize(pnames), in QueryAndCacheStaticState() 3152 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size) { in GetMultipleIntegervCHROMIUM() argument 3155 << static_cast<const void*>(pnames) << ", " in GetMultipleIntegervCHROMIUM() 3161 " " << i << ": " << GLES2Util::GetStringGLState(pnames[i])); in GetMultipleIntegervCHROMIUM() 3166 GetMultipleIntegervState state(pnames, count, results, size); in GetMultipleIntegervCHROMIUM() 3196 int num = util_.GLGetNumValuesReturned(state->pnames[ii]); in GetMultipleIntegervSetup() 3199 "glGetMultipleIntegervCHROMIUM", state->pnames[ii], "pname"); in GetMultipleIntegervSetup() 3217 state->pnames_count * sizeof(state->pnames[0]) + in GetMultipleIntegervSetup() 3226 memcpy(pnames_buffer, state->pnames, state->pnames_count * sizeof(GLenum)); in GetMultipleIntegervRequest()
|
D | gles2_implementation_unittest.cc | 1951 const GLenum pnames[] = { in TEST_F() local 1962 const GLsizei kNumPnames = arraysize(pnames); in TEST_F() 1964 const size_t kPNamesSize = kNumPnames * sizeof(pnames[0]); in TEST_F() 1992 &pnames[0], kNumPnames, &results[0], kResultsSize); in TEST_F() 2000 GLenum pnames[] = { in TEST_F() local 2007 const GLsizei kNumPnames = arraysize(pnames); in TEST_F() 2032 &pnames[0], kNumPnames, &results[0], kResultsSize + 1); in TEST_F() 2040 &pnames[0], kNumPnames, &results[0], kResultsSize - 1); in TEST_F() 2049 &pnames[0], kNumPnames, &results[0], kResultsSize); in TEST_F() 2057 pnames[1] = GL_TRUE; in TEST_F() [all …]
|
D | gles2_trace_implementation_impl_autogen.h | 1249 void GLES2TraceImplementation::GetMultipleIntegervCHROMIUM(const GLenum* pnames, in GetMultipleIntegervCHROMIUM() argument 1255 gl_->GetMultipleIntegervCHROMIUM(pnames, count, results, size); in GetMultipleIntegervCHROMIUM()
|
D | gles2_c_lib_autogen.h | 783 void GLES2GetMultipleIntegervCHROMIUM(const GLenum* pnames, in GLES2GetMultipleIntegervCHROMIUM() argument 788 pnames, count, results, size); in GLES2GetMultipleIntegervCHROMIUM()
|
D | gles2_interface_autogen.h | 407 virtual void GetMultipleIntegervCHROMIUM(const GLenum* pnames,
|
D | gles2_implementation_autogen.h | 608 virtual void GetMultipleIntegervCHROMIUM(const GLenum* pnames,
|
D | gles2_interface_stub_autogen.h | 438 virtual void GetMultipleIntegervCHROMIUM(const GLenum* pnames,
|
D | gles2_trace_implementation_autogen.h | 438 virtual void GetMultipleIntegervCHROMIUM(const GLenum* pnames,
|
/external/chromium_org/third_party/icu/patches/ |
D | data.build.patch | 6 # 2010-dec Removed pnames.icu.
|
/external/chromium_org/gpu/GLES2/ |
D | gl2extchromium.h | 620 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size); 625 const GLenum* pnames, GLuint count, GLint* results, GLsizeiptr size);
|
/external/icu/icu4c/source/data/ |
D | makedata.mak | 489 # 2010-dec Removed pnames.icu. 492 uni-core-data: GODATA "$(ICUBLD_PKG)\pnames.icu" "$(ICUBLD_PKG)\uprops.icu" "$(ICUBLD_PKG)\ucase.ic… 505 echo pnames.icu ubidi.icu ucase.icu uprops.icu > "$(ICUOUT)\icu4j\add.txt" 951 "$(ICUBLD_PKG)\pnames.icu": $(ICUSRCDATA_RELATIVE_PATH)\in\pnames.icu 1011 # This used to depend on "$(ICUBLD_PKG)\pnames.icu" "$(ICUBLD_PKG)\uprops.icu" "$(ICUBLD_PKG)\ucase…
|
D | Makefile.in | 430 UNI_CORE_DATA=pnames.icu uprops.icu ucase.icu ubidi.icu 817 echo pnames.icu ubidi.icu ucase.icu uprops.icu > $(OUTDIR)/icu4j/add.txt
|
/external/chromium_org/third_party/icu/source/data/ |
D | makedata.mak | 489 # 2010-dec Removed pnames.icu. 492 uni-core-data: GODATA "$(ICUBLD_PKG)\pnames.icu" "$(ICUBLD_PKG)\uprops.icu" "$(ICUBLD_PKG)\ucase.ic… 505 echo pnames.icu ubidi.icu ucase.icu uprops.icu > "$(ICUOUT)\icu4j\add.txt" 953 "$(ICUBLD_PKG)\pnames.icu": $(ICUSRCDATA_RELATIVE_PATH)\in\pnames.icu 1016 # This used to depend on "$(ICUBLD_PKG)\pnames.icu" "$(ICUBLD_PKG)\uprops.icu" "$(ICUBLD_PKG)\ucase…
|
D | Makefile.in | 436 UNI_CORE_DATA=pnames.icu uprops.icu ucase.icu ubidi.icu 813 echo pnames.icu ubidi.icu ucase.icu uprops.icu > $(OUTDIR)/icu4j/add.txt
|
/external/chromium_org/third_party/angle/extensions/ |
D | ANGLE_texture_usage.txt | 181 On the other hand, if combinations are really required, additional <pnames>
|
D | ANGLE_instanced_arrays.txt | 260 pnames accepted by GetVertexAttribfv and GetVertexAttribiv.
|
/external/icu/icu4c/source/data/unidata/ |
D | changes.txt | 155 echo pnames.icu ubidi.icu ucase.icu uprops.icu > ./out/icu4j/add.txt 328 echo pnames.icu ubidi.icu ucase.icu uprops.icu > ./out/icu4j/add.txt 583 (builds both pnames.icu and propname_data.h) 628 echo pnames.icu ubidi.icu ucase.icu uprops.icu > ./out/icu4j/add.txt 748 (builds both pnames.icu and propname_data.h) 766 …~/svn.icu/trunk/dbg/data/out/icu4j$ cp com/ibm/icu/impl/data/icudt48b/pnames.icu /tmp/icu4j/com/ib…
|
/external/chromium_org/third_party/icu/source/data/unidata/ |
D | changes.txt | 155 echo pnames.icu ubidi.icu ucase.icu uprops.icu > ./out/icu4j/add.txt 328 echo pnames.icu ubidi.icu ucase.icu uprops.icu > ./out/icu4j/add.txt 583 (builds both pnames.icu and propname_data.h) 628 echo pnames.icu ubidi.icu ucase.icu uprops.icu > ./out/icu4j/add.txt 748 (builds both pnames.icu and propname_data.h) 766 …~/svn.icu/trunk/dbg/data/out/icu4j$ cp com/ibm/icu/impl/data/icudt48b/pnames.icu /tmp/icu4j/com/ib…
|