/third_party/icu/icu4c/source/test/cintltst/ |
H A D | stdnmtst.c | 39 static int dotestname(const char *name, const char *standard, const char *expected) { in dotestname() argument 46 tag = ucnv_getStandardName(name, standard, &error); in dotestname() 48 log_err_status(error, "FAIL: could not find %s standard name for %s\n", standard, name); in dotestname() 51 log_err("FAIL: expected %s for %s standard name for %s, got %s\n", expected, standard, name, tag); in dotestname() 67 const char *standard; in TestStandardName() local 70 standard = ucnv_getStandard(i, &err); in TestStandardName() 74 } else if (!standard || !*standard) { in TestStandardName() 115 dotestconv(const char *name, const char *standard, const char *expected) dotestconv() argument 171 doTestNames(const char *name, const char *standard, const char **expected, int32_t size) doTestNames() argument 223 doTestUCharNames(const char *name, const char *standard, const char **expected, int32_t size) doTestUCharNames() argument [all...] |
/third_party/skia/include/gpu/gl/ |
H A D | GrGLTypes.h | 16 * Classifies GL contexts by which standard they implement (currently as OpenGL vs. OpenGL ES). 29 #define GR_IS_GR_GL(standard) false 30 #define GR_IS_GR_GL_ES(standard) true 31 #define GR_IS_GR_WEBGL(standard) false 35 #define GR_IS_GR_GL(standard) true 36 #define GR_IS_GR_GL_ES(standard) false 37 #define GR_IS_GR_WEBGL(standard) false 41 #define GR_IS_GR_GL(standard) false 42 #define GR_IS_GR_GL_ES(standard) false 43 #define GR_IS_GR_WEBGL(standard) tru [all...] |
/third_party/skia/src/gpu/gl/ |
H A D | GrGLCaps.cpp | 33 fStandard = ctxInfo.standard(); in GrGLCaps() 96 GrGLStandard standard = ctxInfo.standard(); in init() local 97 // standard can be unused (optimized away) if SK_ASSUME_GL_ES is set in init() 98 sk_ignore_unused_variable(standard); in init() 101 if (GR_IS_GR_GL(standard)) { in init() 110 } else if (GR_IS_GR_GL_ES(standard) || GR_IS_GR_WEBGL(standard)) { in init() 120 if (GR_IS_GR_GL(standard)) { in init() 124 } else if (GR_IS_GR_GL_ES(standard)) { in init() 786 get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation, bool isCoreProfile) get_glsl_version_decl_string() argument 863 GrGLStandard standard = ctxInfo.standard(); initGLSL() local 3262 GrGLStandard standard = ctxInfo.standard(); setupSampleCounts() local [all...] |
H A D | GrGLAssembleInterface.cpp | 26 GrGLStandard standard = GrGLGetStandardInUseFromString(verStr); in GrGLMakeAssembledInterface() local 27 // standard can be unused (optimzed away) if SK_ASSUME_GL_ES is set in GrGLMakeAssembledInterface() 28 sk_ignore_unused_variable(standard); in GrGLMakeAssembledInterface() 30 if (GR_IS_GR_GL_ES(standard)) { in GrGLMakeAssembledInterface() 32 } else if (GR_IS_GR_GL(standard)) { in GrGLMakeAssembledInterface() 34 } else if (GR_IS_GR_WEBGL(standard)) { in GrGLMakeAssembledInterface()
|
H A D | GrGLExtensions.cpp | 66 bool GrGLExtensions::init(GrGLStandard standard, in init() argument 86 if (GR_IS_GR_GL(standard) || GR_IS_GR_GL_ES(standard)) { in init() 89 } else if (GR_IS_GR_WEBGL(standard)) { in init()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
H A D | FunctionsGL.cpp | 98 FunctionsGL::FunctionsGL() : version(), standard(), extensions() {} in FunctionsGL() 107 GetGLVersion(getString, &version, &standard); in initialize() 139 switch (standard) in initialize() 201 return standard == STANDARD_GL_DESKTOP && version >= glVersion; in isAtLeastGL() 206 return standard == STANDARD_GL_DESKTOP && glVersion >= version; in isAtMostGL() 211 return standard == STANDARD_GL_ES && version >= glesVersion; in isAtLeastGLES() 216 return standard == STANDARD_GL_ES && glesVersion >= version; in isAtMostGLES() 226 return standard == STANDARD_GL_DESKTOP && hasExtension(ext); in hasGLExtension() 231 return standard == STANDARD_GL_ES && hasExtension(ext); in hasGLESExtension()
|
H A D | renderergl_utils.cpp | 53 if (functions->standard != STANDARD_GL_DESKTOP) in IsMesa() 437 nativegl::GetInternalFormatInfo(internalFormat, functions->standard); in GenerateTextureFormatCaps() 776 if (functions->standard == STANDARD_GL_DESKTOP && in GenerateCaps() 1150 (functions->standard == STANDARD_GL_DESKTOP && functions->version == gl::Version(4, 3))) in GenerateCaps() 1339 extensions->elementIndexUintOES = functions->standard == STANDARD_GL_DESKTOP || in GenerateCaps() 1359 extensions->textureNpotOES = functions->standard == STANDARD_GL_DESKTOP || in GenerateCaps() 1375 extensions->textureStorageEXT = functions->standard == STANDARD_GL_DESKTOP || in GenerateCaps() 1412 extensions->fragDepthEXT = functions->standard == STANDARD_GL_DESKTOP || in GenerateCaps() 1437 functions->standard == STANDARD_GL_DESKTOP || in GenerateCaps() 1449 extensions->unpackSubimageEXT = functions->standard in GenerateCaps() [all...] |
H A D | CompilerGL.cpp | 24 if (functions->standard == STANDARD_GL_DESKTOP) in GetShaderOutputType() 72 else if (functions->standard == STANDARD_GL_ES) in GetShaderOutputType()
|
/third_party/ffmpeg/libavdevice/ |
H A D | v4l2.c | 97 char *standard; member 328 struct v4l2_standard standard; in list_standards() local 333 for (standard.index = 0; ; standard.index++) { in list_standards() 334 if (v4l2_ioctl(s->fd, VIDIOC_ENUMSTD, &standard) < 0) { in list_standards() 344 standard.index, (uint64_t)standard.id, standard.name); in list_standards() 662 struct v4l2_standard standard = { 0 }; in v4l2_set_parameters() local 675 if (s->standard) { in v4l2_set_parameters() [all...] |
H A D | bktr.c | 60 int standard; member 267 switch (s->standard) { in grab_read_header() 272 av_log(s1, AV_LOG_ERROR, "Unknown standard.\n"); in grab_read_header() 297 if (bktr_init(s1->url, s->width, s->height, s->standard, in grab_read_header() 331 { "standard", "", offsetof(VideoData, standard), AV_OPT_TYPE_INT, {.i64 = VIDEO_FORMAT}, PAL, NTSCJ, AV_OPT_FLAG_DECODING_PARAM, "standard" }, 332 { "PAL", "", 0, AV_OPT_TYPE_CONST, {.i64 = PAL}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" }, 333 { "NTSC", "", 0, AV_OPT_TYPE_CONST, {.i64 = NTSC}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" }, 334 { "SECAM", "", 0, AV_OPT_TYPE_CONST, {.i64 = SECAM}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" }, [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | options.c | 54 enum standard standard = STANDARD_GNU89; variable 352 standard = STANDARD_C89; in handle_switch_a() 749 standard = STANDARD_C89; in handle_switch_s() 752 standard = STANDARD_C94; in handle_switch_s() 758 standard = STANDARD_C99; in handle_switch_s() 761 standard = STANDARD_GNU89; in handle_switch_s() 764 standard = STANDARD_GNU99; in handle_switch_s() 769 standard = STANDARD_C11; in handle_switch_s() 772 standard in handle_switch_s() [all...] |
H A D | options.h | 17 enum standard { enum 53 extern enum standard standard;
|
H A D | predefine.c | 93 switch (standard) { in predefined_macros() 115 if (!(standard & STANDARD_GNU) && (standard != STANDARD_NONE)) in predefined_macros() 117 if (standard >= STANDARD_C11) { in predefined_macros()
|
/third_party/skia/src/gpu/gl/win/ |
H A D | GrGLMakeNativeInterface_win.cpp | 57 GrGLStandard standard = GrGLGetStandardInUseFromString(verStr); in GrGLMakeNativeInterface() local 59 if (GR_IS_GR_GL_ES(standard)) { in GrGLMakeNativeInterface() 61 } else if (GR_IS_GR_GL(standard)) { in GrGLMakeNativeInterface()
|
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
H A D | UConverterAlias.java | 477 // char *standard, UErrorCode *pErrorCode) 478 static final String getStandardName(String alias, String standard)throws IOException { in getStandardName() argument 480 int listOffset = findTaggedAliasListsOffset(alias, standard); in getStandardName() 523 // char *standard, UErrorCode *pErrorCode) { 524 static String getCanonicalName(String alias, String standard) throws IOException{ in getCanonicalName() argument 526 int convNum = findTaggedConverterNum(alias, standard); in getCanonicalName() 545 // const char *standard, UErrorCode *pErrorCode) 546 /* static final UConverterAliasesEnumeration openStandardNames(String convName, String standard)throws IOException { 549 int listOffset = findTaggedAliasListsOffset(convName, standard); 553 * name and standard ar 582 findTaggedAliasListsOffset(String alias, String standard) findTaggedAliasListsOffset() argument 639 findTaggedConverterNum(String alias, String standard) findTaggedConverterNum() argument [all...] |
/third_party/icu/icu4c/source/tools/gencnval/ |
H A D | gencnval.c | 64 /* The maximum number of aliases that a standard tag/converter combination can have. 139 /* Were the standard tags declared before the aliases. */ 171 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName); 380 fprintf(stderr, "%s:%d: error: alias table needs to start a list of standard tags\n", path, lineNum); in parseFile() 664 @param standard When standard is 0, then it's the "empty" tag. 667 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName) { in addAlias() argument 672 if(standard>=MAX_TAG_COUNT) { in addAlias() 673 fprintf(stderr, "%s:%d: error: too many standard tags\n", path, lineNum); in addAlias() 680 aliasList = &tags[standard] in addAlias() [all...] |
/third_party/skia/third_party/externals/icu/source/tools/gencnval/ |
H A D | gencnval.c | 63 /* The maximum number of aliases that a standard tag/converter combination can have. 138 /* Were the standard tags declared before the aliases. */ 170 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName); 379 fprintf(stderr, "%s:%d: error: alias table needs to start a list of standard tags\n", path, lineNum); in parseFile() 663 @param standard When standard is 0, then it's the "empty" tag. 666 addAlias(const char *alias, uint16_t standard, uint16_t converter, UBool defaultName) { in addAlias() argument 671 if(standard>=MAX_TAG_COUNT) { in addAlias() 672 fprintf(stderr, "%s:%d: error: too many standard tags\n", path, lineNum); in addAlias() 679 aliasList = &tags[standard] in addAlias() [all...] |
/third_party/skia/third_party/externals/libpng/projects/owatcom/ |
H A D | pngconfig.mak | 8 # config.inf: Basic configuration information for a standard build.
9 # pngconfig.dfa: Advanced configuration for non-standard libpng builds.
111 $# 2) If you want to change libpng to a non-standard configuration also
120 $# If empty the standard configuration will be built. For this file to be
138 $# course, do the standard binary chop.)
145 $# If awk isn't set then this file is bypassed. If you just want the standard
|
/third_party/python/Lib/http/ |
H A D | cookiejar.py | 11 distributed with the Python standard library, but are available from 846 The subclass DefaultCookiePolicy defines the standard rules for Netscape 875 """Implements the standard rules for accepting and returning cookies.""" 1395 Tuples are name, value, standard, rest, where name and value are the 1396 cookie name and value, standard is a dictionary containing the standard 1413 # Build dictionary of standard cookie-attributes (standard) and 1425 standard = {} 1436 if k in standard [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/ |
H A D | PatternStringTest.java | 30 String standard = "+-abcb''a''#,##0.0%'a%'"; in testLocalized() 34 assertEquals(localized, PatternStringUtils.convertLocalized(standard, symbols, true)); in testLocalized()
|
/third_party/icu/tools/colprobe/ |
H A D | extractCollationData.pl | 70 if(/standard|phonebook|traditional|pinyin|stroke|direct/ && $colls) { 73 if(/standard/) {
|
/third_party/node/test/fixtures/wpt/streams/writable-streams/ |
H A D | start.any.js | 161 assert_array_equals(events, ['ready', 'write', 'closed'], 'promises should reject in standard order'); 163 }, 'when start() rejects, writer promises should reject in standard order');
|
/third_party/icu/icu4c/source/common/ |
H A D | ucnv_io.cpp | 28 * depending on the specified standard. 145 * a standard, or they are really old converters that the 146 * standard doesn't recognize anymore. 639 * Search for an standard name of an alias (what is the default name 640 * that this standard uses?) 645 findTaggedAliasListsOffset(const char *alias, const char *standard, UErrorCode *pErrorCode) { in findTaggedAliasListsOffset() argument 650 uint32_t tagNum = getTagNumber(standard); in findTaggedAliasListsOffset() 666 at the highest standard affinity. in findTaggedAliasListsOffset() 684 /* The standard doesn't know about the alias */ in findTaggedAliasListsOffset() 696 findTaggedConverterNum(const char *alias, const char *standard, UErrorCod argument 835 ucnv_openStandardNames(const char *convName, const char *standard, UErrorCode *pErrorCode) ucnv_openStandardNames() argument 961 ucnv_getStandardName(const char *alias, const char *standard, UErrorCode *pErrorCode) ucnv_getStandardName() argument 1007 ucnv_getCanonicalName(const char *alias, const char *standard, UErrorCode *pErrorCode) ucnv_getCanonicalName() argument [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | ucnv_io.cpp | 28 * depending on the specified standard. 145 * a standard, or they are really old converters that the 146 * standard doesn't recognize anymore. 639 * Search for an standard name of an alias (what is the default name 640 * that this standard uses?) 645 findTaggedAliasListsOffset(const char *alias, const char *standard, UErrorCode *pErrorCode) { in findTaggedAliasListsOffset() argument 650 uint32_t tagNum = getTagNumber(standard); in findTaggedAliasListsOffset() 666 at the highest standard affinity. in findTaggedAliasListsOffset() 684 /* The standard doesn't know about the alias */ in findTaggedAliasListsOffset() 696 findTaggedConverterNum(const char *alias, const char *standard, UErrorCod argument 835 ucnv_openStandardNames(const char *convName, const char *standard, UErrorCode *pErrorCode) ucnv_openStandardNames() argument 961 ucnv_getStandardName(const char *alias, const char *standard, UErrorCode *pErrorCode) ucnv_getStandardName() argument 1007 ucnv_getCanonicalName(const char *alias, const char *standard, UErrorCode *pErrorCode) ucnv_getCanonicalName() argument [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ucnv_io.cpp | 28 * depending on the specified standard. 145 * a standard, or they are really old converters that the 146 * standard doesn't recognize anymore. 639 * Search for an standard name of an alias (what is the default name 640 * that this standard uses?) 645 findTaggedAliasListsOffset(const char *alias, const char *standard, UErrorCode *pErrorCode) { in findTaggedAliasListsOffset() argument 650 uint32_t tagNum = getTagNumber(standard); in findTaggedAliasListsOffset() 666 at the highest standard affinity. in findTaggedAliasListsOffset() 684 /* The standard doesn't know about the alias */ in findTaggedAliasListsOffset() 696 findTaggedConverterNum(const char *alias, const char *standard, UErrorCod argument 835 ucnv_openStandardNames(const char *convName, const char *standard, UErrorCode *pErrorCode) ucnv_openStandardNames() argument 961 ucnv_getStandardName(const char *alias, const char *standard, UErrorCode *pErrorCode) ucnv_getStandardName() argument 1007 ucnv_getCanonicalName(const char *alias, const char *standard, UErrorCode *pErrorCode) ucnv_getCanonicalName() argument [all...] |