Searched defs:new_args (Results 1 - 5 of 5) sorted by relevance

/external/lldb/source/Breakpoint/
H A DBreakpointIDList.cpp163 Args &new_args)
212 new_args.Clear();
223 new_args.AppendArgument (canonical_id_str.GetData());
243 new_args.Clear();
252 new_args.Clear();
264 new_args.Clear ();
272 // target and find all the breakpoints that fit into this range, and add them to new_args.
283 new_args.Clear();
314 new_args.AppendArgument (canonical_id_str.GetData());
327 new_args
162 FindAndReplaceIDRanges(Args &old_args, Target *target, CommandReturnObject &result, Args &new_args) argument
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dwindow_commands.cc350 base::ListValue new_args; local
351 new_args.Append(element->DeepCopy());
352 new_args.AppendString(chrome_driver_id);
355 session->GetCurrentFrameId(), kSetFrameIdentifier, new_args, &result);
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DCythonFunction.c938 PyObject *new_args; local
943 new_args = PyTuple_GetSlice(args, 1, argc);
945 if (!new_args)
955 result = __Pyx_CyFunction_Call(func, new_args, kw);
958 Py_DECREF(new_args);
977 PyObject *new_args = NULL; local
987 new_args = PyTuple_New(argc + 1);
988 if (!new_args)
993 PyTuple_SET_ITEM(new_args, 0, self);
998 PyTuple_SET_ITEM(new_args,
[all...]
/external/qemu/tcg/
H A Dtcg.c2098 TCGArg new_args[TCG_MAX_OP_ARGS]; local
2105 memcpy(new_args + nb_oargs + nb_iargs,
2127 new_args[i] = ts->val;
2165 new_args[i] = reg;
2203 reg = new_args[arg_ct->alias_index];
2227 new_args[i] = reg;
2232 tcg_out_op(s, opc, new_args, const_args);
2237 reg = new_args[i];
/external/qemu/tcg/i386/
H A Dtcg-target.c942 TCGArg new_args[6]; local
945 memcpy(new_args, args+1, 5*sizeof(TCGArg));
955 new_args[5] = label_true;
956 tcg_out_brcond2(s, new_args, const_args+1, 1);
972 new_args[4] = tcg_invert_cond(new_args[4]);
973 new_args[5] = label_over;
974 tcg_out_brcond2(s, new_args, const_args+1, 1);

Completed in 942 milliseconds