Searched refs:names (Results 101 - 125 of 1254) sorted by relevance

1234567891011>>

/macosx-10.10.1/bootp-298/bootplib/
H A Dbsdplib.c80 STATIC const char * names[] = { local
96 return (names[tag]);
114 STATIC const char * names[] = { local
121 return (names[type]);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/examples/tie/
H A Dreceiving_client.tcl27 foreach key [lsort [array names a]] {
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/
H A Dstructure.tcl65 if {[llength [array names kw]] != [llength $keys]} {
85 if {[llength [array names rd]] != [llength $refids]} {
106 ($keys ne [lsort -dict [array names kw]]) ||
107 ($refids ne [lsort -dict [array names rd]])
139 foreach kw [lsort -dict [array names k]] {
151 foreach rid [lsort -dict [array names r]] {
207 foreach kw [lsort -dict [array names k]] {
219 foreach rid [lsort -dict [array names r]] {
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/tie/
H A Dtie_array.tcl79 method names {} {
81 return [array names thesource]
H A Dtie_rarray.tcl61 method names {} {
62 return [$self Call array names $remotevar]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dcpdtrtst.cpp41 UnicodeString names[]={"Greek-Latin", "Latin-Devanagari", "Devanagari-Latin", "Latin-Greek"}; local
44 Transliterator* t1=Transliterator::createInstance(names[0], UTRANS_FORWARD, parseError, status);
45 Transliterator* t2=Transliterator::createInstance(names[1], UTRANS_FORWARD, parseError, status);
46 Transliterator* t3=Transliterator::createInstance(names[2], UTRANS_FORWARD, parseError, status);
47 Transliterator* t4=Transliterator::createInstance(names[3], UTRANS_FORWARD, parseError, status);
66 names[0],
67 names[0]+";"+names[3],
68 names[3]+";"+names[
[all...]
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebPDFDocumentExtras.mm38 CGPDFArrayRef names;
39 if (CGPDFDictionaryGetArray(subtree, "Names", &names)) {
40 size_t nameCount = CGPDFArrayGetCount(names) / 2;
43 CGPDFArrayGetObject(names, 2 * i + 1, &object);
87 // The names are arbitrary. We are only interested in the values.
/macosx-10.10.1/llvmCore-3425.0.34/autoconf/m4/
H A Dcheck_gnu_make.m47 dnl Search all the common names for GNU make
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.cpp43 static const char *const names[] = { local
55 std::string Result(names[IntrID - Intrinsic::num_intrinsics]);
/macosx-10.10.1/llvmCore-3425.0.34/projects/sample/autoconf/m4/
H A Dcheck_gnu_make.m47 dnl Search all the common names for GNU make
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/include/
H A Dprop.h91 /* Add property names to request
93 * names -- list of property names; must persist until context freed
101 LIBSASL_API int prop_request(struct propctx *ctx, const char **names);
111 /* Fill in an array of struct propval based on a list of property names
118 * The vals array MUST be atleast as long as the names array.
123 LIBSASL_API int prop_getnames(struct propctx *ctx, const char **names,
144 /* format the requested property names into a string
146 * sep -- separator between property names (unused if none requested)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Lib/AppKit/
H A D__init__.py14 def NSDictionaryOfVariableBindings(*names):
16 Return a dictionary with the given names and there values.
23 for nm in names
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/blt/
H A Dbusy.rb71 def names(pat=None) method
72 tk_split_list(tk_call('::blt::busy', 'names', pat))
74 alias windows names
/macosx-10.10.1/ruby-106/ruby/test/scanf/
H A Dtest_scanfblocks.rb36 names = @str.scanf("%s%d") { |name, year| name.upcase }
37 assert_equal(names, ["BEETHOVEN", "BACH", "HANDEL", "SCARLATTI", "BRAHMS"])
/macosx-10.10.1/security_ocspd-55124/server/
H A DocspdServer.cpp778 crl_names_t names; local
779 names.crlFile = crlGenerateFileName(dataPtr, dataLen, gCrlPath, ".crl");
780 names.pemFile = crlGenerateFileName(dataPtr, dataLen, gCrlPath, ".pem");
781 names.updateFile = crlGenerateFileName(dataPtr, dataLen, gCrlPath, ".update");
782 names.revokedFile = crlGenerateFileName(dataPtr, dataLen, gCrlPath, ".revoked");
783 if(!names.crlFile || !names.pemFile || !names.updateFile || !names.revokedFile) {
802 names
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/support/devel/sak/note/
H A Dnote.tcl26 foreach k [array names notes] {
40 foreach k [lsort -dict [array names notes]] {
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/library/
H A Dconvlib.tcl27 # Parse a tclIndex file, returning an array of file names with the list of
53 foreach procName [array names auto_index] {
89 # Generate the .tlib package names with contain the directory and
97 foreach srcFile [array names fileTbl] {
/macosx-10.10.1/BerkeleyDB-21/db/perl/DB_File/
H A DMakefile.PL76 my @names = qw(
109 my %names = map { $_, 1} @names;
120 delete $names{$1} if defined $1 ;
124 if ( keys %names )
126 my $missing = join ("\n\t", sort keys %names) ;
127 die "The following names are missing from \@EXPORT in DB_File.pm\n" .
134 NAMES => \@names,
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/util/test/
H A DSharedTestUtils.java164 String[] names = fromDir.list();
165 if (names != null) {
166 for (int i = 0; i < names.length; i += 1) {
167 File fromFile = new File(fromDir, names[i]);
171 File toFile = new File(toDir, names[i]);
/macosx-10.10.1/Heimdal-398.1.2/kuser/
H A Dkcpytkt.c65 static void do_kcpytkt (int count, char *names[], argument
104 ret = krb5_cc_resolve(context, names[0], &destccache);
115 ret = krb5_parse_name(context, names[i], &in_creds.server);
118 krb5_warn(context, ret, "Parse error for %s", names[i]);
125 krb5_warn(context, ret, "Unparse error for %s", names[i]);
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/crlTool/
H A DcrlTool.cpp32 const CE_GeneralNames *names,
39 for(unsigned nameDex=0; nameDex<names->numNames; nameDex++) {
40 CE_GeneralName *name = &names->generalName[nameDex];
101 CE_GeneralNames *names = dp->distPointName->dpn.fullName; local
102 int rtn = fetchCrlViaGeneralNames(names, crl, crlLen);
31 fetchCrlViaGeneralNames( const CE_GeneralNames *names, unsigned char **crl, size_t *crlLen) argument
/macosx-10.10.1/tcl-105/tk/tk/library/
H A Dcomdlg.tcl65 foreach cmdsw [array names cmd] {
84 set len [llength [array names cmd]]
88 foreach cmdsw [lsort [array names cmd]] {
180 foreach name [array names FocusIn $t,*] {
183 foreach name [array names FocusOut $t,*] {
/macosx-10.10.1/tcl-105/tk84/tk/library/
H A Dcomdlg.tcl65 foreach cmdsw [array names cmd] {
84 set len [llength [array names cmd]]
88 foreach cmdsw [lsort [array names cmd]] {
180 foreach name [array names FocusIn $t,*] {
183 foreach name [array names FocusOut $t,*] {
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dipc_misc.c191 * and (c) if we could ask for port names by kobject type. Not
203 mach_port_name_t *names; local
213 * form. Discard 'types' immediately, then copyout 'names'
230 names = (mach_port_name_t *)(uintptr_t)map_names;
233 if (fileport_invoke(task, names[i], action, arg,
238 (vm_address_t)names, ncnt * sizeof (*names));
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/nssov/
H A Dshadow.c159 struct berval *names; local
182 names = a->a_vals;
186 names=tmparr;
187 names[0]=cbp->name;
188 BER_BVZERO(&names[1]);
218 for (i=0;!BER_BVISNULL(&names[i]);i++)
221 WRITE_BERVAL(cbp->fp,&names[i]);

Completed in 309 milliseconds

1234567891011>>