HomeSort by relevance Sort by last modified time
    Searched refs:new_args (Results 1 - 12 of 12) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 33 new_args = []
41 new_args.append(arg)
44 if new_args and new_args[-1].type == token.COMMA:
45 del new_args[-1]
46 if len(new_args) == 1:
48 new_args[0].prefix = atom.prefix
49 atom.replace(new_args[0])
51 args[:] = new_args
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 33 new_args = []
41 new_args.append(arg)
44 if new_args and new_args[-1].type == token.COMMA:
45 del new_args[-1]
46 if len(new_args) == 1:
48 new_args[0].prefix = atom.prefix
49 atom.replace(new_args[0])
51 args[:] = new_args
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
RecognitionException.pm 63 my $new_args = { %$args };
65 $new_args->{input} = $input;
66 $new_args->{index} = $input->index();
70 $new_args->{token} = $token;
71 $new_args->{line} = $token->get_line();
72 $new_args->{char_position_in_line} = $token->get_char_position_in_line();
79 $new_args->{c} = $input->LA(1);
80 $new_args->{line} = $input->get_line();
81 $new_args->{char_position_in_line} = $input->get_char_position_in_line();
84 $new_args->{c} = $input->LA(1)
    [all...]
  /external/chromium_org/tools/perf/benchmarks/
session_restore.py 25 new_args = args.Copy()
26 new_args.pageset_repeat = 1
27 new_args.output_dir = profile_dir
29 small_profile_creator.SmallProfileCreator, profile_type, new_args)
  /external/lldb/source/Breakpoint/
BreakpointIDList.cpp 156 // Any string in the array that is not part of an ID range specifier is copied directly into NEW_ARGS. If any
158 // all the current breakpoints and locations in the range are added to NEW_ARGS. When this function is done,
159 // NEW_ARGS should be a copy of OLD_ARGS, with and ID range specifiers replaced by the members of the range.
163 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
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSUserFile.py 39 new_args = []
51 new_args.append(arg)
52 return new_args
  /external/lldb/include/lldb/Breakpoint/
BreakpointIDList.h 71 FindAndReplaceIDRanges (Args &old_args, Target *target, CommandReturnObject &result, Args &new_args);
  /external/chromium_org/third_party/cython/src/Cython/Utility/
CythonFunction.c 938 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, i + 1, item)
    [all...]
  /external/lldb/source/Interpreter/
CommandInterpreter.cpp     [all...]
  /external/chromium_org/chrome/test/chromedriver/
window_commands.cc 350 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/qemu/tcg/i386/
tcg-target.c 942 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);
    [all...]
  /external/qemu/tcg/
tcg.c 2098 TCGArg new_args[TCG_MAX_OP_ARGS]; local
    [all...]

Completed in 2198 milliseconds