Searched refs:name (Results 76 - 100 of 12286) sorted by relevance

1234567891011>>

/macosx-10.10/mDNSResponder-561.1.1/mDNSPosix/
H A DServices.txt6 # The first character of the service name can be a '#' if you escape it with
13 # <service name>
25 name=val1
30 name=val2
36 name=val3
/macosx-10.10/tcl-105/tcl/tcl/library/
H A Dparray.tcl20 foreach name $names {
21 if {[string length $name] > $maxl} {
22 set maxl [string length $name]
26 foreach name $names {
27 set nameString [format %s(%s) $a $name]
28 puts stdout [format "%-*s = %s" $maxl $nameString $array($name)]
/macosx-10.10/tcl-105/tcl84/tcl/library/
H A Dparray.tcl19 foreach name [lsort [array names array $pattern]] {
20 if {[string length $name] > $maxl} {
21 set maxl [string length $name]
25 foreach name [lsort [array names array $pattern]] {
26 set nameString [format %s(%s) $a $name]
27 puts stdout [format "%-*s = %s" $maxl $nameString $array($name)]
/macosx-10.10/zsh-61/zsh/Util/
H A Dpreconfig3 find . -name .git -prune -o -name '?*.*' -prune -o -name .preconfig -print | (
/macosx-10.10/WebCore-7600.1.25/dom/
H A DDOMError.idl13 * 3. Neither the name of Apple Inc. ("Apple") nor the names of
32 readonly attribute DOMString name;
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/
H A Ddefault.edc24 name: "webkit/selection/foreground";
29 name: "webkit/selection/background";
34 name: "webkit/focus_ring";
41 group { name: "webkit/base";
/macosx-10.10/WebCore-7600.1.25/replay/
H A DAllReplayInputs.h43 #define IMPORT_FROM_JSC_NAMESPACE(name) \
44 using JSC::name; \
/macosx-10.10/bash-94.1.2/bash-3.2/examples/scripts.noah/
H A Daref.bash21 local name="$1"
24 set -- ${!name}
/macosx-10.10/bind9-45.101/bind9/bin/pkcs11/win32/
H A Dcryptoki.h46 #define CK_DEFINE_FUNCTION(returnType, name) \
47 returnType CK_EXPORT_SPEC CK_CALL_SPEC name
49 #define CK_DECLARE_FUNCTION(returnType, name) \
50 returnType CK_EXPORT_SPEC CK_CALL_SPEC name
52 #define CK_DECLARE_FUNCTION_POINTER(returnType, name) \
53 returnType CK_IMPORT_SPEC (CK_CALL_SPEC CK_PTR name)
55 #define CK_CALLBACK_FUNCTION(returnType, name) \
56 returnType (CK_CALL_SPEC CK_PTR name)
/macosx-10.10/bind9-45.101/bind9/bin/tests/rbt/
H A Ddns_rbt_addname_1_data6 dns_rbt.data add new.name ISC_R_SUCCESS
H A Ddns_rbt_deletename_2_data6 dns_rbt.data delete new.name ISC_R_NOTFOUND
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/
H A Dcleanall.sh29 -name 'K*' -o -name '*~' -o -name '*.core' -o -name '*.log' \
30 -o -name '*.pid' -o -name '*.keyset' -o -name named.run \
31 -o -name lwresd.run -o -name ans.run \) -print | xargs rm -f
/macosx-10.10/bind9-45.101/bind9/bin/tests/virtual-time/
H A Dcleanall.sh28 -name 'K*' -o -name '*~' -o -name '*.core' -o -name '*.log' \
29 -o -name '*.pid' -o -name '*.keyset' -o -name named.run \
30 -o -name lwresd.run -o -name ans.run \) -print | xargs rm -f
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Denv.cpp48 impl::get(const std::string& name) argument
50 return atf_env_get(name.c_str());
54 impl::has(const std::string& name) argument
56 return atf_env_has(name.c_str());
60 impl::set(const std::string& name, const std::string& val) argument
62 atf_error_t err = atf_env_set(name.c_str(), val.c_str());
68 impl::unset(const std::string& name) argument
70 atf_error_t err = atf_env_unset(name.c_str());
/macosx-10.10/cups-408/cups/scheduler/
H A Dbanners.h22 char *name; /* Name of banner */ member in struct:__anon7283
39 extern cupsd_banner_t *cupsdFindBanner(const char *name);
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Dversion.c30 print_version (const char *name) argument
34 printf ("GNU %s %s\n", name, BFD_VERSION_STRING);
/macosx-10.10/ncurses-44/ncurses/include/
H A Dedit_cfg.sh25 # Except as contained in this notice, the name(s) of the above copyright #
42 for name in \
49 if ( grep "[ ]$name[ ]" $1 2>&1 >$TMP )
55 echo '** edit: '$name $value
57 -e "s@#define ${name}.*\$@#define $name $value@" \
58 -e "s@#if $name\$@#if $value /* $name */@" \
59 -e "s@#if !$name\$@#if $value /* !$name */
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Lib/objc/
H A D_protocols.py9 def protocolNamed(name):
12 equivalent of @protocol(name) in Objective-C.
15 name = unicode(name)
17 return PROTOCOL_CACHE[name]
23 if pname == name:
29 if pname == name:
31 raise ProtocolError("protocol %r does not exist" % (name,), name)
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-CoreData/Lib/CoreData/
H A D_convenience.py13 def NSMOsetValue_ForKey_(self, name, value):
16 super(self.__class__, self).setValue_forKey_(value, name)
18 self.setValue_forKey_(value, name)
21 NSObject.__setattr__(self, name, value)
23 def NSMOgetValueForKey_(self, name):
26 return super(self.__class__, self).valueForKey_(name)
28 return self.valueForKey_(name)
31 raise AttributeError(name)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Lib/objc/
H A D_protocols.py9 def protocolNamed(name):
12 equivalent of @protocol(name) in Objective-C.
15 name = unicode(name)
17 return PROTOCOL_CACHE[name]
23 if pname == name:
29 if pname == name:
31 raise ProtocolError("protocol %r does not exist" % (name,), name)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-CoreData/Lib/CoreData/
H A D_convenience.py13 def NSMOsetValue_ForKey_(self, name, value):
16 super(self.__class__, self).setValue_forKey_(value, name)
18 self.setValue_forKey_(value, name)
21 NSObject.__setattr__(self, name, value)
24 def NSMOgetValueForKey_(self, name):
27 return super(self.__class__, self).valueForKey_(name)
29 return self.valueForKey_(name)
32 raise AttributeError(name)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Lib/objc/
H A D_protocols.py10 def protocolNamed(name):
13 equivalent of @protocol(name) in Objective-C.
17 name = unicode(name)
19 return PROTOCOL_CACHE[name]
25 if pname == name:
31 if pname == name:
33 raise ProtocolError("protocol %r does not exist" % (name,), name)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-CoreData-2.5.1/Lib/CoreData/
H A D_convenience.py13 def NSMOsetValue_ForKey_(self, name, value):
16 super(self.__class__, self).setValue_forKey_(value, name)
18 self.setValue_forKey_(value, name)
21 NSObject.__setattr__(self, name, value)
24 def NSMOgetValueForKey_(self, name):
27 return super(self.__class__, self).valueForKey_(name)
29 return self.valueForKey_(name)
32 raise AttributeError(name)
/macosx-10.10/tcl-105/tcl_ext/bwidget/bwidget/
H A Dbitmap.tcl29 proc Bitmap::get { name } {
34 if {[info exists _bmp($name)]} {
35 return $_bmp($name)
39 set ext [file extension $name]
45 if { [file exists $name] } {
47 set _bmp($name) [xpm-to-image $name]
48 return $_bmp($name)
50 if {![catch {set _bmp($name) [image create $_bmp($ext) -file $name]}]} {
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclconfig/
H A Dupdt_tcl_m4.sh3 find ${1:-.} -name 'tcl.m4' ! -path "./tclconfig/*" \
5 find ${1:-.} \( -name 'configure.in' -or -name 'configure.ac' \) \
8 find ${1:-.} -name 'configure' \

Completed in 299 milliseconds

1234567891011>>