/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/ |
D | NamedFunction.java | 25 String name, int argCount, Function<List<String>, String> fn) { in create() argument 26 return new NamedFunction(name, argCount, fn); in create() 33 private NamedFunction(String name, int argCount, Function<List<String>, String> fn) { in NamedFunction() argument 36 checkArgument(argCount >= 0, "invalid argument count: %s", argCount); in NamedFunction() 38 this.maxArgs = argCount; in NamedFunction()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
D | AddExplicitTypeCasts.cpp | 30 const size_t argCount = callNode.getChildCount(); in visitAggregatePost() local 37 if (argCount == 1) in visitAggregatePost() 50 if (argCount == 1 && !retType.isArray()) in visitAggregatePost() 60 for (size_t i = 0; i < argCount; ++i) in visitAggregatePost() 69 if (argCount == 1) in visitAggregatePost()
|
D | RewriteOutArgs.cpp | 119 size_t argCount = args.size(); in visitAggregatePost() local 142 for (size_t i = 0; i < argCount; ++i) in visitAggregatePost() 155 i = argCount; in visitAggregatePost() 174 for (size_t i = 0; i < argCount; ++i) in visitAggregatePost()
|
D | RewriteUnaddressableReferences.cpp | 272 size_t argCount = args.size(); in visitAggregatePre() local 274 for (size_t i = 0; i < argCount; ++i) in visitAggregatePre()
|
D | SymbolEnv.cpp | 269 void SymbolEnv::TemplateName::assign(const Name &name, size_t argCount, const TemplateArg *args) in assign() argument 273 for (size_t i = 0; i < argCount; ++i) in assign()
|
D | SymbolEnv.h | 131 void assign(const Name &name, size_t argCount, const TemplateArg *args);
|
D | ProgramPrelude.cpp | 3903 const size_t argCount = node->getChildCount(); in visitAggregate() local 3905 auto getArgType = [node, argCount](size_t index) -> const TType & { in visitAggregate() 3906 ASSERT(index < argCount); in visitAggregate()
|
/third_party/mesa3d/src/microsoft/compiler/ |
D | dxcapi.h | 331 _In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments to add 332 _In_ UINT32 argCount // Number of arguments to add 335 … _In_opt_count_(argCount)LPCSTR *pArguments, // Array of pointers to UTF-8 arguments to add 336 _In_ UINT32 argCount // Number of arguments to add 402 _In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments 403 _In_ UINT32 argCount, // Number of arguments 415 _In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments 416 _In_ UINT32 argCount, // Number of arguments 440 _In_opt_count_(argCount) LPCWSTR *pArguments, // Array of pointers to arguments 441 _In_ UINT32 argCount, // Number of arguments [all …]
|
/third_party/lz4/tests/ |
D | abiTest.c | 201 int main(int argCount, const char** argv) in main() argument 210 assert(argCount >= 1); in main() 211 if (argCount < 2) return bad_usage(exeName); in main() 213 if (argNb >= argCount) return bad_usage(exeName); in main()
|
D | roundTripTest.c | 229 int main(int argCount, const char** argv) in main() argument 235 assert(argCount >= 1); in main() 236 if (argCount < 2) return bad_usage(exeName); in main() 243 if (argNb >= argCount) return bad_usage(exeName); in main()
|
/third_party/node/deps/npm/node_modules/lodash._bindcallback/ |
D | index.js | 20 function bindCallback(func, thisArg, argCount) { argument 27 switch (argCount) {
|
/third_party/icu/icu4c/source/common/ |
D | simpleformatter.cpp | 149 int32_t argCount = maxArg + 1; in applyPatternMinMaxArguments() local 150 if (argCount < min || max < argCount) { in applyPatternMinMaxArguments() 154 compiledPattern.setCharAt(0, (UChar)argCount); in applyPatternMinMaxArguments()
|
/third_party/node/deps/icu-small/source/common/ |
D | simpleformatter.cpp | 149 int32_t argCount = maxArg + 1; in applyPatternMinMaxArguments() local 150 if (argCount < min || max < argCount) { in applyPatternMinMaxArguments() 154 compiledPattern.setCharAt(0, (UChar)argCount); in applyPatternMinMaxArguments()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | simpleformatter.cpp | 149 int32_t argCount = maxArg + 1; in applyPatternMinMaxArguments() local 150 if (argCount < min || max < argCount) { in applyPatternMinMaxArguments() 154 compiledPattern.setCharAt(0, (UChar)argCount); in applyPatternMinMaxArguments()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | simpleformatter.cpp | 149 int32_t argCount = maxArg + 1; in applyPatternMinMaxArguments() local 150 if (argCount < min || max < argCount) { in applyPatternMinMaxArguments() 154 compiledPattern.setCharAt(0, (UChar)argCount); in applyPatternMinMaxArguments()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | SimpleFormatterImpl.java | 167 int argCount = maxArg + 1; in compileToStringMinMaxArguments() local 168 if (argCount < min) { in compileToStringMinMaxArguments() 172 if (argCount > max) { in compileToStringMinMaxArguments() 176 sb.setCharAt(0, (char)argCount); in compileToStringMinMaxArguments()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | SimpleFormatterImpl.java | 169 int argCount = maxArg + 1; in compileToStringMinMaxArguments() local 170 if (argCount < min) { in compileToStringMinMaxArguments() 174 if (argCount > max) { in compileToStringMinMaxArguments() 178 sb.setCharAt(0, (char)argCount); in compileToStringMinMaxArguments()
|
/third_party/protobuf/src/google/protobuf/compiler/objectivec/ |
D | method_dump.sh | 57 int argCount = method_getNumberOfArguments(methods[i]); 60 if (argCount == 2) { 63 if (argCount == 3 && [methodName hasPrefix:@"set"] && methodName.length > 4) {
|
/third_party/mindspore/patches/ |
D | 0027-js-buffer-leakage-bugfix.patch | 137 size_t argCount = PARAM2; 138 - napi_status status = napi_get_cb_info(env, info, &argCount, argv, &jsThis, nullptr); 139 + status = napi_get_cb_info(env, info, &argCount, argv, &jsThis, nullptr);
|
D | 0024-js-info2-bugfix.patch | 237 napi_status status = napi_get_cb_info(env, info, &argCount, nullptr, &jsThis, nullptr); 252 size_t argCount = PARAM2; 253 napi_status status = napi_get_cb_info(env, info, &argCount, argv, &jsThis, nullptr);
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLCPPCodeGenerator.cpp | 747 size_t argCount; in writeCodeAppend() local 749 argCount = 0; in writeCodeAppend() 757 ++argCount; in writeCodeAppend() 767 for (size_t i = argStart; i < argStart + argCount; ++i) { in writeCodeAppend() 771 argStart += argCount; in writeCodeAppend()
|
D | SkSLByteCodeGenerator.cpp | 948 int argCount = f.fArguments.size(); in writeFunctionCall() local 950 for (int i = 0; i < argCount; ++i) { in writeFunctionCall() 986 for (int i = argCount - 1; i >= 0; --i) { in writeFunctionCall()
|
/third_party/typescript/src/services/codefixes/ |
D | helpers.ts | 324 …function createDummyParameters(argCount: number, names: (string | undefined)[] | undefined, types:… 326 for (let i = 0; i < argCount; i++) {
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
D | vktSpvAsmInstructionTests.cpp | 11449 const deUint32 argCount; in createFloat16LogicalSet() member 11563 specs["op_arg1"] = (testOp.argCount == 1) ? "" : "%val_src1"; in createFloat16LogicalSet() 11564 specs["op_arg1_calc"] = (testOp.argCount == 1) ? "" : arg1Calc.specialize(specs); in createFloat16LogicalSet() 11573 if (testOp.argCount > 1) in createFloat16LogicalSet() 11692 specs["op_arg1"] = (testOp.argCount == 1) ? "" : "%val_src1"; in createFloat16LogicalSet() 11693 specs["op_arg1_calc"] = (testOp.argCount == 1) ? "" : arg1Calc.specialize(specs); in createFloat16LogicalSet() 11702 if (testOp.argCount > 1) in createFloat16LogicalSet() 17794 …tData (deUint32 seed, size_t count, size_t compCount, size_t stride, size_t argCount, size_t argNo) in getInputData() argument 17800 switch (argCount) in getInputData() 17832 …ataAC (deUint32 seed, size_t count, size_t compCount, size_t stride, size_t argCount, size_t argNo) in getInputDataAC() argument [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmInstructionTests.cpp | 11449 const deUint32 argCount; in createFloat16LogicalSet() member 11563 specs["op_arg1"] = (testOp.argCount == 1) ? "" : "%val_src1"; in createFloat16LogicalSet() 11564 specs["op_arg1_calc"] = (testOp.argCount == 1) ? "" : arg1Calc.specialize(specs); in createFloat16LogicalSet() 11573 if (testOp.argCount > 1) in createFloat16LogicalSet() 11692 specs["op_arg1"] = (testOp.argCount == 1) ? "" : "%val_src1"; in createFloat16LogicalSet() 11693 specs["op_arg1_calc"] = (testOp.argCount == 1) ? "" : arg1Calc.specialize(specs); in createFloat16LogicalSet() 11702 if (testOp.argCount > 1) in createFloat16LogicalSet() 17794 …tData (deUint32 seed, size_t count, size_t compCount, size_t stride, size_t argCount, size_t argNo) in getInputData() argument 17800 switch (argCount) in getInputData() 17832 …ataAC (deUint32 seed, size_t count, size_t compCount, size_t stride, size_t argCount, size_t argNo) in getInputDataAC() argument [all …]
|