Lines Matching refs:ns
495 void dng_xmp_sdk::AppendArrayItem (const char *ns, in AppendArrayItem() argument
507 fPrivate->fMeta->AppendArrayItem (ns, in AppendArrayItem()
522 int32 dng_xmp_sdk::CountArrayItems (const char *ns, in CountArrayItems() argument
532 return fPrivate->fMeta->CountArrayItems (ns, path); in CountArrayItems()
546 bool dng_xmp_sdk::Exists (const char *ns, in Exists() argument
556 return fPrivate->fMeta->DoesPropertyExist (ns, path); in Exists()
575 bool dng_xmp_sdk::HasNameSpace (const char *ns) const in HasNameSpace()
586 SXMPIterator iter (*fPrivate->fMeta, ns); in HasNameSpace()
613 void dng_xmp_sdk::Remove (const char *ns, in Remove() argument
623 fPrivate->fMeta->DeleteProperty (ns, path); in Remove()
635 void dng_xmp_sdk::RemoveProperties (const char *ns) in RemoveProperties() argument
645 ns, in RemoveProperties()
662 bool dng_xmp_sdk::IsEmptyString (const char *ns, in IsEmptyString() argument
676 if (fPrivate->fMeta->GetProperty (ns, in IsEmptyString()
708 bool dng_xmp_sdk::IsEmptyArray (const char *ns, in IsEmptyArray() argument
722 if (fPrivate->fMeta->GetProperty (ns, in IsEmptyArray()
731 if (fPrivate->fMeta->GetArrayItem (ns, in IsEmptyArray()
749 if (!fPrivate->fMeta->GetArrayItem (ns, in IsEmptyArray()
793 void dng_xmp_sdk::ComposeArrayItemPath (const char *ns, in ComposeArrayItemPath() argument
804 SXMPUtils::ComposeArrayItemPath (ns, arrayName, index, &ss); in ComposeArrayItemPath()
818 void dng_xmp_sdk::ComposeStructFieldPath (const char *ns, in ComposeStructFieldPath() argument
830 SXMPUtils::ComposeStructFieldPath (ns, in ComposeStructFieldPath()
880 bool dng_xmp_sdk::GetString (const char *ns, in GetString() argument
895 if (fPrivate->fMeta->GetProperty (ns, path, &ss, NULL)) in GetString()
916 void dng_xmp_sdk::ValidateStringList (const char *ns, in ValidateStringList() argument
920 if (Exists (ns, path)) in ValidateStringList()
932 while (fPrivate->fMeta->GetArrayItem (ns, in ValidateStringList()
950 Remove (ns, path); in ValidateStringList()
960 bool dng_xmp_sdk::GetStringList (const char *ns, in GetStringList() argument
977 while (fPrivate->fMeta->GetArrayItem (ns, in GetStringList()
1006 bool dng_xmp_sdk::GetAltLangDefault (const char *ns, in GetAltLangDefault() argument
1021 if (fPrivate->fMeta->GetLocalizedText (ns, in GetAltLangDefault()
1053 else if (fPrivate->fMeta->GetProperty (ns, in GetAltLangDefault()
1082 bool dng_xmp_sdk::GetStructField (const char *ns, in GetStructField() argument
1099 if (fPrivate->fMeta->GetStructField (ns, in GetStructField()
1125 void dng_xmp_sdk::Set (const char *ns, in Set() argument
1135 fPrivate->fMeta->SetProperty (ns, path, text); in Set()
1150 Remove (ns, path); in Set()
1155 fPrivate->fMeta->SetProperty (ns, path, text); in Set()
1165 void dng_xmp_sdk::SetString (const char *ns, in SetString() argument
1176 Set (ns, path, ss.Get ()); in SetString()
1182 void dng_xmp_sdk::SetStringList (const char *ns, in SetStringList() argument
1190 Remove (ns, path); in SetStringList()
1211 fPrivate->fMeta->AppendArrayItem (ns, in SetStringList()
1229 void dng_xmp_sdk::SetAltLangDefault (const char *ns, in SetAltLangDefault() argument
1236 Remove (ns, path); in SetAltLangDefault()
1247 fPrivate->fMeta->SetLocalizedText (ns, in SetAltLangDefault()
1261 void dng_xmp_sdk::SetStructField (const char *ns, in SetStructField() argument
1273 fPrivate->fMeta->SetStructField (ns, in SetStructField()
1287 void dng_xmp_sdk::DeleteStructField (const char *ns, in DeleteStructField() argument
1299 fPrivate->fMeta->DeleteStructField (ns, structName, fieldNS, fieldName); in DeleteStructField()
1553 TXMP_STRING_TYPE ns; in IteratePaths() local
1556 while (iter.Next (&ns, in IteratePaths()
1562 if (!callback (ns .c_str (), in IteratePaths()