HomeSort by relevance Sort by last modified time
    Searched full:attr_name (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_renames.py 34 ( attr_name=%r | import_as_name< attr_name=%r 'as' any >) >
37 power< module_name=%r trailer< '.' attr_name=%r > any* >
64 attr_name = results.get("attr_name")
68 if mod_name and attr_name:
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
70 attr_name.replace(Name(new_attr, prefix=attr_name.prefix))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_renames.py 34 ( attr_name=%r | import_as_name< attr_name=%r 'as' any >) >
37 power< module_name=%r trailer< '.' attr_name=%r > any* >
64 attr_name = results.get("attr_name")
68 if mod_name and attr_name:
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
70 attr_name.replace(Name(new_attr, prefix=attr_name.prefix))
  /external/compiler-rt/lib/lsan/lit_tests/AsanConfig/
lit.cfg 5 def get_required_attr(config, attr_name):
6 attr_value = getattr(config, attr_name, None)
10 "to lit.site.cfg " % attr_name)
  /external/compiler-rt/lib/lsan/lit_tests/LsanConfig/
lit.cfg 5 def get_required_attr(config, attr_name):
6 attr_value = getattr(config, attr_name, None)
10 "to lit.site.cfg " % attr_name)
  /external/compiler-rt/lib/sanitizer_common/tests/
lit.cfg 5 def get_required_attr(config, attr_name):
6 attr_value = getattr(config, attr_name, None)
10 "to lit.site.cfg " % attr_name)
  /external/compiler-rt/lib/tsan/lit_tests/Unit/
lit.cfg 5 def get_required_attr(config, attr_name):
6 attr_value = getattr(config, attr_name, None)
10 "to lit.site.cfg " % attr_name)
  /external/compiler-rt/lib/lsan/lit_tests/
lit.common.cfg 7 def get_required_attr(config, attr_name):
8 attr_value = getattr(config, attr_name, None)
12 "to lit.site.cfg " % attr_name)
  /external/chromium_org/third_party/protobuf/python/
stubout.py 42 def SmartSet(self, obj, attr_name, new_attr):
43 """Replace obj.attr_name with new_attr. This method is smart and works
48 This method supports the case where attr_name is a staticmethod or a
63 (not inspect.isclass(obj) and obj.__dict__.has_key(attr_name))):
65 orig_attr = getattr(obj, attr_name)
80 orig_attr = getattr(obj, attr_name)
89 old_attribute = obj.__dict__.get(attr_name)
93 self.stubs.append((orig_obj, attr_name, orig_attr))
94 setattr(orig_obj, attr_name, new_attr)
  /external/protobuf/python/
stubout.py 42 def SmartSet(self, obj, attr_name, new_attr):
43 """Replace obj.attr_name with new_attr. This method is smart and works
48 This method supports the case where attr_name is a staticmethod or a
63 (not inspect.isclass(obj) and obj.__dict__.has_key(attr_name))):
65 orig_attr = getattr(obj, attr_name)
80 orig_attr = getattr(obj, attr_name)
89 old_attribute = obj.__dict__.get(attr_name)
93 self.stubs.append((orig_obj, attr_name, orig_attr))
94 setattr(orig_obj, attr_name, new_attr)
  /frameworks/base/services/java/com/android/server/firewall/
CategoryFilter.java 28 private static final String ATTR_NAME = "name";
50 String categoryName = parser.getAttributeValue(null, ATTR_NAME);
SenderPermissionFilter.java 27 private static final String ATTR_NAME = "name";
49 String permission = parser.getAttributeValue(null, ATTR_NAME);
  /external/compiler-rt/lib/msan/lit_tests/
lit.cfg 5 def get_required_attr(config, attr_name):
6 attr_value = getattr(config, attr_name, None)
10 "to lit.site.cfg " % attr_name)
  /external/compiler-rt/lib/ubsan/lit_tests/
lit.cfg 5 def get_required_attr(config, attr_name):
6 attr_value = getattr(config, attr_name, None)
10 "to lit.site.cfg " % attr_name)
  /external/chromium_org/content/browser/download/
file_metadata_unittest_linux.cc 65 void CheckExtendedAttributeValue(const string attr_name,
67 ssize_t len = getxattr(test_file().value().c_str(), attr_name.c_str(),
70 FAIL() << "Attribute '" << attr_name << "' does not exist";
73 len = getxattr(test_file().value().c_str(), attr_name.c_str(), buffer, len);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
FragmentRule.java 19 import static com.android.SdkConstants.ATTR_NAME;
38 new PropertySettingNodeHandler(ANDROID_URI, ATTR_NAME,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 94 def alias_accessor( alias_name, attr_name )
95 alias_method( alias_name, attr_name )
96 alias_method( :"#{ alias_name }=", :"#{ attr_name }=" )
  /external/chromium_org/tools/grit/grit/gather/
igoogle_strings.py 44 for attr_name in attr_names:
46 att_text.append(attr_name)
49 xml.sax.saxutils.quoteattr(attrs.getValueByQName(attr_name)))
muppet_strings.py 51 for attr_name in attr_names:
53 att_text.append(attr_name)
56 xml.sax.saxutils.quoteattr(attrs.getValueByQName(attr_name)))
  /external/compiler-rt/lib/asan/lit_tests/
lit.cfg 5 def get_required_attr(config, attr_name):
6 attr_value = getattr(config, attr_name, None)
10 "to lit.site.cfg " % attr_name)
  /external/compiler-rt/lib/tsan/lit_tests/
lit.cfg 5 def get_required_attr(config, attr_name):
6 attr_value = getattr(config, attr_name, None)
10 "to lit.site.cfg " % attr_name)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
OutlineLabelProvider.java 22 import static com.android.SdkConstants.ATTR_NAME;
69 id = getAttributeNS(e, ANDROID_URI, ATTR_NAME);
71 id = e.getAttribute(ATTR_NAME);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
ValuesDescriptors.java 19 import static com.android.SdkConstants.ATTR_NAME;
83 AttributeInfo nameAttrInfo = new AttributeInfo(ATTR_NAME, Format.STRING_SET);
91 new TextAttributeDescriptor(ATTR_NAME,
108 new TextAttributeDescriptor(ATTR_NAME,
125 new TextAttributeDescriptor(ATTR_NAME,
164 new TextAttributeDescriptor(ATTR_NAME,
181 new TextAttributeDescriptor(ATTR_NAME,
198 new TextAttributeDescriptor(ATTR_NAME,
215 new TextAttributeDescriptor(ATTR_NAME,
234 new TextAttributeDescriptor(ATTR_NAME,
    [all...]
  /cts/tools/utils/cts/
tools.py 183 def GetAndroidAttr(self, tag, attr_name):
188 attr_name: An attribute name in the android manifest namespace.
194 return element.getAttributeNS('http://schemas.android.com/apk/res/android', attr_name)
196 def GetAttr(self, tag, attr_name):
201 attr_name: An attribute name in the default namespace.
207 return element.getAttribute(attr_name)
  /frameworks/base/media/mca/filterfw/jni/
jni_shader_program.h 131 jstring attr_name,
138 jstring attr_name,
  /external/chromium_org/ui/accessibility/
ax_node_data.cc 54 string_attributes.push_back(std::make_pair(ATTR_NAME, name));

Completed in 629 milliseconds

1 2 3 4 5 6 7