• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/src/

Lines Matching +refs:symbol +refs:plist

286   Lisp_Object symbol;
378 elem = Fcons (ae_attr_table[count-1].symbol, elem);
1149 /* CFBoolean to a lisp symbol, `t' or `nil'. */
1214 non-zero, a symbol that represents the type of the original Core
1223 cfproperty_list_to_lisp (plist, with_tag, hash_bound)
1224 CFPropertyListRef plist;
1227 CFTypeID type_id = CFGetTypeID (plist);
1236 result = cfstring_to_lisp (plist);
1241 result = cfnumber_to_lisp (plist);
1246 result = cfboolean_to_lisp (plist);
1251 result = cfdate_to_lisp (plist);
1256 result = cfdata_to_lisp (plist);
1260 CFIndex index, count = CFArrayGetCount (plist);
1266 cfproperty_list_to_lisp (CFArrayGetValueAtIndex (plist, index),
1272 CFIndex count = CFDictionaryGetCount (plist);
1281 CFDictionaryApplyFunction (plist, cfdictionary_add_to_list,
1291 CFDictionaryApplyFunction (plist, cfdictionary_puthash,
1320 represents a concrete component, a Lisp symbol LOOSE_BINDING
1322 components, or a Lisp symbol SINGLE_COMPONENT (actually Qquote)
1775 xrm_cfproperty_list_to_value (plist)
1776 CFPropertyListRef plist;
1778 CFTypeID type_id = CFGetTypeID (plist);
1781 return cfstring_to_lisp (plist);
1787 string = CFStringCreateWithFormat (NULL, NULL, CFSTR ("%@"), plist);
1796 return build_string (CFBooleanGetValue (plist) ? "true" : "false");
1798 return cfdata_to_lisp (plist);
1821 CFPropertyListRef plist;
1873 plist = CFPreferencesCopyAppValue (keys[index], app_id);
1874 value = xrm_cfproperty_list_to_value (plist);
1875 CFRelease (plist);
4552 Each type should be a string of length 4 or the symbol
4617 If it is t, a symbol that represents the type of the original Core
4631 CFPropertyListRef app_plist = NULL, plist;
4672 plist = app_plist;
4675 if (CFGetTypeID (plist) != CFDictionaryGetTypeID ())
4680 plist = CFDictionaryGetValue (plist, key_str);
4682 if (plist == NULL)
4690 CFDataRef data = CFPropertyListCreateXMLData (NULL, plist);
4698 cfproperty_list_to_lisp (plist, EQ (format, Qt),
4730 Lisp_Object coding_spec, plist;
4733 plist = XVECTOR (coding_spec)->contents[3];
4755 cfstring_create_normalized (str, symbol)
4757 Lisp_Object symbol;
4764 if (EQ (symbol, QNFD))
4766 else if (EQ (symbol, QNFKD))
4768 else if (EQ (symbol, QNFC))
4770 else if (EQ (symbol, QNFKC))
4772 else if (EQ (symbol, QHFS_plus_D))
4777 else if (EQ (symbol, QHFS_plus_C))
4865 Each encoding is specified by either a coding system symbol, a mime
4869 specifying the optional argument NORMALIZATION-FORM with a symbol NFD,
5459 ae_attr_table[i].symbol = intern (ae_attr_table[i].name);
5460 staticpro (&ae_attr_table[i].symbol);