Home
last modified time | relevance | path

Searched refs:typeStr (Results 1 – 25 of 30) sorted by relevance

12

/third_party/node/lib/internal/crypto/
Dkeys.js148 function parseKeyType(typeStr, required, keyType, isPublic, optionName) { argument
149 if (typeStr === undefined && !required) {
151 } else if (typeStr === 'pkcs1') {
154 typeStr, 'can only be used for RSA keys');
157 } else if (typeStr === 'spki' && isPublic !== false) {
159 } else if (typeStr === 'pkcs8' && isPublic !== true) {
161 } else if (typeStr === 'sec1' && isPublic !== true) {
164 typeStr, 'can only be used for EC keys');
169 throw new ERR_INVALID_OPT_VALUE(optionName, typeStr);
177 const { format: formatStr, type: typeStr } = enc;
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory_model/
DvktMemoryModelMessagePassing.cpp349 …const char *typeStr = (m_data.dataType == DATA_TYPE_UINT64) ? "uint64_t" : (m_data.dataType == DAT… in initPrograms() local
426 "struct S { " << typeStr << " x[DIM*DIM]; };\n"; in initPrograms()
465 …case SC_PHYSBUFFER: css << "layout(buffer_reference) buffer PayloadRef { " << typeStr << " x[]; };… in initPrograms()
467 …case SC_BUFFER: css << "layout(set=0, binding=0) " << memqual << " buffer Payload { " << typeStr in initPrograms()
482 …case SC_PHYSBUFFER: css << "layout(buffer_reference) buffer GuardRef { " << typeStr << " x[]; };\n… in initPrograms()
484 …case SC_BUFFER: css << "layout(set=0, binding=1) buffer Guard { " << typeStr << " x[]; } guard;\n… in initPrograms()
661 …case SC_BUFFER: css << " payload.x[bufferCoord] = " << typeStr << "(bufferCoord) + ((floatBitsT… in initPrograms()
662 …case SC_IMAGE: css << " imageStore(payload, imageCoord, vec4(" << typeStr << "(bufferCoord + (f… in initPrograms()
663 …case SC_WORKGROUP: css << " payload.x[sharedCoord] = " << typeStr << "(bufferCoord) + ((floatBit… in initPrograms()
675 case SC_BUFFER: css << " " << typeStr << " r = payload.x[partnerBufferCoord];\n"; break; in initPrograms()
[all …]
/third_party/skia/docs/examples/
DRRect_Type.cpp14 const char* typeStr[] = { "empty", "rect", "oval", "simple", "nine patch", "complex" };
15 canvas->drawString(typeStr[(int) rrect.type()], rect.centerX(), rect.bottom() + 20, paint);
/third_party/flutter/skia/docs/examples/
DRRect_Type.cpp14 const char* typeStr[] = { "empty", "rect", "oval", "simple", "nine patch", "complex" };
15 canvas->drawString(typeStr[(int) rrect.type()], rect.centerX(), rect.bottom() + 20, paint);
/third_party/icu/icu4c/source/test/intltest/
Ddcfmtest.cpp444 const char *typeStr = "Unknown"; in execFormatTest() local
451 typeStr = "Formattable"; in execFormatTest()
458 typeStr = "StringPiece"; in execFormatTest()
471 typeStr, lineNum, u_errorName(status)); in execFormatTest()
478typeStr, lineNum, UnicodeStringPiece(expected).data(), UnicodeStringPiece(result).data(), in execFormatTest()
Dlistformattertest.cpp791 const char* typeStr [] = {"and", "or", "units"}; in TestNextPosition() local
819 .append(" t=").append(typeStr[type])).c_str(), in TestNextPosition()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcShaderLibraryCase.cpp542 const char* typeStr = getDataTypeName(floatType); in genVertexShader() local
543 res << vtxIn << " " << typeStr << " a_" << val.valueName << ";\n"; in genVertexShader()
546 res << vtxOut << " " << typeStr << " " << val.valueName << ";\n"; in genVertexShader()
548 res << vtxOut << " " << typeStr << " v_" << val.valueName << ";\n"; in genVertexShader()
917 const char* typeStr = getDataTypeName(val.dataType); in specializeShaders() local
923 decl << vtxIn << " " << typeStr << " " << val.valueName << ";\n"; in specializeShaders()
931 … setup << typeStr << " " << val.valueName << " = " << typeStr << "(a_" << val.valueName << ");\n"; in specializeShaders()
936 decl << "uniform " << typeStr << " " << val.valueName << ";\n"; in specializeShaders()
/third_party/vulkan-headers/registry/
Dgenerator.py816 typeStr = enuminfo.elem.get('type');
819 if typeStr != "float":
822 strVal += "static_cast<" + typeStr + ">(" + number + ")"
823 body = 'static constexpr ' + typeStr.ljust(9) + name.ljust(33) + ' {' + strVal + '};'
826 typeStr = enuminfo.elem.get('type');
830 if typeStr != "float":
831 if typeStr == "uint64_t":
/third_party/vk-gl-cts/modules/glshared/
DglsShaderLibraryCase.cpp160 const char* const typeStr = getDataTypeName(floatType); in genVertexShader() local
162 res << vtxIn << " " << typeStr << " a_" << val.name << ";\n"; in genVertexShader()
165 res << vtxOut << " " << typeStr << " " << val.name << ";\n"; in genVertexShader()
167 res << vtxOut << " " << typeStr << " v_" << val.name << ";\n"; in genVertexShader()
427 const char* const typeStr = getDataTypeName(val.type.getBasicType()); in generateUniformDeclarations() local
430 dst << "uniform " << typeStr << " " << val.name << ";\n"; in generateUniformDeclarations()
448 const char* const typeStr = getDataTypeName(val.type.getBasicType()); in generateVertexSpecialization() local
452 decl << vtxIn << " " << typeStr << " " << val.name << ";\n"; in generateVertexSpecialization()
460 setup << typeStr << " " << val.name << " = " << typeStr << "(a_" << val.name << ");\n"; in generateVertexSpecialization()
DglsFboCompletenessTests.cpp780 const string typeStr = getTypeName(format.unsizedType); in formatName() local
781 return fmtStr + "_" + toLower(typeStr.substr(3)); in formatName()
793 const string typeStr = getTypeName(format.unsizedType); in formatDesc() local
794 return fmtStr + " with type " + typeStr; in formatDesc()
/third_party/mesa3d/src/nouveau/codegen/
Dnv50_ir_graph.h59 const char *typeStr() const;
Dnv50_ir_print.cpp832 ei.getEdge()->typeStr()); in visit()
848 ei.getEdge()->typeStr()); in visit()
Dnv50_ir_graph.cpp73 const char *Graph::Edge::typeStr() const in typeStr() function in nv50_ir::Graph::Edge
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTimeZoneGenericNames.java68 String typeStr = type.toString(); in isFallbackTypeOf() local
70 if (t.equals(typeStr)) { in isFallbackTypeOf()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DTimeZoneGenericNames.java71 String typeStr = type.toString(); in isFallbackTypeOf() local
73 if (t.equals(typeStr)) { in isFallbackTypeOf()
/third_party/flutter/flutter/packages/flutter_tools/lib/src/reporting/
Devents.dart96 result.typeStr);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationShaderInputOutputTests.cpp797 static const std::string typeStr[] = in initPrograms() local
806 const std::string dataType = typeStr[caseDef.dataType]; in initPrograms()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dtranslit.cpp1520 const char* typeStr = ures_getKey(res); in initializeRegistry() local
1522 u_charsToUChars(typeStr, &type, 1); in initializeRegistry()
/third_party/icu/icu4c/source/i18n/
Dtranslit.cpp1536 const char* typeStr = ures_getKey(res); in initializeRegistry() local
1538 u_charsToUChars(typeStr, &type, 1); in initializeRegistry()
/third_party/skia/third_party/externals/icu/source/i18n/
Dtranslit.cpp1536 const char* typeStr = ures_getKey(res); in initializeRegistry() local
1538 u_charsToUChars(typeStr, &type, 1); in initializeRegistry()
/third_party/node/deps/icu-small/source/i18n/
Dtranslit.cpp1550 const char* typeStr = ures_getKey(res); in initializeRegistry() local
1552 u_charsToUChars(typeStr, &type, 1); in initializeRegistry()
/third_party/vk-gl-cts/framework/qphelper/
DqpTestLog.c431 const char* typeStr = QP_LOOKUP_STRING(s_qpTestTypeMap, testCaseType); in qpTestLog_startCase() local
452 resultAttribs[numResultAttribs++] = qpSetStringAttrib("CaseType", typeStr); in qpTestLog_startCase()
/third_party/flutter/flutter/packages/flutter_tools/lib/src/
Ddoctor.dart440 String get typeStr {
/third_party/typescript/src/compiler/
Dchecker.ts12557 …const typeStr = typeToString(type, /*enclosingDeclaration*/ undefined, TypeFormatFlags.WriteArrayA…
12558 error(node, diag, typeStr, minTypeArgumentCount, typeParameters.length);
/third_party/typescript/lib/
Dtsc.js45627 var typeStr = typeToString(type, undefined, 2);
45628 error(node, diag, typeStr, minTypeArgumentCount, typeParameters.length);

12