Home
last modified time | relevance | path

Searched refs:refVal (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/compile/
Dresolve.js28 var refVal = this._refs[ref];
29 if (typeof refVal == 'string') {
30 if (this._refs[refVal]) refVal = this._refs[refVal];
31 else return resolve.call(this, compile, root, refVal);
34 refVal = refVal || this._schemas[ref];
35 if (refVal instanceof SchemaObject) {
36 return inlineRef(refVal.schema, this._opts.inlineRefs)
37 ? refVal.schema
38 : refVal.validate || this._compile(refVal);
75 var refVal = this._refs[id];
[all …]
Dindex.js37 , refVal = [ undefined ]
45 root = root || { schema: schema, refVal: refVal, refs: refs };
62 cv.refVal = v.refVal;
112 sourceCode = vars(refVal, refValCode) + vars(patterns, patternCode)
139 refVal,
147 refVal[0] = validate;
156 validate.refVal = refVal;
175 _refVal = refVal[refIndex];
182 _refVal = root.refVal[rootRefId];
208 var refId = refVal.length;
[all …]
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/dot/
Dref.jst22 $refCode = 'root.refVal[0]';
26 {{ var $refVal = it.resolveRef(it.baseId, $schema, it.isRoot); }}
27 {{? $refVal === undefined }}
39 {{?? $refVal.inline }}
42 $it.schema = $refVal.schema;
46 {{ var $code = it.validate($it).replace(/validate\.schema/g, $refVal.code); }}
53 $async = $refVal.$async === true || (it.async && $refVal.$async !== false);
54 $refCode = $refVal.code;
/third_party/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir.cpp138 ValueRef::set(Value *refVal) in set() argument
140 if (value == refVal) in set()
144 if (refVal) in set()
145 refVal->uses.insert(this); in set()
147 value = refVal; in set()
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/
Dajv.js360 schemaObj.refVal = v.refVal;
Dajv.d.ts160 refVal?: Array<any>; property
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fSSBOLayoutCase.cpp1650 const float refVal = *((const float*)ref + ndx); in compareComponents() local
1653 if (!(deFloatAbs(resVal - refVal) <= threshold)) in compareComponents()
1661 const deUint32 refVal = *((const deUint32*)ref + ndx); in compareComponents() local
1664 if ((refVal != 0) != (resVal != 0)) in compareComponents()
1674 const deUint32 refVal = *((const deUint32*)ref + ndx); in compareComponents() local
1677 if (refVal != resVal) in compareComponents()
/third_party/vk-gl-cts/framework/common/
DtcuTexCompareVerifier.cpp348 const Vec4 refVal = select(Vec4(1.0f), Vec4(0.0f), cmpTrue); in isBilinearPCFCompareValid() local
350 const float v0 = bilinearInterpolate(refVal, x0, y0); in isBilinearPCFCompareValid()
351 const float v1 = bilinearInterpolate(refVal, x1, y0); in isBilinearPCFCompareValid()
352 const float v2 = bilinearInterpolate(refVal, x0, y1); in isBilinearPCFCompareValid()
353 const float v3 = bilinearInterpolate(refVal, x1, y1); in isBilinearPCFCompareValid()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineExtendedDynamicStateTests.cpp3293 const int refVal = clearVal + delta; in createExtendedDynamicStateTests() local
3294 if (refVal < kMinValI || refVal > kMaxValI) in createExtendedDynamicStateTests()
3297 const auto refValU8 = static_cast<deUint8>(refVal); in createExtendedDynamicStateTests()
3298 const auto refValU32 = static_cast<deUint32>(refVal); in createExtendedDynamicStateTests()
3433 + "_ref_" + de::toString(refVal) in createExtendedDynamicStateTests()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ssbo/
DvktSSBOLayoutCase.cpp1671 const float refVal = *((const float*)ref + ndx); in compareComponents() local
1674 if (deFloatAbs(resVal - refVal) >= threshold) in compareComponents()
1682 const deUint32 refVal = *((const deUint32*)ref + ndx); in compareComponents() local
1685 if ((refVal != 0) != (resVal != 0)) in compareComponents()
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/dist/
Dajv.bundle.js426 'refVal',
477 refCode = 'refVal[' + refIndex + ']';
512 return 'refVal' + refId;
673 return refVal[i] === undefined ? '' : 'var refVal' + i + ' = refVal[' + i + '];';
7040 schemaObj.refVal = v.refVal;
Dajv.min.js2refVal:h,refs:f},r),o=this._compilations[s.index];if(s.compiling)return o.callValidate=P;var y=thi… property
Dajv.min.js.map1refVal","refs","patterns","patternsHash","defaults","defaultsHash","customRules","index","compInde…
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/query_pool/
DvktQueryPoolStatisticsTests.cpp3828 const deUint64 refVal = 0xfffffffffffffffful; in checkResult() local
3831 if (results[index] != refVal) in checkResult()