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

  /external/chromium-trace/catapult/devil/devil/android/tools/
keyboard.py 111 new_attrs = copy.deepcopy(old_attrs)
112 new_attrs[tty.LFLAG] = new_attrs[tty.LFLAG] & ~(termios.ICANON)
113 new_attrs[tty.CC][tty.VMIN] = 1
114 new_attrs[tty.CC][tty.VTIME] = 0
115 termios.tcsetattr(fd, termios.TCSAFLUSH, new_attrs)
  /external/tensorflow/tensorflow/core/framework/
op_def_util.cc 499 // assume that new_attrs is a superset of old_attrs, and that any attr
507 // old_attrs, or substituting the default value from new_attrs.
510 const AttrMap& old_attrs, const AttrMap& new_attrs, std::vector<bool>* ref,
528 gtl::FindPtrOrNull(new_attrs, arg.type_list_attr());
554 gtl::FindPtrOrNull(new_attrs, arg.number_attr());
572 gtl::FindPtrOrNull(new_attrs, arg.type_attr());
602 AttrMap new_attrs, old_attrs; local
604 FillAttrMap(new_op, &new_attrs);
607 gtl::FindPtrOrNull(new_attrs, old_attr.name());
629 old_op.input_arg(), old_attrs, new_attrs, &old_in_ref, false /* names */)
664 AttrMap new_attrs, old_attrs; local
701 AttrMap new_attrs, old_attrs; local
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/blueprint/
blueprint.py 66 new_attrs = {'_enums': enums}
70 new_attrs[key] = value
74 new_attrs[key] = item
76 return type.__new__(mcs, name, bases, new_attrs)
  /external/e2fsprogs/lib/ext2fs/
ext_attr.c 224 struct ext2_xattr *new_attrs; local
228 sizeof(struct ext2_xattr), &new_attrs);
232 memcpy(new_attrs, h->attrs, h->length * sizeof(struct ext2_xattr));
235 h->attrs = new_attrs;

Completed in 162 milliseconds