Searched defs:this (Results 1 - 25 of 164) sorted by path

1234567

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs55 if ( object.Equals( this[i], value ) )
93 public object this[int index]
128 array.SetValue( this[i], index + i );
215 array.SetValue( this[i], index + i );
316 object IList.this[int index]
320 return this[index];
324 this[index] = (T)value;
369 array[arrayIndex + i] = this[i];
386 if ( object.Equals( this[i], item ) )
403 public T this[in
[all...]
/external/bison/
H A Dmaint.mk18 ## along with this program. If not, see <http://www.gnu.org/licenses/>.
65 # You can override this variable in cfg.mk to set your own regexp
83 # (i.e., with no $(srcdir) prefix), this definition is careful to
103 this-vc-tag = v$(VERSION)
104 this-vc-tag-regexp = v$(VERSION_REGEXP)
107 tag-this-version = $(subst .,_,$(VERSION))
108 this-vc-tag = $(tag-package)-$(tag-this-version)
109 this-vc-tag-regexp = $(this
[all...]
/external/bison/src/
H A DLR0.c19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
310 state_list *this = first_state;
316 state *s = this->state;
324 first_state = this->next;
325 free (this);
346 item of this initial rule. */
357 /* Set up itemset for the transitions out of this state. itemset gets a
360 /* Record the reductions allowed out of this state. */
308 state_list *this = first_state; local
H A Dsymtab.c19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
439 symbol_check_alias_consistency (symbol *this) argument
441 symbol *sym = this;
442 symbol *str = this->alias;
445 if (!(this->alias
446 && this->user_token_number == USER_NUMBER_HAS_STRING_ALIAS))
486 symbol_check_alias_consistency_processor (void *this, argument
489 symbol_check_alias_consistency (this);
500 symbol_pack (symbol *this) argument
502 aver (this
513 symbol_pack_processor(void *this, void *null ATTRIBUTE_UNUSED) argument
548 symbol_translation(symbol *this) argument
568 symbol_translation_processor(void *this, void *null ATTRIBUTE_UNUSED) argument
834 symbol *this = symbols[i]; local
855 symbol *this = symbols[i]; local
[all...]
/external/blktrace/
H A Dblkparse.c18 * along with this program; if not, write to the Free Software
73 * some duplicated effort here, we can unify this hash and the ppi hash later
1170 unsigned long long this = bit->time; local
1173 pdi->backwards = (this < last) ? 'B' : ' ';
1174 pdi->last_reported_time = this;
/external/blktrace/btt/
H A Ddevmap.c17 * along with this program; if not, write to the Free Software
50 char this[128]; local
53 sprintf(this, "%u,%u", MAJOR(device), MINOR(device));
57 if (!strcmp(this, dmp->devno))
H A Ddevs.c17 * along with this program; if not, write to the Free Software
185 void (*fnc)(struct io *iop, struct io *this), int rm_after)
189 struct io *this; local
194 this = list_entry(p, struct io, f_head);
195 list_del(&this->f_head);
196 io_release(this);
184 dip_foreach(struct io *iop, enum iop_type type, void (*fnc)(struct io *iop, struct io *this), int rm_after) argument
H A Ddip_rb.c17 * along with this program; if not, write to the Free Software
68 void (*fnc)(struct io *iop, struct io *this),
72 struct io *this = rb_entry(n, struct io, rb_node); local
74 __u64 this_s = BIT_START(this), this_e = BIT_END(this);
77 if (fnc) fnc(iop, this);
79 list_add_tail(&this->f_head, head);
67 rb_foreach(struct rb_node *n, struct io *iop, void (*fnc)(struct io *iop, struct io *this), struct list_head *head) argument
H A Dinlines.h17 * along with this program; if not, write to the Free Software
303 void (*fnc)(struct io *iop, struct io *this),
301 dip_rb_fe(struct d_info *dip, enum iop_type type, struct io *iop, void (*fnc)(struct io *iop, struct io *this), struct list_head *head) argument
H A Doutput.c17 * along with this program; if not, write to the Free Software
331 struct seek_mode_info *p, *this, *new_list = NULL; local
333 while ((this = sip->head) != NULL) {
334 sip->head = this->next;
335 this->next = NULL;
337 if (new_list == NULL || this->nseeks > new_list->nseeks)
338 new_list = this;
339 else if (this->nseeks == new_list->nseeks) {
341 if (p->mode == this->mode)
345 this
[all...]
H A Dproc.c17 * along with this program; if not, write to the Free Software
67 struct pn_info *this; local
71 this = rb_entry(n, struct pn_info, rb_node);
72 if (pid < this->u.pid)
74 else if (pid > this->u.pid)
77 return this->pip;
86 struct pn_info *this; local
90 this = rb_entry(n, struct pn_info, rb_node);
91 cmp = strcmp(name, this->u.name);
97 return this
105 struct pn_info *this; local
132 struct pn_info *this; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
H A Dprogress_manager.js2 // Use of this source code is governed by a BSD-style license that can be
11 this.xhr_ = null;
12 this.progressBar_ = document.querySelector('.progress-bar');
13 this.selectedGridItem_ = null;
20 * Note: this must be called before xhr.send() function. Otherwise, we wont get
27 if (this.xhr_)
28 this.removeEventListeners_();
29 this.hideProgressBar(this.selectedGridItem_);
30 this
[all...]
H A Dwallpaper_manager.js2 // Use of this source code is governed by a BSD-style license that can be
17 this.dialogDom_ = dialogDom;
18 this.document_ = dialogDom.ownerDocument;
19 this.enableOnlineWallpaper_ = loadTimeData.valueExists('manifestBaseURL');
20 this.selectedCategory = null;
21 this.selectedItem_ = null;
22 this.progressManager_ = new ProgressManager();
23 this.customWallpaperData_ = null;
24 this.currentWallpaper_ = null;
25 this
[all...]
/external/chromium_org/chrome/browser/resources/hotword_helper/
H A Daudio_client.js2 // Use of this source code is governed by a BSD-style license that can be
21 this.speechOverlay_ = null;
24 this.checkSpeechUiRetries_ = 0;
30 this.port_ = null;
37 this.uiStatus_ = null;
40 * Bound function used to handle commands sent from the page to this script.
43 this.handleCommandFromPageFunc_ = null;
147 if (!this.speechOverlay_) {
148 window.setTimeout(this.delayedCheckSpeechOverlayUi_.bind(this),
[all...]
/external/chromium_org/chrome/browser/resources/network_speech_synthesis/
H A Dtts_extension.js2 // Use of this source code is governed by a BSD-style license that can be
12 * request and the parameters match one of the voices in this extension's
18 * The main class for this extension. Adds listeners to
39 * until the speech synthesis server capabilities response provides this.
40 * The key of this map is of the form '<lang>-<gender>'.
77 * This is the main function called to initialize this extension.
84 this.voiceNameToLangAndGender_[voices[i].voice_name] = {
91 this.audioElement_ = document.createElement('audio');
92 document.body.appendChild(this.audioElement_);
93 this
[all...]
/external/chromium_org/chrome/browser/resources/pdf/
H A Dpdf.js2 // Use of this source code is governed by a BSD-style license that can be
36 this.streamDetails = streamDetails;
37 this.loaded = false;
42 this.sizer_ = $('sizer');
43 this.toolbar_ = $('toolbar');
44 this.pageIndicator_ = $('page-indicator');
45 this.progressBar_ = $('progress-bar');
46 this.passwordScreen_ = $('password-screen');
47 this.passwordScreen_.addEventListener('password-submitted',
48 this
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
H A Dmodel.js3 * Use of this source code is governed by a BSD-style license that can be
8 this.reset_({precision: precision});
27 var operator = this.operand && this.operator;
28 var result = this.calculate_(operator, this.operand);
29 return this.reset_({accumulator: result, operator: input});
36 var operator = this.operator || this.defaults.operator;
37 var operand = this
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
H A Dchrome_ex_oauthsimple.js16 * notice, this list of conditions and the following disclaimer.
18 * notice, this list of conditions and the following disclaimer in the
22 * derived from this software without specific prior written permission.
87 */ this._secrets={};
88 this._parameters={};
92 this._secrets['consumer_key'] = consumer_key;
95 this._secrets['shared_secret'] = shared_secret;
97 this._default_signature_method= "HMAC-SHA1";
98 this._action = "GET";
99 this
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
H A Dbinaryajax.js14 this.getRawData = function() {
21 this.getByteAt = function(iOffset) {
27 this.getByteAt = function(iOffset) {
32 this.getLength = function() {
36 this.getSByteAt = function(iOffset) {
37 var iByte = this.getByteAt(iOffset);
44 this.getShortAt = function(iOffset, bBigEndian) {
46 (this.getByteAt(iOffset) << 8) + this.getByteAt(iOffset + 1)
47 : (this
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
H A Dchrome_ex_oauthsimple.js16 * notice, this list of conditions and the following disclaimer.
18 * notice, this list of conditions and the following disclaimer in the
22 * derived from this software without specific prior written permission.
87 */ this._secrets={};
88 this._parameters={};
92 this._secrets['consumer_key'] = consumer_key;
95 this._secrets['shared_secret'] = shared_secret;
97 this._default_signature_method= "HMAC-SHA1";
98 this._action = "GET";
99 this
[all...]
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dextension_options.js2 // Use of this source code is governed by a BSD-style license that can be
24 privates(extensionoptionsNode).internal = this;
25 this.extensionoptionsNode = extensionoptionsNode;
26 this.viewInstanceId = IdGenerator.GetNextId();
28 this.autosizeDeferred = false;
31 this.eventHandlers = {};
37 this.setupEventProperty('createfailed');
38 new ExtensionOptionsEvents(this, this.viewInstanceId);
40 this
[all...]
H A Dsearchbox_api.js2 // Use of this source code is governed by a BSD-style license that can be
11 this.searchBox = new function() {
33 this.__defineGetter__('displayInstantResults', GetDisplayInstantResults);
34 this.__defineGetter__('isFocused', IsFocused);
35 this.__defineGetter__('isKeyCaptureEnabled', IsKeyCaptureEnabled);
36 this.__defineGetter__('rtl', GetRightToLeft);
37 this.__defineGetter__('startMargin', GetStartMargin);
38 this.__defineGetter__('suggestion', GetSuggestionToPrefetch);
39 this.__defineGetter__('value', GetQuery);
41 this
[all...]
H A Dwebstore_custom_bindings.js2 // Use of this source code is governed by a BSD-style license that can be
11 this._pendingInstall = null;
12 this.onInstallStageChanged =
14 this.onDownloadProgress =
19 if (this._pendingInstall)
31 // must be set prior to the inline installation starting (this is also
35 this.onInstallStageChanged.hasListeners(),
36 this.onDownloadProgress.hasListeners(),
41 this._pendingInstall = {
51 var pendingInstall = this
[all...]
/external/chromium_org/chrome/test/ext_auto/auto_provider/
H A Dconnection_handler.js2 // Use of this source code is governed by a BSD-style license that can be
9 this.eventListener_ = {};
15 this.unregisterListeners_(stream);
20 this.unregisterListeners_(stream);
26 if (!this.eventListener_[stream.socketId_])
27 this.eventListener_[stream.socketId_] = {};
29 if (!this.eventListener_[stream.socketId_][eventName]) {
30 this.eventListener_[stream.socketId_][eventName] = {
38 if (!this.eventListener_[stream.socketId_])
41 for (var eventName in this
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dweb_view.js2 // Use of this source code is governed by a BSD-style license that can be
13 // TODO(lazyboy): Rename this to WebViewInternal and call WebViewInternal
41 this.validPartitionId = true;
42 this.persistStorage = false;
43 this.storagePartitionId = '';
47 if (!this.validPartitionId) {
50 return (this.persistStorage ? 'persist:' : '') + this.storagePartitionId;
67 this.validPartitionId = false;
71 this
[all...]

Completed in 978 milliseconds

1234567