Home
last modified time | relevance | path

Searched refs:attr_value (Results 1 – 15 of 15) sorted by relevance

/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Dmeta_class.py12 for attr_name, attr_value in attrs.iteritems():
13 if isinstance(attr_value, types.FunctionType):
14 attrs[attr_name] = decorators.traced(attr_value)
/external/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/
D2006-05-12-rlwimi-crash.ll4 %struct.attr_desc = type { i8*, %struct.attr_desc*, %struct.attr_value*, %struct.attr_value*, i32 }
5 %struct.attr_value = type { %struct.rtx_def*, %struct.attr_value*, %struct.insn_ent*, i32, i32 }
/external/llvm/test/CodeGen/PowerPC/
D2006-05-12-rlwimi-crash.ll4 %struct.attr_desc = type { i8*, %struct.attr_desc*, %struct.attr_value*, %struct.attr_value*, i32 }
5 %struct.attr_value = type { %struct.rtx_def*, %struct.attr_value*, %struct.insn_ent*, i32, i32 }
/external/compiler-rt/test/lsan/
Dlit.common.cfg8 attr_value = getattr(config, attr_name, None)
9 if attr_value == None:
14 return attr_value
/external/libchrome/base/trace_event/
Dmemory_allocator_dump_unittest.cc81 auto attr_value = CheckAttribute(dump, name, expected_type, expected_units); in CheckString() local
82 EXPECT_TRUE(attr_value->GetAsString(&attr_str_value)); in CheckString()
98 auto attr_value = CheckAttribute(dump, name, MemoryAllocatorDump::kTypeScalar, in CheckScalarF() local
101 EXPECT_TRUE(attr_value->GetAsDouble(&attr_double_value)); in CheckScalarF()
/external/compiler-rt/test/profile/
Dlit.cfg6 attr_value = getattr(config, attr_name, None)
7 if attr_value == None:
12 return attr_value
/external/compiler-rt/test/ubsan/
Dlit.common.cfg6 attr_value = getattr(config, attr_name, None)
7 if attr_value == None:
12 return attr_value
/external/compiler-rt/test/tsan/
Dlit.cfg6 attr_value = getattr(config, attr_name, None)
7 if not attr_value:
12 return attr_value
/external/compiler-rt/test/asan/
Dlit.cfg9 attr_value = getattr(config, attr_name, None)
10 if attr_value == None:
15 return attr_value
/external/valgrind/coregrind/
Dpub_core_libcfile.h54 Addr attr_value, SizeT attr_value_len );
Dm_libcfile.c450 SysRes VG_(getxattr) ( const HChar* file_name, const HChar* attr_name, Addr attr_value, SizeT attr_… in VG_()
455 attr_value, attr_value_len); in VG_()
/external/pdfium/core/fxcrt/
Dfx_xml_parser.cpp534 CFX_WideString attr_value; in ParseElement() local
535 GetAttrValue(attr_value); in ParseElement()
536 pElement->m_AttrMap.SetAt(attr_space, attr_name, attr_value); in ParseElement()
/external/pdfium/third_party/pymock/
Dmock.py1167 attr_value = getattr(klass, attr)
1168 if not hasattr(attr_value, "__call__"):
1172 setattr(klass, attr, patcher(attr_value))
1627 attr_value = getattr(klass, attr)
1629 hasattr(attr_value, "__call__")):
1631 decorated = decorator(attr_value)
/external/python/cpython2/Lib/test/
D_mock_backport.py1120 attr_value = getattr(klass, attr)
1121 if not hasattr(attr_value, "__call__"):
1125 setattr(klass, attr, patcher(attr_value))
1575 attr_value = getattr(klass, attr)
1577 hasattr(attr_value, "__call__")):
1579 decorated = decorator(attr_value)
Dtest_support.py1079 for attr, attr_value in self.attrs.iteritems():
1082 if getattr(value, attr) != attr_value: