HomeSort by relevance Sort by last modified time
    Searched full:argstr (Results 26 - 50 of 73) sorted by null

12 3

  /prebuilts/go/darwin-x86/src/math/rand/
regress_test.go 47 var argstr string
82 argstr = fmt.Sprint(x)
105 fmt.Printf("\t%s, // %s(%s)\n", val, m.Name, argstr)
112 t.Errorf("r.%s(%s) = %v, want %v", m.Name, argstr, out, want)
  /prebuilts/go/linux-x86/src/math/rand/
regress_test.go 47 var argstr string
82 argstr = fmt.Sprint(x)
105 fmt.Printf("\t%s, // %s(%s)\n", val, m.Name, argstr)
112 t.Errorf("r.%s(%s) = %v, want %v", m.Name, argstr, out, want)
  /external/autotest/client/deps/webgl_mpd/src/debug/
webgl-debug.js 245 var argStr = "";
248 argStr += ((ii == 0) ? '' : ', ') +
251 return argStr;
298 var argStr = "";
301 argStr += ((ii == 0) ? '' : ', ') +
305 "(" + argStr + ")");
  /toolchain/binutils/binutils-2.27/opcodes/
nios2-dis.c 952 const char *argstr = op->args; local
954 if (argstr != NULL && *argstr != '\0')
957 while (*argstr != '\0')
959 nios2_print_insn_arg (argstr, opcode, address, info, op);
960 ++argstr;
  /external/llvm/lib/Support/
