Lines Matching refs:name
15 // * Neither the name of Google Inc. nor the names of its
107 var messageName = ctor.name || ctor.displayName;
109 '$name': messageName
111 for (var name in ctor.prototype) {
112 var match = /^get([A-Z]\w*)/.exec(name);
113 if (match && name != 'getExtension' &&
114 name != 'getJsPbMessageId') {
117 var val = thing[name]();
148 * Formats a field name for output as camelCase.
150 * @param {string} name Name of the field.
154 jspb.debug.formatFieldName_ = function(name) {
156 return name.replace(/^[A-Z]/, function(c) {