HomeSort by relevance Sort by last modified time
    Searched defs:new_type (Results 1 - 19 of 19) sorted by null

  /external/openfst/src/include/fst/script/
convert.h 34 const string &new_type = args->args.arg2; local
36 Fst<Arc> *result = Convert(fst, new_type);
44 FstClass *Convert(const FstClass& f, const string &new_type);
  /art/compiler/sea_ir/types/
type_inference.cc 157 const Type* new_type = tiv.GetType(); local
158 type_data_.SetTypeOf(-1, new_type); // TODO: Record this info in a way that
174 const Type* new_type = tiv.GetType(); local
175 bool type_changed = (old_type != new_type);
177 type_data_.SetTypeOf((*instruction_it)->Id(), new_type);
type_inference_visitor_test.cc 68 const Type* new_type = &type_cache.Integer(); local
69 types.push_back(new_type);
82 const Type* new_type = &type_cache.Short(); local
83 types.push_back(new_type);
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_url_request_job.cc 32 const char* new_type; member in struct:drive::__anon6775::MimeTypeReplacement
42 return kMimeTypeReplacements[i].new_type;
  /external/chromium_org/net/base/
network_change_notifier_mac.cc 255 ConnectionType new_type = CalculateConnectionType(flags); local
260 notifier_mac->connection_type_ = new_type;
262 if (old_type != new_type)
268 if (new_type != CONNECTION_NONE)
  /external/e2fsprogs/lib/blkid/
dev.c 131 char *new_type, *new_value; local
136 new_type = malloc(strlen(search_type)+1);
138 if (!new_type || !new_value) {
139 free(new_type);
143 strcpy(new_type, search_type);
147 iter->search_type = new_type;
  /art/runtime/verifier/
register_line.cc 38 bool RegisterLine::SetRegisterType(uint32_t vdst, const RegType& new_type) {
40 if (new_type.IsLowHalf() || new_type.IsHighHalf()) {
42 << new_type << "'";
44 } else if (new_type.IsConflict()) { // should only be set during a merge
45 verifier_->Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Set register to unknown type " << new_type;
48 line_[vdst] = new_type.GetId();
77 void RegisterLine::SetResultRegisterType(const RegType& new_type) {
78 DCHECK(!new_type.IsLowHalf());
79 DCHECK(!new_type.IsHighHalf())
465 const RegType& new_type = cur_type.Merge(incoming_reg_type, verifier_->GetRegTypeCache()); local
    [all...]
  /external/chromium_org/content/browser/loader/
buffered_resource_handler.cc 288 std::string new_type; local
291 type_hint, &new_type);
296 response_->head.mime_type.assign(new_type);
  /external/chromium/net/disk_cache/
block_files.cc 106 int new_type = GetMapBlockType(new_value); local
117 header->empty[new_type - 1]++;
  /external/chromium_org/net/disk_cache/
block_files.cc 125 int new_type = GetMapBlockType(new_value); local
136 header_->empty[new_type - 1]++;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 621 struct lp_type new_type; local
623 new_type = tmp_type;
624 new_type.sign = dst_type.sign;
625 new_type.width = dst_type.width;
626 new_type.length = dst_type.length;
628 lp_build_resize(gallivm, tmp_type, new_type, tmp, num_srcs, tmp, num_dsts);
630 tmp_type = new_type;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 621 struct lp_type new_type; local
623 new_type = tmp_type;
624 new_type.sign = dst_type.sign;
625 new_type.width = dst_type.width;
626 new_type.length = dst_type.length;
628 lp_build_resize(gallivm, tmp_type, new_type, tmp, num_srcs, tmp, num_dsts);
630 tmp_type = new_type;
  /art/runtime/mirror/
class.h 275 void SetPrimitiveType(Primitive::Type new_type) {
277 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, primitive_type_), new_type, false); local
    [all...]
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_views.cc 290 ui::TextInputType new_type = static_cast<ui::TextInputType>(type); local
291 if (text_input_type_ != new_type) {
292 text_input_type_ = new_type;
  /external/chromium_org/v8/src/
ic.cc 2620 BinaryOpIC::TypeInfo new_type = TypeInfoFromValue(value, op); local
    [all...]
objects.cc 15948 Type* new_type = NULL; local
    [all...]
  /external/libsepol/src/
expand.c 79 type_datum_t *type, *new_type; local
105 new_type = (type_datum_t *) malloc(sizeof(type_datum_t));
106 if (!new_type) {
111 memset(new_type, 0, sizeof(type_datum_t));
113 new_type->flavor = type->flavor;
114 new_type->flags = type->flags;
115 new_type->s.value = ++state->out->p_types.nprim;
116 if (new_type->s.value > UINT16_MAX) {
118 free(new_type);
122 new_type->primary = 1
148 type_datum_t *type, *new_type; local
    [all...]
link.c 434 type_datum_t *type, *base_type, *new_type = NULL; local
473 if ((new_type =
474 (type_datum_t *) calloc(1, sizeof(*new_type))) == NULL) {
477 new_type->primary = type->primary;
478 new_type->flags = type->flags;
479 new_type->flavor = type->flavor;
480 /* for attributes, the writing of new_type->types is
483 new_type->s.value = state->base->p_types.nprim + 1;
487 (hashtab_datum_t) new_type);
492 base_type = new_type;
841 type_datum_t *type, *base_type, *new_type = NULL, *target_type; local
1149 type_datum_t *type, *new_type = NULL; local
    [all...]
  /external/grub/stage2/
builtins.c 2751 int new_type, new_start, new_len; local
2870 int new_type; local
    [all...]

Completed in 730 milliseconds