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

  /external/elfutils/libdw/
dwarf_hasattr.c 68 unsigned int attr_name; local
69 get_uleb128 (attr_name, attrp, endp);
76 if (attr_name == 0 || attr_form == 0)
79 if (attr_name == search_name)
dwarf_child.c 69 unsigned int attr_name; local
70 get_uleb128 (attr_name, attrp, endp);
78 if (attr_name == 0 && attr_form == 0)
82 if (attr_name == search_name && search_name != INVALID)
85 *codep = attr_name;
  /frameworks/base/tools/aapt2/compile/
InlineXmlFormatParser.cpp 33 std::string attr_name; member in struct:aapt::__anon45960::InlineDeclaration
81 decl.attr_name = name.entry;
169 parent_el->attributes.push_back(xml::Attribute{decl.attr_namespace_uri, decl.attr_name,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtils.java 113 String attr_name = info.getName(); local
114 if (requiredAttributes.contains("*/" + attr_name) ||
115 requiredAttributes.contains(elementXmlName + "/" + attr_name)) {
    [all...]
  /external/clang/test/Parser/
cxx0x-attributes.cpp 361 #define attr_name bitand macro
364 [[attr_name, attr_name_2(bitor), attr_name_3(com, pl)]] int macro_attrs; // expected-warning {{unknown attribute 'compl' ignored}} \
  /external/pdfium/core/fxcrt/xml/
cxml_parser.cpp 387 ByteString attr_name; local
396 GetName(&attr_space, &attr_name);
410 pElement->SetAttribute(attr_space, attr_name, attr_value);
  /frameworks/base/tools/aapt2/java/
JavaClassGenerator.cpp 85 static std::string TransformNestedAttr(const ResourceNameRef& attr_name,
92 if (!attr_name.package.empty() &&
93 package_name_to_generate != attr_name.package) {
94 output += "_" + JavaClassGenerator::TransformToFieldName(attr_name.package);
96 output += "_" + JavaClassGenerator::TransformToFieldName(attr_name.entry);
303 const ResourceName& attr_name = entry.attr_ref->name.value(); local
305 << (!attr_name.package.empty() ? attr_name.package
307 << ":" << attr_name.entry << "}</code></td>";
371 const ResourceName& attr_name = styleable_attr.attr_ref->name.value() local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 132 String attr_name = getDescriptor().getXmlLocalName(); local
149 values = data.getAttributeValues(element_name, attr_name);
UiListAttributeNode.java 137 String attr_name = descriptor.getXmlLocalName(); local
147 attr_name = nsPrefix + attr_name;
177 values = data.getAttributeValues(element_name, attr_name, greatGrandParentNodeName);
  /external/tensorflow/tensorflow/core/framework/
op_kernel_test.cc 650 string attr_name; local
651 OP_REQUIRES_OK(context, context->GetAttr("attr_name", &attr_name));
653 status.emplace_back("s", context->GetAttr(attr_name, &s));
654 status.emplace_back("s_list", context->GetAttr(attr_name, &s_list));
655 status.emplace_back("i", context->GetAttr(attr_name, &i));
656 status.emplace_back("i_list", context->GetAttr(attr_name, &i_list));
657 status.emplace_back("i32", context->GetAttr(attr_name, &i32));
658 status.emplace_back("i32_list", context->GetAttr(attr_name, &i32_list));
659 status.emplace_back("f", context->GetAttr(attr_name, &f))
    [all...]
  /system/media/audio_route/
audio_route.c 454 const XML_Char *attr_name = NULL; local
470 attr_name = attr[i + 1];
479 if (attr_name == NULL) {
484 state->path = path_create(ar, (char *)attr_name);
489 struct mixer_path *sub_path = path_get_by_name(ar, attr_name);
491 ALOGE("unable to find sub path '%s'", attr_name);
501 ctl = mixer_get_ctl_by_name(ar->mixer, attr_name);
503 ALOGE("Control '%s' doesn't exist - skipping", attr_name);
  /external/tensorflow/tensorflow/cc/framework/
cc_op_gen.cc 583 string attr_name = AvoidCPPKeywords(api_def_attr.rename_to()); local
589 strings::StrAppend(&attr_comment, "* ", attr_name, ": ",
598 arg_names.push_back(attr_name);
916 const string attr_name = local
921 attr_name, ")\n");
    [all...]
  /external/tensorflow/tensorflow/python/eager/
python_eager_op_gen.cc 47 string AttrVarName(const string& attr_name,
49 const string var = strings::StrCat("_attr_", attr_name);
50 if (attr_expressions != nullptr) (*attr_expressions)[attr_name] = var;
54 void AddInferredAttr(const string& indentation, const string& attr_name,
58 AttrVarName(attr_name, attr_expressions), " = ",
331 const string& attr_name = attrs_[i]; local
334 attr_expressions_[attr_name] = attr_api_name;
394 const auto& attr_name(op_def_.attr(i).name());
395 strings::StrAppend(&attr_values, "\"", attr_name, "\", _op.get_attr(\"",
396 attr_name, "\")");
481 const string& attr_name = attrs_[i]; local
    [all...]
pywrap_tfe_src.cc 244 const char* attr_name,
451 const char* attr_name,
456 TFE_OpSetAttrString(op, attr_name, default_value.s().data());
459 TFE_OpSetAttrInt(op, attr_name, static_cast<int64_t>(default_value.i()));
460 (*attr_list_sizes)[attr_name] = default_value.i();
463 TFE_OpSetAttrFloat(op, attr_name, default_value.f());
466 TFE_OpSetAttrBool(op, attr_name, default_value.b());
469 TFE_OpSetAttrType(op, attr_name,
475 TFE_OpSetAttrShape(op, attr_name, nullptr, -1, status);
482 TFE_OpSetAttrShape(op, attr_name, dims.get(), num_dims, status)
1671 const string& attr_name = input_arg.type_list_attr(); local
    [all...]
  /external/tensorflow/tensorflow/python/framework/
python_op_gen.cc 214 const string attr_name = is_list ? arg.type_list_attr() : arg.type_attr(); local
215 const OpDef::AttrDef* attr = FindAttr(attr_name, op_def);
220 const string* original_arg = gtl::FindOrNull(inferred_attrs, attr_name);
222 return strings::StrCat(prefix, " of type `", attr_name, "`.");
    [all...]
  /hardware/qcom/audio/hal/
platform_info.c 768 const XML_Char *attr_name = NULL; local
    [all...]
  /external/python/cpython3/Modules/
_operator.c 722 PyObject *attr_name; local
727 attr_name = PyTuple_GET_ITEM(attr, name_idx);
728 newobj = PyObject_GetAttr(obj, attr_name);
    [all...]
  /external/tensorflow/tensorflow/core/graph/
mkl_layout_pass.cc 523 const string attr_name = !arg.type_list_attr().empty() local
528 TF_CHECK_OK(GetNodeAttr(n->def(), attr_name, &value));
531 TF_CHECK_OK(GetNodeAttr(n->def(), attr_name, &N));
    [all...]
  /external/selinux/libsepol/src/
module_to_cil.c 178 char *attr_name; member in struct:attr_list_node
243 free(attr->attr_name);
739 char *attr_name = NULL; local
750 attr_name = malloc(len);
751 if (!attr_name) {
756 rlen = snprintf(attr_name, len, "%s%s%i", pdb->name, infix, num_attrs);
759 free(attr_name);
760 attr_name = NULL;
765 return attr_name;
768 static int cil_add_attr_to_list(struct list *attr_list, char *attr_name, int is_type, void *set
947 char *attr_name = NULL; local
    [all...]
  /external/expat/tests/
runtests.c 1993 const XML_Char *attr_name; member in struct:AttTest
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilts/tools/common/jasmin/
jasmin.jar 

Completed in 532 milliseconds