CommandLine.cpp 147 if (!SC->OptionsMap.insert(std::make_pair(O->ArgStr, O)).second) {
148 errs() << ProgramName << ": CommandLine Error: Option '" << O->ArgStr
198 OptionNames.push_back(O->ArgStr);
255 errs() << ProgramName << ": CommandLine Error: Option '" << O->ArgStr
259 Sub.OptionsMap.erase(O->ArgStr);
356 ArgStr = S;
470 OptionNames.push_back(O->ArgStr);
582 return ProvideOption(Handler, Handler->ArgStr, Arg, 0, nullptr, Dummy);
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
CommandLine.cpp 161 if (!SC->OptionsMap.insert(std::make_pair(O->ArgStr, O)).second) {
162 errs() << ProgramName << ": CommandLine Error: Option '" << O->ArgStr
212 OptionNames.push_back(O->ArgStr);
269 errs() << ProgramName << ": CommandLine Error: Option '" << O->ArgStr
273 Sub.OptionsMap.erase(O->ArgStr);
376 ArgStr = S;
490 OptionNames.push_back(O->ArgStr);
601 return ProvideOption(Handler, Handler->ArgStr, Arg, 0, nullptr, Dummy);
    [all...]
  /external/boringssl/src/util/fipstools/
delocate.go 744 argStr := ""
746 argStr += "*"
748 argStr += symbol
750 argStr += offset
753 argStr += "@"
754 argStr += section
758 argStr += d.contents(memRef)
761 args = append(args, argStr)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl_c.py 261 argstr = ", ".join(["%s %s" % (atype, aname)
263 argstr += ", PyArena *arena"
265 argstr = "PyArena *arena"
271 self.emit("%s _Py_%s(%s);" % (ctype, name, argstr), False)
284 argstr = ", ".join(["%s %s" % (atype, aname)
286 if argstr:
287 argstr += ", PyArena *arena"
289 argstr = "PyArena *arena"
291 emit("%s(%s)" % (name, argstr))
    [all...]
  /external/python/cpython2/Parser/
asdl_c.py 261 argstr = ", ".join(["%s %s" % (atype, aname)
263 argstr += ", PyArena *arena"
265 argstr = "PyArena *arena"
271 self.emit("%s _Py_%s(%s);" % (ctype, name, argstr), False)
284 argstr = ", ".join(["%s %s" % (atype, aname)
286 if argstr:
287 argstr += ", PyArena *arena"
289 argstr = "PyArena *arena"
291 emit("%s(%s)" % (name, argstr))
    [all...]
  /external/python/cpython3/Parser/
asdl_c.py 264 argstr = ", ".join(["%s %s" % (atype, aname)
266 argstr += ", PyArena *arena"
268 argstr = "PyArena *arena"
274 self.emit("%s _Py_%s(%s);" % (ctype, name, argstr), False)
289 argstr = ", ".join(["%s %s" % (atype, aname)
291 if argstr:
292 argstr += ", PyArena *arena"
294 argstr = "PyArena *arena"
296 emit("%s(%s)" % (name, argstr))
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellNetwork1CommandsLib/
Ifconfig.c 168 CHAR16 *ArgStr;
183 ArgStr = Str;
200 ArgNode->Arg = ArgStr;
201 ArgStr = Str + 1;
217 ArgNode->Arg = ArgStr;
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
main.c 321 pMsg(START, test->args, "Start args: %s\n", test->args->argstr);
579 strncat(cleanArgs.argstr, argv[i],
580 (MAX_ARG_LEN - 1) - strlen(cleanArgs.argstr));
581 strncat(cleanArgs.argstr, " ",
582 (MAX_ARG_LEN - 1) - strlen(cleanArgs.argstr));
main.h 206 char argstr[MAX_ARG_LEN]; /* human readable argument string /w assumtions */ member in struct:child_args
  /bionic/benchmarks/
bionic_benchmarks.cpp 295 std::string argstr; local
296 while (sstream >> argstr) {
298 int converted = static_cast<int>(strtol(argstr.c_str(), &check_null, 10));
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CommandLine.h 176 const char *ArgStr; // The argument string itself (ex: "help", "o")
200 // hasArgStr - Return true if the argstr != ""
201 bool hasArgStr() const { return ArgStr[0] != 0; }
206 void setArgStr(const char *S) { ArgStr = S; }
227 ArgStr(""), HelpStr(""), ValueStr("") {
551 // argstr field should be stable, copy it down now.
557 // If there has been no argstr specified, that means that we need to add an
567 // If there is an ArgStr specified, then we are of the form:
714 const char *ArgStr;
722 ArgStr = O.ArgStr
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 225 jstring argStr = env->NewString(arg, argLen);
226 if (!argStr) {
229 env->SetObjectArrayElement(argsArray, i, argStr);
230 env->DeleteLocalRef(argStr);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/IfConfig6/
IfConfig6.c 128 CHAR16 *ArgStr;
141 ArgStr = Str;
156 ArgNode->Arg = ArgStr;
157 ArgStr = Str + 1;
166 ArgNode->Arg = ArgStr;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellNetwork2CommandsLib/
Ifconfig6.c 193 CHAR16 *ArgStr;
208 ArgStr = Str;
225 ArgNode->Arg = ArgStr;
226 ArgStr = Str + 1;
242 ArgNode->Arg = ArgStr;
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 250 StringRef ArgStr; // The argument string itself (ex: "help", "o")
273 // hasArgStr - Return true if the argstr != ""
274 bool hasArgStr() const { return !ArgStr.empty(); }
306 AdditionalVals(0), ArgStr(""), HelpStr(""), ValueStr(""),
672 // If there has been no argstr specified, that means that we need to add an
681 // If there is an ArgStr specified, then we are of the form:
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
CommandLine.h 256 StringRef ArgStr; // The argument string itself (ex: "help", "o")
283 // hasArgStr - Return true if the argstr != ""
284 bool hasArgStr() const { return !ArgStr.empty(); }
686 // If there has been no argstr specified, that means that we need to add an
695 // If there is an ArgStr specified, then we are of the form:
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
CommandLine.h 259 StringRef ArgStr; // The argument string itself (ex: "help", "o")
286 // hasArgStr - Return true if the argstr != ""
287 bool hasArgStr() const { return !ArgStr.empty(); }
692 // If there has been no argstr specified, that means that we need to add an
701 // If there is an ArgStr specified, then we are of the form:
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
CommandLine.h 264 StringRef ArgStr; // The argument string itself (ex: "help", "o")
291 // hasArgStr - Return true if the argstr != ""
292 bool hasArgStr() const { return !ArgStr.empty(); }
695 // If there has been no argstr specified, that means that we need to add an
704 // If there is an ArgStr specified, then we are of the form:
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
CommandLine.h 264 StringRef ArgStr; // The argument string itself (ex: "help", "o")
291 // hasArgStr - Return true if the argstr != ""
292 bool hasArgStr() const { return !ArgStr.empty(); }
695 // If there has been no argstr specified, that means that we need to add an
704 // If there is an ArgStr specified, then we are of the form:
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
CommandLine.h 264 StringRef ArgStr; // The argument string itself (ex: "help", "o")
291 // hasArgStr - Return true if the argstr != ""
292 bool hasArgStr() const { return !ArgStr.empty(); }
697 // If there has been no argstr specified, that means that we need to add an
706 // If there is an ArgStr specified, then we are of the form:
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
CommandLine.h 264 StringRef ArgStr; // The argument string itself (ex: "help", "o")
291 // hasArgStr - Return true if the argstr != ""
292 bool hasArgStr() const { return !ArgStr.empty(); }
697 // If there has been no argstr specified, that means that we need to add an
706 // If there is an ArgStr specified, then we are of the form:
    [all...]

Completed in 1509 milliseconds

12 3