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

1234567

/external/chromium_org/chrome/renderer/resources/extensions/
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...]
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...]
/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/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
H A Dp8.cpp3 void f(A* p = this) { } // expected-error{{invalid use of 'this'}} argument
/external/svox/pico/lib/
H A Dpicoknow.c5 * you may not use this file except in compliance with the License.
46 picoknow_KnowledgeBase this; local
49 this = picoos_allocate(mm,sizeof(*this));
50 if (NULL != this) {
51 PICODBG_TRACE(("allocated KnowledgeBase at address %i with size %i",(picoos_uint32)this,sizeof(*this)));
53 this->next = NULL;
54 this->id = PICOKNOW_KBID_NULL;
55 this
63 picoknow_disposeKnowledgeBase(picoos_MemoryManager mm, picoknow_KnowledgeBase * this) argument
[all...]
H A Dpicokdbg.c5 * you may not use this file except in compliance with the License.
73 static pico_status_t kdbgInitialize(register picoknow_KnowledgeBase this, argument
79 if (NULL == this || NULL == this->subObj) {
83 kdbg = (kdbg_subobj_t *)this->subObj;
84 kdbg->phonesyms = this->base;
89 static pico_status_t kdbgSubObjDeallocate(register picoknow_KnowledgeBase this, argument
91 if (NULL != this) {
92 picoos_deallocate(mm, (void *) &this->subObj);
98 pico_status_t picokdbg_specializeDbgKnowledgeBase(picoknow_KnowledgeBase this, argument
114 picokdbg_getDbg(picoknow_KnowledgeBase this) argument
125 picokdbg_getPhoneId(const picokdbg_Dbg this, const picoos_char *phsym) argument
144 picokdbg_getPhoneSym(const picokdbg_Dbg this, const picoos_uint8 phid) argument
[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/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/extensions/test/data/
H A Dunit_test_environment_specific_bindings.js2 // Use of this source code is governed by a BSD-style license that can be
53 this.timeouts_ = {};
54 this.nextTimeoutId_ = 0;
55 this.currentTime = 0;
56 this.autorunEnabled_ = false;
64 global.setTimeout = this.setTimeout_.bind(this);
65 global.clearTimeout = this.clearTimeout_.bind(this);
75 this
[all...]
/external/chromium_org/third_party/tlslite/tlslite/
H A D__init__.py2 # See the LICENSE file for legal information regarding use of this file.
28 from tlslite.api import __version__ # Unsure why this is needed, but it is namespace
/external/clang/test/Sema/
H A Doverloaded-func-transparent-union.c15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) { argument
16 this.object->str = str;
17 this.object->str2 = str2;
20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) { argument
21 this.object->str = str;
22 this.object->str2 = str;
H A Dnonnull.c12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) { argument
13 this.object->str = str;
/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 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
/external/qemu/distrib/sdl-1.2.15/src/audio/dummy/
H A DSDL_dummyaudio.c16 License along with this library; if not, write to the Free Software
64 SDL_AudioDevice *this; local
67 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
68 if ( this ) {
69 SDL_memset(this, 0, (sizeof *this));
70 this->hidden = (struct SDL_PrivateAudioData *)
71 SDL_malloc((sizeof *this->hidden));
73 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/picogui/
H A DSDL_pgevents.c16 License along with this library; if not, write to the Free Software
69 SDL_VideoDevice *this = (SDL_VideoDevice *) evt->extra; local
70 pgFocus(this->hidden->wCanvas);
98 pgSetWidget(this->hidden->wCanvas, PG_WP_TRIGGERMASK,
99 pgGetWidget(this->hidden->wCanvas, PG_WP_TRIGGERMASK) |
104 pgFocus(this->hidden->wCanvas);
107 pgBind(this->hidden->wApp, PG_WE_CLOSE, &PG_HandleClose, NULL);
108 pgBind(this->hidden->wCanvas, PG_WE_BUILD, &PG_HandleResize, NULL);
109 pgBind(this->hidden->wCanvas, PG_WE_KBD_CHAR, &PG_HandleChar, NULL);
110 pgBind(this
[all...]
/external/skia/gm/rebaseline_server/
H A Ddownload_actuals_test.py6 Use of this source code is governed by a BSD-style license that can be
16 Although, if you're using an SVN checkout, this will blow away .svn directories
28 import fix_pythonpath # must do this first namespace
/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/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/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...]
/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/ui/file_manager/image_loader/
H A Drequest.js2 // Use of this source code is governed by a BSD-style license that can be
22 this.id_ = id;
28 this.cache_ = cache;
34 this.request_ = request;
40 this.sendResponse_ = callback;
47 this.image_ = new Image();
54 this.contentType_ = null;
61 this.xhr_ = new AuthorizedXHR();
68 this.canvas_ = document.createElement('canvas');
74 this
[all...]
/external/chromium_org/remoting/webapp/
H A Dhost_table_entry.js2 // Use of this source code is governed by a BSD-style license that can be
29 this.host = host;
31 this.webappMajorVersion_ = webappMajorVersion;
33 this.onRename_ = onRename;
35 this.onDelete_ = opt_onDelete;
38 this.tableRow = null;
40 this.hostNameCell_ = null;
42 this.warningOverlay_ = null;
45 this.onBlurReference_ = function() {};
47 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...]

Completed in 3429 milliseconds

1234567