Searched refs:property (Results 126 - 150 of 1626) sorted by last modified time

1234567891011>>

/external/lldb/scripts/Python/interface/
H A DSBSymbolContextList.i120 if _newclass: modules = property(get_module_array, None, doc='''Returns a list() of lldb.SBModule objects, one for each module in each SBSymbolContext object in this list.''')
123 if _newclass: compile_units = property(get_compile_unit_array, None, doc='''Returns a list() of lldb.SBCompileUnit objects, one for each compile unit in each SBSymbolContext object in this list.''')
126 if _newclass: functions = property(get_function_array, None, doc='''Returns a list() of lldb.SBFunction objects, one for each function in each SBSymbolContext object in this list.''')
129 if _newclass: blocks = property(get_block_array, None, doc='''Returns a list() of lldb.SBBlock objects, one for each block in each SBSymbolContext object in this list.''')
132 if _newclass: line_entries = property(get_line_entry_array, None, doc='''Returns a list() of lldb.SBLineEntry objects, one for each line entry in each SBSymbolContext object in this list.''')
135 if _newclass: symbols = property(get_symbol_array, None, doc='''Returns a list() of lldb.SBSymbol objects, one for each symbol in each SBSymbolContext object in this list.''')
H A DSBTarget.i822 if _newclass: modules = property(get_modules_array, None, doc='''A read only property that returns a list() of lldb.SBModule objects contained in this target. This list is a list all modules that the target currently is tracking (the main executable and all dependent shared libraries).''')
825 if _newclass: module = property(get_modules_access_object, None, doc=r'''A read only property that returns an object that implements python operator overloading with the square brackets().\n target.module[<int>] allows array access to any modules.\n target.module[<str>] allows access to modules by basename, full path, or uuid string value.\n target.module[uuid.UUID()] allows module access by UUID.\n target.module[re] allows module access using a regular expression that matches the module full path.''')
828 if _newclass: process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represents the process (lldb.SBProcess) that this target owns.''')
831 if _newclass: executable = property(GetExecutable, None, doc='''A read only property that returns an lldb object that represents the main executable module (lldb.SBModule) for this target.''')
834 if _newclass: debugger = property(GetDebugger, None, doc='''A read only property tha
[all...]
H A DSBThread.i239 if _newclass: id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an integer.''')
242 if _newclass: idx = property(GetIndexID, None, doc='''A read only property that returns the thread index ID as an integer. Thread index ID values start at 1 and increment as threads come and go and can be used to uniquely identify threads.''')
245 if _newclass: return_value = property(GetStopReturnValue, None, doc='''A read only property that returns an lldb object that represents the return value from the last stop (lldb.SBValue) if we just stopped due to stepping out of a function.''')
248 if _newclass: process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represents the process (lldb.SBProcess) that owns this thread.''')
251 if _newclass: num_frames = property(GetNumFrames, None, doc='''A read only property tha
[all...]
H A DSBType.i48 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''')
51 if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''')
54 if _newclass: byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''')
57 if _newclass: bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
60 if _newclass: is_bitfield = property(IsBitfield, None, doc='''A read only property tha
[all...]
H A DSBTypeCategory.i193 if _newclass: formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
196 if _newclass: format = property(get_formats_access_object, None, doc=r'''A read only property that returns an object that you can use to look for formats by index or type name.''')
199 if _newclass: summaries = property(get_summaries_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category''')
202 if _newclass: summary = property(get_summaries_access_object, None, doc=r'''A read only property that returns an object that you can use to look for summaries by index or type name or regular expression.''')
205 if _newclass: filters = property(get_filters_array, None, doc='''A read only property tha
[all...]
H A DSBTypeFilter.i67 if _newclass: options = property(GetOptions, SetOptions)
70 if _newclass: count = property(GetNumberOfExpressionPaths, None)
H A DSBTypeFormat.i59 if _newclass: format = property(GetFormat, SetFormat)
63 if _newclass: options = property(GetOptions, SetOptions)
H A DSBTypeNameSpecifier.i58 if _newclass: name = property(GetName, None)
61 if _newclass: is_regex = property(IsRegex, None)
H A DSBTypeSummary.i81 if _newclass: options = property(GetOptions, SetOptions)
84 if _newclass: is_summary_string = property(IsSummaryString, None)
87 if _newclass: is_function_name = property(IsFunctionName, None)
90 if _newclass: is_function_name = property(IsFunctionCode, None)
93 if _newclass: summary_data = property(GetData, None)
H A DSBTypeSynthetic.i69 if _newclass: options = property(GetOptions, SetOptions)
72 if _newclass: contains_code = property(IsClassCode, None)
75 if _newclass: synthetic_data = property(GetData, None)
H A DSBValue.i413 '''Helper function for the "SBValue.dynamic" property.'''
417 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''')
420 if _newclass: type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''')
423 if _newclass: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this value.''')
426 if _newclass: is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value that indicates whether this value is currently lexically in scope.''')
430 if _newclass: format = property(GetNam
[all...]
/external/lldb/source/Commands/
H A DCommandObjectSettings.cpp458 const Property *property = m_interpreter.GetDebugger().GetValueProperties()->GetPropertyAtPath (&m_exe_ctx, will_modify, property_path); local
460 if (property)
462 property->DumpDescription (m_interpreter, result.GetOutputStream(), 0, dump_qualified_name);
466 result.AppendErrorWithFormat ("invalid property path '%s'", property_path);
/external/lldb/source/Interpreter/
H A DOptionValueProperties.cpp43 // find all non-global settings and copy the property values so that
73 Property property(defs[i]);
74 assert(property.IsValid());
75 m_name_to_index.Append(property.GetName().GetCString(),m_properties.size());
76 property.GetValue()->SetParent(shared_from_this());
77 m_properties.push_back(property);
88 Property property(name, desc, is_global, value_sp);
90 m_properties.push_back(property);
231 const Property *property = GetPropertyAtIndex(NULL, false, idx); local
232 if (property)
241 const Property *property = GetPropertyAtIndex(NULL, false, idx); local
297 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
306 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
329 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
352 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
365 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
381 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
390 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
403 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
417 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
431 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
445 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
458 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
471 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
484 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
497 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
510 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
523 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
546 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
559 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
612 const Property *property = GetPropertyAtIndex(exe_ctx, false, i); local
661 const Property *property = NULL; local
699 const Property *property = ProtectedGetPropertyAtIndex(i); local
705 const Property *property = ProtectedGetPropertyAtIndex(i); local
718 const Property *property = ProtectedGetPropertyAtIndex(i); local
[all...]
/external/lldb/test/lang/objc/foundation/
H A Dmy-base.h7 @property int propertyMovesThings;
/external/lldb/test/lang/objc/objc-ivar-offsets/
H A Dobjc-ivar-offsets.h10 @property int backed_int;
11 @property int unbacked_int;
25 @property int derived_backed_int;
26 @property int derived_unbacked_int;
/external/libvpx/libvpx/build/make/
H A Dconfigure.sh1307 ${prefix} tree. An additional intellectual property rights grant can be found${suffix}
/external/libvpx/libvpx/test/android/
H A DAndroid.mk5 # tree. An additional intellectual property rights grant can be found
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc754 // Returns true iff the test name of test property matches on key_.
1122 // context of a test or a test case, or to the global property set. If the
1123 // result already contains a property with the same key, the value will be
1454 const TestProperty& property) {
1455 test_result->RecordProperty(xml_element, property);
3196 // Returns the i-th test property. i can range from 0 to
3215 // Adds a test property to the list. If a property with the same key as the
3216 // supplied property is already represented, the value of this test_property
3315 // xml_element. Returns true if the property i
1452 RecordProperty(TestResult* test_result, const std::string& xml_element, const TestProperty& property) argument
4887 const TestProperty& property = result.GetTestProperty(i); local
[all...]
/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Dcopymem16x16_v6.asm6 ; tree. An additional intellectual property rights grant can be found
H A Dcopymem8x4_v6.asm6 ; tree. An additional intellectual property rights grant can be found
H A Dcopymem8x8_v6.asm6 ; tree. An additional intellectual property rights grant can be found
H A Ddequantize_v6.asm6 ; tree. An additional intellectual property rights grant can be found
H A Didct_v6.asm6 ; tree. An additional intellectual property rights grant can be found
H A Dintra4x4_predict_v6.asm6 ; tree. An additional intellectual property rights grant can be found
H A Diwalsh_v6.asm6 ; tree. An additional intellectual property rights grant can be found

Completed in 212 milliseconds

1234567891011>>