HomeSort by relevance Sort by last modified time
    Searched defs:Assign (Results 1 - 25 of 48) sorted by null

1 2

  /external/v8/tools/testrunner/network/
distro.py 43 def Assign(suites, peers):
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
78 assign = Assign(target, Attr(new_N, Name(u'args')))
80 assign = Assign(target, new_N)
85 e_suite.insert_child(i, assign)
fix_tuple_params.py 25 from ..fixer_util import Assign, Name, Newline, Number, Subscript, syms
71 stmt = Assign(arg, n.clone())
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
78 assign = Assign(target, Attr(new_N, Name(u'args')))
80 assign = Assign(target, new_N)
85 e_suite.insert_child(i, assign)
fix_tuple_params.py 25 from ..fixer_util import Assign, Name, Newline, Number, Subscript, syms
71 stmt = Assign(arg, n.clone())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
78 assign = Assign(target, Attr(new_N, Name(u'args')))
80 assign = Assign(target, new_N)
85 e_suite.insert_child(i, assign)
fix_tuple_params.py 25 from ..fixer_util import Assign, Name, Newline, Number, Subscript, syms
71 stmt = Assign(arg, n.clone())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_except.py 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms
78 assign = Assign(target, Attr(new_N, Name(u'args')))
80 assign = Assign(target, new_N)
85 e_suite.insert_child(i, assign)
fix_tuple_params.py 25 from ..fixer_util import Assign, Name, Newline, Number, Subscript, syms
71 stmt = Assign(arg, n.clone())
  /system/tpm/trunks/
background_command_transceiver_test.cc 49 void Assign(std::string* to, const std::string& from) {
85 background_transceiver.SendCommand("test", base::Bind(Assign, &output));
resource_manager_test.cc 46 void Assign(std::string* to, const std::string& from) {
281 base::Bind(&Assign, &actual_response);
    [all...]
  /external/clang/test/SemaCXX/
deprecated.cpp 71 struct Assign {
72 Assign &operator=(const Assign&); // expected-warning {{definition of implicit copy constructor for 'Assign' is deprecated because it has a user-declared copy assignment operator}}
74 Assign a1, a2(a1); // expected-note {{implicit copy constructor for 'Assign' first required here}}
  /build/kati/
var.cc 133 void Vars::Assign(Symbol name, Var* v) {
  /external/v8/test/mjsunit/
readonly.js 153 function Assign(o, x) {
174 %DeoptimizeFunction(Assign);
176 %ClearFunctionTypeFeedback(Assign);
182 Assign(o, i);
187 %OptimizeFunctionOnNextCall(Assign);
194 Assign(o, t + 1);
  /external/libbrillo/brillo/
any_internal_impl.h 267 void Assign(T&& value) { // NOLINT(build/c++11)
272 // We assign the data to the variant container, which already
362 buffer->Assign(value_);
366 buffer->Assign(std::move(value_));
  /external/pdfium/xfa/src/fxjse/src/
value.h 221 V8_INLINE void Assign(const CFXJSE_Value* lpValue) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
fixer_util.py 27 def Assign(target, source):
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
fixer_util.py 27 def Assign(target, source):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 27 def Assign(target, source):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 27 def Assign(target, source):
  /external/gmock/include/gmock/
gmock-actions.h 318 "assign the default action to an Action variable and use "
637 // Implements the Assign action to set a given pointer referent to a
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-actions.h 318 "assign the default action to an Action variable and use "
637 // Implements the Assign action to set a given pointer referent to a
    [all...]
  /external/opencv3/3rdparty/jinja2/
nodes.py 345 class Assign(Stmt):
368 """Check if it's possible to assign something to this node."""
820 compiler so there is no need to assign them to local variables.
874 Assign(Name('foo', ctx='store'),
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 169 class Assign(Node):
188 return "Assign(%s, %s)" % (repr(self.nodes), repr(self.expr))
503 def __init__(self, assign, list, body, else_, lineno=None):
504 self.assign = assign
512 children.append(self.assign)
520 nodelist.append(self.assign)
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
603 def __init__(self, assign, iter, ifs, lineno=None):
604 self.assign = assig
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
ast.py 169 class Assign(Node):
188 return "Assign(%s, %s)" % (repr(self.nodes), repr(self.expr))
503 def __init__(self, assign, list, body, else_, lineno=None):
504 self.assign = assign
512 children.append(self.assign)
520 nodelist.append(self.assign)
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
603 def __init__(self, assign, iter, ifs, lineno=None):
604 self.assign = assig
    [all...]

Completed in 633 milliseconds

1 2