Searched refs:alias (Results 51 - 75 of 444) sorted by relevance

1234567891011>>

/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A DgenUnicode.py7 # NOTE: there is an 'alias' facility for blocks which are not present in
74 alias = string.split(block,':') variable
75 alist = string.split(alias[1],',')
78 if alias[0] not in BlockNames:
79 BlockNames[alias[0]] = []
81 BlockNames[alias[0]].append(r)
83 print "Alias %s: %s not in Blocks" % (alias[0], comp)
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/tie/
H A Dtie_file.tcl173 interp alias $ip set {} $self Set
174 interp alias $ip unset {} $self Unset
175 interp alias $ip array {} $self Array
/macosx-10.10.1/ICU-531.30/icuSources/io/
H A Dustdio.c488 UChar *alias; local
520 alias = str->fPos;
527 limit = alias + (n - count);
532 while (alias < limit && !IS_FIRST_STRING_DELIMITER(*alias)) {
534 *(sItr++) = *(alias++);
537 if (alias < limit && IS_FIRST_STRING_DELIMITER(*alias)) {
538 if (CAN_HAVE_COMBINED_STRING_DELIMITER(*alias)) {
539 currDelim = *alias;
[all...]
H A Dufmt_cmn.c225 UChar *alias; local
239 alias = target;
240 ucnv_toUnicode(defConverter, &alias, alias + tSize, &s, s + sSize - 1,
245 *alias = 0x0000;
/macosx-10.10.1/Heimdal-398.1.2/lib/hdb/
H A Dcommon.c81 const hdb_entry_alias *alias,
88 alias, &len, ret);
138 hdb_entry_alias alias; local
140 ret = hdb_value2entry_alias(context, &value, &alias);
145 hdb_principal2key(context, alias.principal, &key);
147 free_hdb_entry_alias(&alias);
291 hdb_entry_alias alias; local
304 code = hdb_value2entry_alias(context, &value, &alias);
312 code = krb5_principal_compare(context, alias.principal,
314 free_hdb_entry_alias(&alias);
80 hdb_entry_alias2value(krb5_context context, const hdb_entry_alias *alias, krb5_data *value) argument
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/mail/
H A Dmailabbrev.el33 ;; `mail-personal-alias-file') if it exists. Your mail aliases will
42 ;; Your mail alias abbrevs will be in effect only when the point is in an
53 ;; You can also insert a mail alias with mail-abbrev-insert-alias
54 ;; (bound to C-c C-a), which prompts you for an alias (with completion)
60 ;; alias someone "John Doe <doe@quux.com>"
65 ;; an alias which expands to three addresses:
67 ;; alias foobar addr-1 addr-2 "address three <addr-3>"
87 ;; alias group1 fred ethel
88 ;; alias group
[all...]
/macosx-10.10.1/configd-699.1.5/nwi/
H A Dnetwork_information.c421 nwi_ifstate_t alias = ifstate->af_alias; local
429 if (alias != NULL) {
430 flags |= flags_from_af(alias->af);
431 if ((alias->flags & NWI_IFSTATE_FLAGS_HAS_DNS) != 0) {
505 nwi_ifstate_t alias, next; local
507 alias =
510 if (alias == NULL) {
515 if ((alias->flags & NWI_IFSTATE_FLAGS_NOT_IN_LIST) != 0) {
519 next = ++alias;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DAliasAnalysisCounter.cpp10 // This file implements a pass which can be used to count how many alias queries
11 // are being made and how the alias analysis implementation being used responds.
55 printLine("no alias", No, AASum);
56 printLine("may alias", May, AASum);
57 printLine("partial alias", Partial, AASum);
58 printLine("must alias", Must, AASum);
107 AliasResult alias(const Location &LocA, const Location &LocB);
127 AliasAnalysisCounter::alias(const Location &LocA, const Location &LocB) { function in class:AliasAnalysisCounter
128 AliasResult R = getAnalysis<AliasAnalysis>().alias(LocA, LocB);
132 case NoAlias: No++; AliasString = "No alias"; brea
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pop3d/
H A Dpop3d_udb.tcl71 interp alias {} ::$name {} ::pop3d::udb::UdbProc $name
122 interp alias {} ::$name {}
294 interp alias $ip add {} ::pop3d::udb::_add $name
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/support/devel/
H A Dall.tcl158 interp alias $c pSet {} set
159 interp alias $c Note {} Note
204 interp alias \
/macosx-10.10.1/tcl-105/tcl_ext/thread/thread/lib/
H A Dttrace.tcl56 interp alias {} [namespace current]::_array {} nsv_array
57 interp alias {} [namespace current]::_incr {} nsv_incr
58 interp alias {} [namespace current]::_lappend {} nsv_lappend
59 interp alias {} [namespace current]::_names {} nsv_names
60 interp alias {} [namespace current]::_set {} nsv_set
61 interp alias {} [namespace current]::_unset {} nsv_unset
68 interp alias {} [namespace current]::_array {} tsv::array
69 interp alias {} [namespace current]::_incr {} tsv::incr
70 interp alias {} [namespace current]::_lappend {} tsv::lappend
71 interp alias {} [namespac
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/support/devel/
H A Dall.tcl158 interp alias $c pSet {} set
159 interp alias $c Note {} Note
204 interp alias \
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Analysis/
H A DAliasAnalysis.h11 // common interface used by all clients of alias analysis information, and
12 // implemented by all alias analysis implementations. Mod/Ref information is
27 // alias, regardless of the value of the Size component.
72 /// getAnalysisUsage - All alias analysis implementations should invoke this
82 /// size arguments in alias queries to indicate that the caller does not
152 /// Alias analysis result - Either we know for sure that it does not alias, we
153 /// know for sure it must alias, or we don't know anything: The two pointers
154 /// _might_ alias. This enum is designed so you can do things like:
155 /// if (AA.alias(P1, P2)) { ... }
156 /// to check to see if two pointers might alias
175 AliasResult alias(const Value *V1, uint64_t V1Size, function in class:llvm::AliasAnalysis
181 AliasResult alias(const Value *V1, const Value *V2) { function in class:llvm::AliasAnalysis
[all...]
/macosx-10.10.1/swig-12/Lib/ruby/
H A Dstd_list.i38 %alias std::list::push "<<";
H A Dstd_multiset.i48 %alias std::multiset::push "<<";
H A Dstd_vector.i49 %alias std::vector::push "<<";
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/page/
H A Dparse_peghb.tcl26 interp alias sb Start {} ::page::parse::peghb::Start $t
27 interp alias sb Define {} ::page::parse::peghb::Define $t
/macosx-10.10.1/tcl-105/tk/tk/library/ttk/
H A Dttk.tcl22 # Define $old command as a deprecated alias for $new command
26 interp alias {} $old {} ttk::do'deprecate $old $new
30 # issue a warning (once), then re-alias old to new.
34 interp alias {} $old {} $new
53 # ttk::panedwindow used to be named ttk::paned. Keep the alias for now.
/macosx-10.10.1/Heimdal-398.1.2/lib/akadmin/
H A DHeimODAdmin.h106 int HeimODAddServerAlias(ODNodeRef node, ODRecordRef record, CFStringRef alias, CFErrorRef *error);
107 int HeimODRemoveServerAlias(ODNodeRef node, ODRecordRef record, CFStringRef alias, CFErrorRef *error);
170 /* Add Kerberos principal alias for MMe/AppleID */
171 int HeimODAddAppleIDAlias(ODNodeRef node, ODRecordRef record, CFStringRef alias, CFErrorRef *error);
172 int HeimODRemoveAppleIDAlias(ODNodeRef node, ODRecordRef record, CFStringRef alias, CFErrorRef *error);
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Ducnv_io.h85 * Map a converter alias name to a canonical converter name.
86 * The alias is searched for case-insensitively, the converter name
88 * Returns NULL if the alias is not found.
89 * @param alias The alias name to be searched.
92 * @return the converter name in mixed-case, return NULL if the alias is not found.
95 ucnv_io_getConverterName(const char *alias, UBool *containsOption, UErrorCode *pErrorCode);
106 * Swap an ICU converter alias table. See implementation for details.
/macosx-10.10.1/Libc-1044.1.2/fbsdcompat/sys/
H A Dcdefs.h71 #define __weak_reference(sym,alias)
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dtype.c24 #include "../alias.h"
37 execve, or if it is a builtin command, or an alias. Possible flag
40 `alias', `keyword', `function', `builtin',
47 be a filename in the path, alias, function,
56 alias
174 alias_t *alias; local
182 /* Command is an alias? */
183 if (((dflags & CDESC_FORCE_PATH) == 0) && expand_aliases && (alias = find_alias (command)))
186 puts ("alias");
188 printf (_("%s is aliased to `%s'\n"), command, alias
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/opcode/
H A Dm68k.h77 /* The structure used to hold information for an opcode alias. */
81 /* The alias name. */
82 const char *alias; member in struct:m68k_opcode_alias
83 /* The instruction for which this is an alias. */
/macosx-10.10.1/groff-38/groff/src/roff/troff/
H A Ddictionary.h84 int alias(symbol newnm, symbol oldnm);
/macosx-10.10.1/libstdcxx-104.1/src/
H A Dcomplex_io.cc100 extern "C" void ldbl (void) __attribute__ ((alias (#dbl), weak))

Completed in 520 milliseconds

1234567891011>>