Searched refs:_name (Results 1 - 25 of 88) sorted by relevance

1234

/macosx-10.10/Libc-1044.1.2/include/
H A Dbitstring.h80 bitstr_t *_name = (name); \
85 _name[_startbyte] &= ((0xff >> (8 - (_start&0x7))) | \
88 _name[_startbyte] &= 0xff >> (8 - (_start&0x7)); \
90 _name[_startbyte] = 0; \
91 _name[_stopbyte] &= 0xff << ((_stop&0x7) + 1); \
97 bitstr_t *_name = (name); \
102 _name[_startbyte] |= ((0xff << (_start&0x7)) & \
105 _name[_startbyte] |= 0xff << ((_start)&0x7); \
107 _name[_startbyte] = 0xff; \
108 _name[_stopbyt
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dbitstring.h109 bitstr_t *_name = (name); \
114 _name[_startbyte] &= ((0xff >> (8 - (_start & 0x7))) | \
117 _name[_startbyte] &= 0xff >> (8 - (_start & 0x7)); \
119 _name[_startbyte] = 0; \
120 _name[_stopbyte] &= 0xff << ((_stop & 0x7) + 1); \
126 bitstr_t *_name = (name); \
131 _name[_startbyte] |= ((0xff << (_start & 0x7)) & \
134 _name[_startbyte] |= 0xff << ((_start) & 0x7); \
136 _name[_startbyte] = 0xff; \
137 _name[_stopbyt
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLegacyProfileType.js29 this._name = name;
48 return this._name;
53 return this._name;
H A DApplicationCacheManifestTreeElement.js42 if (!this._name)
45 return this._name;
66 this._name = WebInspector.displayNameForURL(this.representedObject.manifestURL, parsedURL);
70 this._secondaryName = this._name !== secondaryName ? secondaryName : null;
/macosx-10.10/swig-12/Lib/typemaps/
H A Dexception.swg15 #define %varfail_fmt(_type,_name) "in variable '"`_name`"' of type '"`_type`"'"
17 #define %argfail_fmt(_type,_name,_argn) "in method '" `_name` "', argument " `_argn`" of type '" `_type`"'"
21 #define %argnullref_fmt(_type,_name,_argn) %nullref_fmt() %argfail_fmt(_type, _name, _argn)
23 #define %varnullref_fmt(_type,_name) %nullref_fmt() %varfail_fmt(_type, _name)
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DIndexedDatabase.js30 this._name = name;
52 return this._name;
77 cookie[WebInspector.IndexedDatabase.NameCookieKey] = this._name;
H A DIndexedDatabaseObjectStore.js30 this._name = name;
52 return this._name;
77 cookie[WebInspector.IndexedDatabaseObjectStore.NameCookieKey] = this._name;
H A DIndexedDatabaseObjectStoreIndex.js30 this._name = name;
49 return this._name;
74 cookie[WebInspector.IndexedDatabaseObjectStoreIndex.NameCookieKey] = this._name;
H A DDatabaseTableObject.js30 this._name = name;
42 return this._name;
H A DExecutionContext.js34 this._name = name;
59 return this._name;
H A DSetting.js34 this._name = name;
54 return this._name;
88 console.error("Error saving setting with name: " + this._name);
92 this.dispatchEventToListeners(WebInspector.Setting.Event.Changed, this._value, {name: this._name});
H A DContentFlow.js35 this._name = name;
56 return this._documentNodeIdentifier + ":" + this._name;
66 return this._name;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKScriptMessage.mm39 RetainPtr<NSString> _name;
50 _name = adoptNS([name copy]);
73 return _name.get();
/macosx-10.10/libdispatch-442.1.4/src/
H A Dprotocol.defs37 _name : mach_port_name_t
44 _name : mach_port_name_t
75 _name : mach_port_name_t
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Lib/objc/
H A D_properties.py70 self._name = name
94 v = type(self)(name=self._name,
107 if self._name is None:
108 self._name = name
112 ivname = '_' + self._name
143 attrsetter(self._name, ivname, self._copy),
167 getterName = self._name.encode('latin1')
177 dynGetterName = self._name
204 selName = b'validate' + self._name[0].upper().encode('latin') + self._name[
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Lib/objc/
H A D_properties.py57 self._name = name
76 v = type(self)(name=self._name,
89 if self._name is None:
90 self._name = name
94 ivname = '_' + self._name
125 attrsetter(self._name, ivname, self._copy),
143 getterName = self._name.encode('latin1')
153 dynGetterName = self._name
179 selName = b'validate' + self._name[0].upper().encode('latin') + self._name[
[all...]
/macosx-10.10/BerkeleyDB-21/db/cxx/
H A Dcxx_txn.cpp24 #define DBTXN_METHOD(_name, _delete, _argspec, _arglist) \
25 int DbTxn::_name _argspec \
31 ret = txn->_name _arglist; \
36 DB_ERROR(dbenv, "DbTxn::" # _name, ret, ON_ERROR_UNKNOWN); \
H A Dcxx_mpool.cpp22 #define DB_MPOOLFILE_METHOD(_name, _argspec, _arglist, _retok) \
23 int DbMpoolFile::_name _argspec \
31 ret = mpf->_name _arglist; \
34 "DbMpoolFile::"#_name, ret, ON_ERROR_UNKNOWN); \
38 #define DB_MPOOLFILE_METHOD_VOID(_name, _argspec, _arglist) \
39 void DbMpoolFile::_name _argspec \
43 mpf->_name _arglist; \
H A Dcxx_dbc.cpp29 #define DBC_METHOD(_name, _argspec, _arglist, _retok) \
30 int Dbc::_name _argspec \
35 ret = dbc->_name _arglist; \
38 "Dbc::" # _name, ret, ON_ERROR_UNKNOWN); \
/macosx-10.10/ruby-106/ruby/
H A Dprobes_helper.h32 VALUE _name = rb_class_path_no_cache(_klass); \
33 if (!NIL_P(_name)) { \
34 classname = StringValuePtr(_name); \
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dtextfile.cpp21 TextFile::TextFile(const char* _name, const char* _encoding, UErrorCode& ec) : argument
28 if (U_FAILURE(ec) || _name == 0 || _encoding == 0) {
36 name = uprv_malloc(uprv_strlen(_name) + 1);
42 uprv_strcpy(name, _name);
45 name = (char*) _name;
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/GetSet/
H A Dgetset-003.js47 obj.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
48 obj.name getter = function() {this.nameGETS++; return this._name;}
77 Object.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
78 Object.prototype.name getter = function() {this.nameGETS++; return this._name;}
111 TestObject.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
112 TestObject.prototype.name getter = function() {this.nameGETS++; return this._name;}
H A Dgetset-004.js47 obj.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
48 obj.__defineGetter__('name', function() {this.nameGETS++; return this._name;});
77 Object.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
78 Object.prototype.__defineGetter__('name', function() {this.nameGETS++; return this._name;});
111 TestObject.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
112 TestObject.prototype.__defineGetter__('name', function() {this.nameGETS++; return this._name;});
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/src/
H A Dfield.h20 c4_String _name; member in class:c4_Field
/macosx-10.10/IONetworkingFamily-101/
H A DIONetworkMedium.cpp78 _name = OSSymbol::withCString(name);
80 _name = IONetworkMedium::nameForType(type);
82 if (!_name)
116 if (_name)
118 _name->release();
119 _name = 0;
161 return _name;
195 return ( (medium->_name == _name) &&

Completed in 401 milliseconds

1234