/third_party/node/deps/npm/node_modules/spdx-correct/ |
H A D | index.js | 85 function (argument) { 86 return argument.toUpperCase() 89 function (argument) { 90 return argument.trim() 93 function (argument) { 94 return argument.replace(/\./g, '') 97 function (argument) { 98 return argument.replace(/\s+/g, '') 101 function (argument) { 102 return argument [all...] |
/third_party/lz4/programs/ |
H A D | lz4cli.c | 194 DISPLAY( "To protect the console from binary flooding (bad argument mistake)\n"); in usage_longhelp() 363 const char* argument = argv[i]; in main() local 365 if(!argument) continue; /* Protection if argument empty */ in main() 368 if (!all_arguments_are_files && argument[0]=='-') { in main() 370 if (argument[1]==0) { in main() 377 if (argument[1]=='-') { in main() 378 if (!strcmp(argument, "--")) { all_arguments_are_files = 1; continue; } in main() 379 if (!strcmp(argument, "--compress")) { mode = om_compress; continue; } in main() 380 if ( (!strcmp(argument, " in main() [all...] |
/third_party/lz4/tests/ |
H A D | datagencli.c | 98 char* argument = argv[argNb]; in main() local 100 if(!argument) continue; /* Protection if argument empty */ in main() 103 if (*argument=='-') in main() 105 argument++; in main() 106 while (*argument!=0) in main() 108 switch(*argument) in main() 113 argument++; in main() 114 size = strtoull(argument, &argument, 1 in main() [all...] |
H A D | checkFrame.c | 225 const char* argument = argv[argNb]; in main() local 227 if(!argument) continue; /* Protection if argument empty */ in main() 230 if (argument[0]=='-') { in main() 231 if (!strcmp(argument, "--no-prompt")) { in main() 236 argument++; in main() 238 while (*argument!=0) { in main() 239 switch(*argument) in main() 244 argument++; in main() 248 argument in main() [all...] |
/third_party/node/test/fixtures/wpt/wasm/jsapi/table/ |
H A D | grow.any.js | 10 const argument = { "element": "anyfunc", "initial": 5 }; 11 const table = new WebAssembly.Table(argument); 28 const argument = { 29 valueOf: t.unreached_func("Should not touch the argument (valueOf)"), 30 toString: t.unreached_func("Should not touch the argument (toString)"), 36 assert_throws_js(TypeError, () => fn.call(thisValue, argument), `this=${format_value(thisValue)}`); 41 const argument = { "element": "anyfunc", "initial": 5 }; 42 const table = new WebAssembly.Table(argument); 51 const argument = { "element": "anyfunc", "initial": 3, "maximum": 5 }; 52 const table = new WebAssembly.Table(argument); [all...] |
H A D | type.tentative.any.js | 4 function assert_type(argument) { 5 const mytable = new WebAssembly.Table(argument); 7 assert_equals(tabletype.minimum, argument.minimum); 8 assert_equals(tabletype.maximum, argument.maximum); 9 assert_equals(tabletype.element, argument.element);
|
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
H A D | kernel.hpp | 74 class argument { class in clover::kernel 76 static std::unique_ptr<argument> 77 create(const binary::argument &barg); 79 argument(const argument &arg) = delete; 80 argument & 81 operator=(const argument &arg) = delete; 83 /// \a true if the argument has been set. 89 /// Set this argument to some object. 92 /// Set this argument t [all...] |
H A D | kernel.cpp | 32 const std::vector<binary::argument> &bargs) : in kernel() 36 if (barg.semantic == binary::argument::general) in kernel() 37 _args.emplace_back(argument::create(barg)); in kernel() 171 if (barg.semantic == clover::binary::argument::general) in args_infos() 205 case binary::argument::general: in bind() 209 case binary::argument::grid_dimension: { in bind() 211 auto arg = argument::create(barg); in bind() 217 case binary::argument::grid_offset: { in bind() 219 auto arg = argument::create(barg); in bind() 226 case binary::argument in bind() 418 kernel::argument::argument() : _set(false) { argument() function in kernel::argument [all...] |
/third_party/node/test/fixtures/wpt/wasm/jsapi/global/ |
H A D | constructor.any.js | 26 const argument = { "value": "i32" }; 27 assert_throws_js(TypeError, () => WebAssembly.Global(argument)); 80 }, "Invalid descriptor argument"); 85 const argument = { value }; 86 assert_throws_js(TypeError, () => new WebAssembly.Global(argument)); 88 }, "Invalid type argument"); 91 const argument = { "value": "v128" }; 92 assert_throws_js(TypeError, () => new WebAssembly.Global(argument)); 96 const argument = { "value": "i64" }; 97 const global = new WebAssembly.Global(argument); [all...] |
/third_party/mesa3d/src/gallium/frontends/clover/llvm/codegen/ |
H A D | common.cpp | 28 /// clover::binary, including kernel argument metadata extraction and 58 enum binary::argument::type 63 return binary::argument::image_rd; in get_image_type() 65 return binary::argument::image_wr; in get_image_type() 151 std::vector<binary::argument> 154 std::vector<binary::argument> args; in make_kernel_args() 180 target_align, binary::argument::zero_ext); in make_kernel_args() 183 args.emplace_back(binary::argument::sampler, arg_api_size, in make_kernel_args() 185 binary::argument::zero_ext); in make_kernel_args() 188 // Image size implicit argument in make_kernel_args() [all...] |
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/ |
H A D | help.js | 1 const { humanReadableArgName } = require('./argument.js'); 6 * @typedef { import("./argument.js").Argument } Argument 124 cmd._args.forEach(argument => { 125 argument.description = argument.description || cmd._argsDescription[argument.name()] || ''; 130 if (cmd._args.find(argument => argument.description)) { 164 * Get the argument term to show in the list of arguments. 166 * @param {Argument} argument [all...] |
/third_party/skia/src/sksl/ir/ |
H A D | SkSLConstructor.cpp | 31 // The meaning of a compound constructor containing a single argument varies significantly in in convert_compound_constructor() 32 // GLSL/SkSL, depending on the argument type. in convert_compound_constructor() 34 std::unique_ptr<Expression>& argument = args.front(); in convert_compound_constructor() local 35 if (type.isVector() && argument->type().isVector() && in convert_compound_constructor() 36 argument->type().componentType() == type.componentType() && in convert_compound_constructor() 37 argument->type().slotCount() > type.slotCount()) { in convert_compound_constructor() 49 context.fErrors->error(line, "'" + argument->type().displayName() + in convert_compound_constructor() 55 if (argument->type().isScalar()) { in convert_compound_constructor() 70 } else if (argument->type().isVector()) { in convert_compound_constructor() 73 if (type.isVector() && argument in convert_compound_constructor() [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | torque.cc | 30 std::string argument(argv[i]); in WrappedMain() 31 if (argument == "-o") { in WrappedMain() 33 } else if (argument == "-v8-root") { in WrappedMain() 35 } else if (argument == "-m32") { in WrappedMain() 42 } else if (argument == "-annotate-ir") { in WrappedMain() 44 } else if (argument == "-strip-v8-root") { in WrappedMain() 50 argument.substr(0, options.v8_root.size()) == options.v8_root) { in WrappedMain() 51 argument = argument.substr(options.v8_root.size() + 1); in WrappedMain() 54 files.emplace_back(std::move(argument)); in WrappedMain() [all...] |
/third_party/node/test/fixtures/wpt/wasm/jsapi/memory/ |
H A D | type.tentative.any.js | 4 function assert_type(argument) { 5 const memory = new WebAssembly.Memory(argument); 8 assert_equals(memorytype.minimum, argument.minimum); 9 assert_equals(memorytype.maximum, argument.maximum); 10 if (argument.shared !== undefined) { 11 assert_equals(memorytype.shared, argument.shared);
|
/third_party/node/deps/npm/node_modules/validate-npm-package-license/ |
H A D | index.js | 32 module.exports = function(argument) { 36 ast = parse(argument); 40 argument === 'UNLICENSED' || 41 argument === 'UNLICENCED' 48 } else if (match = fileReferenceRE.exec(argument)) { 60 if (argument.trim().length !== 0) { 61 var corrected = correct(argument);
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_cross_parsed_ir.cpp | 355 void ParsedIR::set_decoration_string(ID id, Decoration decoration, const string &argument) in set_decoration_string() argument 363 dec.hlsl_semantic = argument; in set_decoration_string() 371 void ParsedIR::set_decoration(ID id, Decoration decoration, uint32_t argument) in set_decoration() argument 380 dec.builtin_type = static_cast<BuiltIn>(argument); in set_decoration() 384 dec.location = argument; in set_decoration() 388 dec.component = argument; in set_decoration() 392 dec.offset = argument; in set_decoration() 396 dec.xfb_buffer = argument; in set_decoration() 400 dec.xfb_stride = argument; in set_decoration() 404 dec.stream = argument; in set_decoration() 449 set_member_decoration(TypeID id, uint32_t index, Decoration decoration, uint32_t argument) set_member_decoration() argument 790 set_member_decoration_string(TypeID id, uint32_t index, Decoration decoration, const string &argument) set_member_decoration_string() argument [all...] |
/third_party/icu/icu4c/source/test/iotest/ |
H A D | iotest.cpp | 212 UChar argument[512]; in DataDrivenPrintf() local 249 tempStr=testCase->getString("argument", errorCode); in DataDrivenPrintf() 250 tempStr.extract(argument, UPRV_LENGTHOF(argument), errorCode); in DataDrivenPrintf() 261 dbl = atof(u_austrcpy(cBuffer, argument)); in DataDrivenPrintf() 266 i8 = (int8_t)uto64(argument); in DataDrivenPrintf() 271 i16 = (int16_t)uto64(argument); in DataDrivenPrintf() 276 i32 = (int32_t)uto64(argument); in DataDrivenPrintf() 281 i64 = uto64(argument); in DataDrivenPrintf() 286 u_austrncpy(cBuffer, argument, sizeo in DataDrivenPrintf() 414 UChar argument[512]; DataDrivenScanf() local 617 UChar argument[512]; DataDrivenPrintfPrecision() local [all...] |
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_stdcall_svc_sendreply/ |
H A D | rpc_svc_sendreply.c | 42 static int argument; variable 116 memset((char *)&argument, (int)0, sizeof(argument)); in rcp_service() 117 if (svc_getargs(transp, xdr_argument, (char *)&argument) == FALSE) { in rcp_service() 121 result = (char *)(*proc) (argument, transp); in rcp_service() 131 if (svc_freeargs(transp, xdr_argument, (char *)&argument) == FALSE) { in rcp_service()
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/tirpc_svc_3/ |
H A D | tirpc_svc_3.c | 90 } argument; in exm_proc() local 107 memset((char *)&argument, (int)0, sizeof(argument)); in exm_proc() 108 if (svc_getargs(transp, xdr_argument, (char *)&argument) == FALSE) { in exm_proc() 113 result = (char *)(*proc) ((char *)&argument); in exm_proc() 119 if (svc_freeargs(transp, xdr_argument, (char *)&argument) == FALSE) { in exm_proc()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | FunctionLookup.cpp | 83 for (TIntermNode *argument : arguments) in GetMangledName() 85 newName += argument->getAsTyped()->getType().getMangledName(); in GetMangledName() 98 TIntermNode *argument = arguments[i]; in GetMangledNames() local 99 TBasicType argType = argument->getAsTyped()->getType().getBasicType(); in GetMangledNames() 112 // combination[currentIndex] represents index of next argument to be converted in GetMangledNames() 116 TIntermNode *argument = arguments[i]; in GetMangledNames() local 122 TType type = argument->getAsTyped()->getType(); in GetMangledNames() 130 newName += argument->getAsTyped()->getType().getMangledName(); in GetMangledNames() 164 void TFunctionLookup::addArgument(TIntermTyped *argument) in addArgument() argument 166 mArguments.push_back(argument); in addArgument() [all...] |
/third_party/gptfdisk/ |
H A D | gptcl.cc | 158 // Assume first non-option argument is the device filename.... in DoOptions() 520 int GPTDataCL::BuildMBR(char* argument, int isHybrid) { in BuildMBR() argument 526 if (argument != NULL) { in BuildMBR() 527 numParts = CountColons(argument) + 1; in BuildMBR() 529 eeLast = GetString(argument, numParts) == "EE"; in BuildMBR() 538 origPartNum = GetInt(argument, i + 1) - 1; in BuildMBR() 573 // Returns the number of colons in argument string, ignoring the 576 int CountColons(char* argument) { in CountColons() argument 579 while ((argument[0] != '\0') && (argument in CountColons() 586 GetInt(const string & argument, int itemNum) GetInt() argument 597 GetString(string argument, int itemNum) GetString() argument [all...] |
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/tirpc_svc_4/ |
H A D | tirpc_svc_4.c | 103 } argument; in exm_proc() local 120 memset((char *)&argument, (int)0, sizeof(argument)); in exm_proc() 121 if (svc_getargs(transp, xdr_argument, (char *)&argument) == FALSE) { in exm_proc() 126 result = (char *)(*proc) ((char *)&argument); in exm_proc() 132 if (svc_freeargs(transp, xdr_argument, (char *)&argument) == FALSE) { in exm_proc()
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_stdcall_svc_freeargs/ |
H A D | rpc_svc_freeargs_svc.c | 42 static int argument; variable 116 memset((char *)&argument, (int)0, sizeof(argument)); in rcp_service() 117 if (svc_getargs(transp, xdr_argument, (char *)&argument) == FALSE) { in rcp_service() 122 result = (char *)(*proc) (argument, transp); in rcp_service() 128 if (svc_freeargs(transp, xdr_argument, (char *)&argument) == FALSE) { in rcp_service()
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_stdcall_svc_getargs/ |
H A D | rpc_svc_getargs.c | 42 static int argument; variable 116 memset((char *)&argument, (int)0, sizeof(argument)); in rcp_service() 117 if (svc_getargs(transp, xdr_argument, (char *)&argument) == FALSE) { in rcp_service() 125 result = (char *)(*proc) (argument, transp); in rcp_service() 131 if (svc_freeargs(transp, xdr_argument, (char *)&argument) == FALSE) { in rcp_service()
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_svc_2/ |
H A D | rpc_svc_2.c | 44 } argument; variable 139 memset((char *)&argument, (int)0, sizeof(argument)); in rcp_service() 140 if (svc_getargs(transp, xdr_argument, (char *)&argument) == FALSE) { in rcp_service() 145 result = (char *)(*proc) ((struct datas *)&argument, transp); in rcp_service() 151 if (svc_freeargs(transp, xdr_argument, (char *)&argument) == FALSE) { in rcp_service()
|