• Home
  • Raw
  • Download

Lines Matching refs:property

73         Property property(defs[i]);  in Initialize()  local
74 assert(property.IsValid()); in Initialize()
75 m_name_to_index.Append(property.GetName().GetCString(),m_properties.size()); in Initialize()
76 property.GetValue()->SetParent(shared_from_this()); in Initialize()
77 m_properties.push_back(property); in Initialize()
88 Property property(name, desc, is_global, value_sp); in AppendProperty() local
90 m_properties.push_back(property); in AppendProperty()
231 const Property *property = GetPropertyAtIndex(NULL, false, idx); in GetPropertyNameAtIndex() local
232 if (property) in GetPropertyNameAtIndex()
233 return property->GetName(); in GetPropertyNameAtIndex()
241 const Property *property = GetPropertyAtIndex(NULL, false, idx); in GetPropertyDescriptionAtIndex() local
242 if (property) in GetPropertyDescriptionAtIndex()
243 return property->GetDescription(); in GetPropertyDescriptionAtIndex()
297 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsOptionValueArch() local
298 if (property) in GetPropertyAtIndexAsOptionValueArch()
299 return property->GetValue()->GetAsArch(); in GetPropertyAtIndexAsOptionValueArch()
306 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsArgs() local
307 if (property) in GetPropertyAtIndexAsArgs()
309 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsArgs()
329 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); in SetPropertyAtIndexFromArgs() local
330 if (property) in SetPropertyAtIndexFromArgs()
332 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexFromArgs()
352 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsBoolean() local
353 if (property) in GetPropertyAtIndexAsBoolean()
355 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsBoolean()
365 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); in SetPropertyAtIndexAsBoolean() local
366 if (property) in SetPropertyAtIndexAsBoolean()
368 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsBoolean()
381 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsOptionValueDictionary() local
382 if (property) in GetPropertyAtIndexAsOptionValueDictionary()
383 return property->GetValue()->GetAsDictionary(); in GetPropertyAtIndexAsOptionValueDictionary()
390 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsEnumeration() local
391 if (property) in GetPropertyAtIndexAsEnumeration()
393 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsEnumeration()
403 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); in SetPropertyAtIndexAsEnumeration() local
404 if (property) in SetPropertyAtIndexAsEnumeration()
406 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsEnumeration()
417 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsOptionValueFileSpec() local
418 if (property) in GetPropertyAtIndexAsOptionValueFileSpec()
420 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsOptionValueFileSpec()
431 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsFileSpec() local
432 if (property) in GetPropertyAtIndexAsFileSpec()
434 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsFileSpec()
445 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); in SetPropertyAtIndexAsFileSpec() local
446 if (property) in SetPropertyAtIndexAsFileSpec()
448 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsFileSpec()
458 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsOptionValueRegex() local
459 if (property) in GetPropertyAtIndexAsOptionValueRegex()
461 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsOptionValueRegex()
471 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsOptionValueSInt64() local
472 if (property) in GetPropertyAtIndexAsOptionValueSInt64()
474 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsOptionValueSInt64()
484 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsSInt64() local
485 if (property) in GetPropertyAtIndexAsSInt64()
487 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsSInt64()
497 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); in SetPropertyAtIndexAsSInt64() local
498 if (property) in SetPropertyAtIndexAsSInt64()
500 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsSInt64()
510 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsString() local
511 if (property) in GetPropertyAtIndexAsString()
513 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsString()
523 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); in SetPropertyAtIndexAsString() local
524 if (property) in SetPropertyAtIndexAsString()
526 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsString()
546 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); in GetPropertyAtIndexAsUInt64() local
547 if (property) in GetPropertyAtIndexAsUInt64()
549 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsUInt64()
559 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); in SetPropertyAtIndexAsUInt64() local
560 if (property) in SetPropertyAtIndexAsUInt64()
562 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsUInt64()
612 const Property *property = GetPropertyAtIndex(exe_ctx, false, i); in DumpValue() local
613 if (property) in DumpValue()
615 OptionValue *option_value = property->GetValue().get(); in DumpValue()
618 property->Dump (exe_ctx, in DumpValue()
661 const Property *property = NULL; in GetPropertyAtPath() local
676 property = GetProperty (exe_ctx, will_modify, key); in GetPropertyAtPath()
677 if (sub_name && property) in GetPropertyAtPath()
681 OptionValueProperties *sub_properties = property->GetValue()->GetAsProperties(); in GetPropertyAtPath()
685 property = NULL; in GetPropertyAtPath()
688 return property; in GetPropertyAtPath()
699 const Property *property = ProtectedGetPropertyAtIndex(i); in DumpAllDescriptions() local
700 if (property) in DumpAllDescriptions()
701 max_name_len = std::max<size_t>(property->GetName().GetLength(), max_name_len); in DumpAllDescriptions()
705 const Property *property = ProtectedGetPropertyAtIndex(i); in DumpAllDescriptions() local
706 if (property) in DumpAllDescriptions()
707 property->DumpDescription (interpreter, strm, max_name_len, false); in DumpAllDescriptions()
718 const Property *property = ProtectedGetPropertyAtIndex(i); in Apropos() local
719 if (property) in Apropos()
721 const OptionValueProperties *properties = property->GetValue()->GetAsProperties(); in Apropos()
729 const char *name = property->GetName().GetCString(); in Apropos()
734 const char *desc = property->GetDescription(); in Apropos()
740 matching_properties.push_back (property); in Apropos()