Searched refs:property (Results 101 - 125 of 1626) sorted by last modified time

1234567891011>>

/external/lzma/CPP/7zip/UI/Common/
H A DArchiveCommandLine.cpp676 CProperty property; local
680 property.Name = postString;
683 property.Name = postString.Left(index);
684 property.Value = postString.Mid(index + 1);
686 properties.Add(property);
H A DSetProperties.cpp45 const CProperty &property = properties[i]; local
47 UString name = property.Name;
48 if (property.Value.IsEmpty())
62 ParseNumberString(property.Value, propVariant);
H A DUpdate.cpp655 CProperty property; local
656 property.Name = L"rsfx";
657 property.Value = L"on";
658 options.MethodMode.Properties.Add(property);
/external/mdnsresponder/mDNSShared/
H A Ddns_sd.h647 * property: The requested property.
648 * Currently the only property defined is kDNSServiceProperty_DaemonVersion.
665 const char *property, /* Requested property (i.e. kDNSServiceProperty_DaemonVersion) */
1849 * be invoked any time the mapping state changes. This property complements point (1) above.
H A Ddnssd_clientstub.c1075 DNSServiceErrorType DNSSD_API DNSServiceGetProperty(const char *property, void *result, uint32_t *size) argument
1078 size_t len = strlen(property) + 1;
1089 put_string(property, &ptr);
1100 if (!strcmp(property, kDNSServiceProperty_DaemonVersion) && *size >= 4)
/external/llvm/bindings/python/llvm/
H A Dcore.py177 @property
205 @property
214 @property
254 @property
258 @property
274 @property
279 @property
284 @property
289 @property
330 @property
[all...]
/external/lldb/examples/summaries/cocoa/
H A Dobjc_runtime.py532 major = property(get_major,None)
533 minor = property(get_minor,None)
534 release = property(get_release,None)
535 build_string = property(get_build_string,None)
/external/lldb/examples/synthetic/
H A Dlibcxx.py164 next = property(_next_impl,None)
165 value = property(_value_impl,None)
166 is_null = property(_isnull_impl,None)
167 sbvalue = property(_sbvalue_impl,None)
365 left = property(_left_impl,None)
366 right = property(_right_impl,None)
367 parent = property(_parent_impl,None)
368 value = property(_value_impl,None)
369 is_null = property(_null_impl,None)
370 sbvalue = property(_sbvalue_imp
[all...]
/external/lldb/scripts/Python/interface/
H A DSBAddress.i167 if _newclass: module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) that this address resides within.''')
170 if _newclass: compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.SBCompileUnit) that this address resides within.''')
173 if _newclass: line_entry = property(GetLineEntry, None, doc='''A read only property that returns an lldb object that represents the line entry (lldb.SBLineEntry) that this address resides within.''')
176 if _newclass: function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) that this address resides within.''')
179 if _newclass: block = property(GetBlock, None, doc='''A read only property tha
[all...]
H A DSBBlock.i150 if _newclass: parent = property(GetParent, None, doc='''A read only property that returns the same result as GetParent().''')
153 if _newclass: first_child = property(GetFirstChild, None, doc='''A read only property that returns the same result as GetFirstChild().''')
156 if _newclass: call_site = property(get_call_site, None, doc='''A read only property that returns a lldb.declaration object that contains the inlined call site file, line and column.''')
159 if _newclass: sibling = property(GetSibling, None, doc='''A read only property that returns the same result as GetSibling().''')
162 if _newclass: name = property(GetInlinedName, None, doc='''A read only property tha
[all...]
H A DSBBreakpoint.i216 if _newclass: id = property(GetID, None, doc='''A read only property that returns the ID of this breakpoint.''')
220 if _newclass: enabled = property(IsEnabled, SetEnabled, doc='''A read/write property that configures whether this breakpoint is enabled or not.''')
224 if _newclass: one_shot = property(IsOneShot, SetOneShot, doc='''A read/write property that configures whether this breakpoint is one-shot (deleted when hit) or not.''')
227 if _newclass: num_locations = property(GetNumLocations, None, doc='''A read only property that returns the count of locations of this breakpoint.''')
H A DSBCompileUnit.i120 if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns the same result an lldb object that represents the source file (lldb.SBFileSpec) for the compile unit.''')
123 if _newclass: num_line_entries = property(GetNumLineEntries, None, doc='''A read only property that returns the number of line entries in a compile unit as an integer.''')
H A DSBData.i267 if _newclass: uint8 = property(_make_helper_uint8, None, doc='''A read only property that returns an array-like object out of which you can read uint8 values.''')
270 if _newclass: uint16 = property(_make_helper_uint16, None, doc='''A read only property that returns an array-like object out of which you can read uint16 values.''')
273 if _newclass: uint32 = property(_make_helper_uint32, None, doc='''A read only property that returns an array-like object out of which you can read uint32 values.''')
276 if _newclass: uint64 = property(_make_helper_uint64, None, doc='''A read only property that returns an array-like object out of which you can read uint64 values.''')
279 if _newclass: sint8 = property(_make_helper_sint8, None, doc='''A read only property tha
[all...]
H A DSBDeclaration.i57 if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
60 if _newclass: ling = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
63 if _newclass: column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
H A DSBError.i108 if _newclass: value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''')
111 if _newclass: fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''')
114 if _newclass: success = property(Success, None, doc='''A read only property that returns the same result as Success().''')
117 if _newclass: description = property(GetCString, None, doc='''A read only property that returns the same result as GetCString().''')
120 if _newclass: type = property(GetType, None, doc='''A read only property tha
[all...]
H A DSBFileSpec.i83 if _newclass: fullpath = property(__get_fullpath__, None, doc='''A read only property that returns the fullpath as a python string.''')
86 if _newclass: basename = property(GetFilename, None, doc='''A read only property that returns the path basename as a python string.''')
89 if _newclass: dirname = property(GetDirectory, None, doc='''A read only property that returns the path directory name as a python string.''')
92 if _newclass: exists = property(Exists, None, doc='''A read only property that returns a boolean value that indicates if the file exists.''')
H A DSBFrame.i281 if _newclass: pc = property(GetPC, SetPC)
284 if _newclass: addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (PC) as a section offset address (lldb.SBAddress).''')
287 if _newclass: fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an unsigned integer.''')
290 if _newclass: sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an unsigned integer.''')
293 if _newclass: module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) for this stack frame.''')
296 if _newclass: compile_unit = property(GetCompileUni
[all...]
H A DSBFunction.i100 if _newclass: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
103 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
106 if _newclass: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
109 if _newclass: instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this function.''')
112 if _newclass: mangled = property(GetMangledName, None, doc='''A read only property tha
[all...]
H A DSBInstruction.i82 if _newclass: mnemonic = property(__mnemonic_property__, None, doc='''A read only property that returns the mnemonic for this instruction as a string.''')
85 if _newclass: operands = property(__operands_property__, None, doc='''A read only property that returns the operands for this instruction as a string.''')
88 if _newclass: comment = property(__comment_property__, None, doc='''A read only property that returns the comment for this instruction as a string.''')
91 if _newclass: addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that represents the address (lldb.SBAddress) for this instruction.''')
94 if _newclass: size = property(GetByteSize, None, doc='''A read only property tha
[all...]
H A DSBLineEntry.i88 if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
91 if _newclass: ling = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
94 if _newclass: column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
97 if _newclass: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this line entry.''')
100 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property tha
[all...]
H A DSBModule.i467 if _newclass: symbols = property(get_symbols_array, None, doc='''A read only property that returns a list() of lldb.SBSymbol objects contained in this module.''')
470 if _newclass: symbol = property(get_symbols_access_object, None, doc='''A read only property that can be used to access symbols by index ("symbol = module.symbol[0]"), name ("symbols = module.symbol['main']"), or using a regular expression ("symbols = module.symbol[re.compile(...)]"). The return value is a single lldb.SBSymbol object for array access, and a list() of lldb.SBSymbol objects for name and regular expression access''')
473 if _newclass: sections = property(get_sections_array, None, doc='''A read only property that returns a list() of lldb.SBSection objects contained in this module.''')
476 if _newclass: compile_units = property(get_compile_units_array, None, doc='''A read only property that returns a list() of lldb.SBCompileUnit objects contained in this module.''')
479 if _newclass: section = property(get_sections_access_object, None, doc='''A read only property tha
[all...]
H A DSBProcess.i414 if _newclass: threads = property(get_process_thread_list, None, doc='''A read only property that returns a list() of lldb.SBThread objects for this process.''')
417 if _newclass: thread = property(get_threads_access_object, None, doc='''A read only property that returns an object that can access threads by thread index (thread = lldb.process.thread[12]).''')
420 if _newclass: is_alive = property(__get_is_alive__, None, doc='''A read only property that returns a boolean value that indicates if this process is currently alive.''')
423 if _newclass: is_running = property(__get_is_running__, None, doc='''A read only property that returns a boolean value that indicates if this process is currently running.''')
426 if _newclass: is_stopped = property(__get_is_running__, None, doc='''A read only property tha
[all...]
H A DSBSection.i107 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name of this section as a string.''')
110 if _newclass: addr = property(get_addr, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this section.''')
113 if _newclass: file_addr = property(GetFileAddress, None, doc='''A read only property that returns an integer that represents the starting "file" address for this section, or the address of the section in the object file in which it is defined.''')
116 if _newclass: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this section as an integer.''')
119 if _newclass: file_offset = property(GetFileOffset, None, doc='''A read only property tha
[all...]
H A DSBSymbol.i76 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''')
79 if _newclass: mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''')
82 if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSymbolType") that represents the type of this symbol.''')
85 if _newclass: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''')
88 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property tha
[all...]
H A DSBSymbolContext.i87 if _newclass: module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setting of the module (lldb.SBModule) in this symbol context.''')
91 if _newclass: compile_unit = property(GetCompileUnit, SetCompileUnit, doc='''A read/write property that allows the getting/setting of the compile unit (lldb.SBCompileUnit) in this symbol context.''')
95 if _newclass: function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting/setting of the function (lldb.SBFunction) in this symbol context.''')
99 if _newclass: block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')
103 if _newclass: symbol = property(GetSymbol, SetSymbol, doc='''A read/write property tha
[all...]

Completed in 324 milliseconds

1234567891011>>