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

12345

/macosx-10.9.5/Libc-997.90.3/include/
H A Dbitstring.h81 register bitstr_t *_name = name; \
86 _name[_startbyte] &= ((0xff >> (8 - (_start&0x7))) | \
89 _name[_startbyte] &= 0xff >> (8 - (_start&0x7)); \
91 _name[_startbyte] = 0; \
92 _name[_stopbyte] &= 0xff << ((_stop&0x7) + 1); \
98 register bitstr_t *_name = name; \
103 _name[_startbyte] |= ((0xff << (_start&0x7)) & \
106 _name[_startbyte] |= 0xff << ((_start)&0x7); \
108 _name[_startbyte] = 0xff; \
109 _name[_stopbyt
[all...]
/macosx-10.9.5/xnu-2422.115.4/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.9.5/swig-10/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.9.5/WebCore-7537.78.1/inspector/front-end/
H A DResourceType.js40 this._name = name;
53 return this._name;
93 return this._name;
H A DSettings.js156 this._name = name;
165 this._eventSupport.addEventListener(this._name, listener, thisObject);
170 this._eventSupport.removeEventListener(this._name, listener, thisObject);
175 return this._name;
184 if (this._storage && this._name in this._storage) {
186 this._value = JSON.parse(this._storage[this._name]);
188 delete this._storage[this._name];
199 this._storage[this._name] = JSON.stringify(value);
201 console.error("Error saving setting with name:" + this._name);
204 this._eventSupport.dispatchEventToListeners(this._name, valu
[all...]
H A DSimpleWorkspaceProvider.js40 this._name = name;
56 return WebInspector.SimpleProjectDelegate.projectId(this._name, this.type());
66 if (!this._name) {
70 var parsedURL = new WebInspector.ParsedURL(this._name);
74 this._displayName = this._name;
77 this._displayName = this._name;
H A DSnippetStorage.js140 this._name = name || storage.namePrefix + id;
168 return this._name;
173 if (this._name === name)
176 this._name = name;
H A DDatabase.js38 this._name = name;
52 return this._name;
57 this._name = x;
/macosx-10.9.5/libdispatch-339.92.1/src/
H A Dprotocol.defs37 _name : mach_port_name_t
44 _name : mach_port_name_t
75 _name : mach_port_name_t
/macosx-10.9.5/pyobjc-42/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.9.5/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); \
H A Dcxx_db.cpp29 #define DB_METHOD(_name, _argspec, _arglist, _retok) \
30 int Db::_name _argspec \
35 ret = db->_name _arglist; \
37 DB_ERROR(dbenv_, "Db::" # _name, ret, error_policy()); \
41 #define DB_DESTRUCTOR(_name, _argspec, _arglist, _retok) \
42 int Db::_name _argspec \
48 DB_ERROR(dbenv_, "Db::" # _name, EINVAL, error_policy()); \
51 ret = db->_name _arglist; \
54 DB_ERROR(dbenv_, "Db::" # _name, ret, error_policy()); \
58 #define DB_METHOD_QUIET(_name, _argspe
[all...]
H A Dcxx_seq.cpp22 #define DBSEQ_METHOD(_name, _argspec, _arglist, _destructor) \
23 int DbSequence::_name _argspec \
29 ret = seq->_name _arglist; \
34 "DbSequence::" # _name, ret, ON_ERROR_UNKNOWN); \
/macosx-10.9.5/CF-855.17/
H A DCFAvailability.h186 #define CF_ENUM(_type, _name) enum _name : _type _name; enum _name : _type
188 #define CF_OPTIONS(_type, _name) _type _name; enum : _type
190 #define CF_OPTIONS(_type, _name) enum _name : _type _name; enum _name
[all...]
/macosx-10.9.5/ruby-104/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.9.5/ICU-511.35/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.9.5/JavaScriptCore-7537.78.1/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.9.5/IONetworkingFamily-100/
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) &&
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/src/
H A Dfield.h20 c4_String _name; member in class:c4_Field
H A Dfield.cpp33 _name = c4_String(description_, p - description_);
36 _name = c4_String(description_, n);
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dservlkf.cpp31 : _name()
37 : _name(name)
131 result.append(_name);
/macosx-10.9.5/swig-10/Lib/php/
H A Dstd_string.i52 ZVAL_STRINGL($input, const_cast<char*>($1_name.data()), $1_name.size(), 1);

Completed in 194 milliseconds

12345