HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 1 - 25 of 464) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/renderer/resources/extensions/
searchbox_api.js 2 // 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.focus = function()
    [all...]
webstore_custom_bindings.js 2 // 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._pendingInstall
    [all...]
  /external/chromium_org/chrome/browser/resources/network_speech_synthesis/
tts_extension.js 2 // Use of this source code is governed by a BSD-style license that can be
7 * This is a component extension that implements a text-to-speech (TTS)
10 * This is an "event page", so it's not loaded when the API isn't being used,
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>'.
69 * manifest file. This is used in case the speech synthesis request
77 * This is the main function called to initialize this extension
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeOutputStream.java 14 this.output1 = output1;
15 this.output2 = output2;
21 this.output1.write(buf);
22 this.output2.write(buf);
28 this.output1.write(buf, off, len);
29 this.output2.write(buf, off, len);
35 this.output1.write(b);
36 this.output2.write(b);
42 this.output1.flush();
43 this.output2.flush()
    [all...]
TeeInputStream.java 15 this.input = input;
16 this.output = output;
54 this.input.close();
55 this.output.close();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
SQL_Results.java 3 * All rights reserved. This program and the accompanying materials
5 * which accompanies this distribution, and is available at
46 if (this.queryBuildScenarios != null)
47 this.queryBuildScenarios.close();
48 if (this.queryBuildAllScenarios != null)
49 this.queryBuildAllScenarios.close();
50 if (this.queryScenarioSummaries != null)
51 this.queryScenarioSummaries.close();
52 if (this.queryAllComments != null)
53 this.queryAllComments.close()
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 5 * you may not use this file except in compliance with the License.
33 this.indexMap = indexMap;
34 this.reader = new CodeReader();
35 this.reader.setAllVisitors(new GenericVisitor());
36 this.reader.setStringVisitor(new StringVisitor());
37 this.reader.setTypeVisitor(new TypeVisitor());
38 this.reader.setFieldVisitor(new FieldVisitor());
39 this.reader.setMethodVisitor(new MethodVisitor());
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionOutputBuffer.java 10 * this work for additional information regarding copyright ownership.
11 * The ASF licenses this file to You under the Apache License, Version 2.0
12 * (the "License"); you may not use this file except in compliance with
24 * This software consists of voluntary contributions made by many
47 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
66 this.out = out;
67 this.wire = wire;
71 this.out.write(b, off, len);
72 if (this.wire.enabled()) {
73 this.wire.output(b, off, len)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauthsimple.js 16 * 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.
24 * THIS SOFTWARE IS PROVIDED BY UNITEDHEROES.NET ''AS IS'' AND ANY
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
41 * This class only builds the OAuth elements, it does not do the actual
78 * @param api_key {string} The API Key (sometimes referred to as the consumer key) This value is usually supplied by the site you wish to use.
79 * @param shared_secret (string) The shared secret. This value is also usually provided by the site you wish to use.
84 throw("Missing argument: api_key (oauth_consumer_key) for OAuthSimple. This is usually provided by the hosting site.");
86 throw("Missing argument: shared_secret (shared secret) for OAuthSimple. This is usually provided by the hosting site.")
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauthsimple.js 16 * 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.
24 * THIS SOFTWARE IS PROVIDED BY UNITEDHEROES.NET ''AS IS'' AND ANY
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
41 * This class only builds the OAuth elements, it does not do the actual
78 * @param api_key {string} The API Key (sometimes referred to as the consumer key) This value is usually supplied by the site you wish to use.
79 * @param shared_secret (string) The shared secret. This value is also usually provided by the site you wish to use.
84 throw("Missing argument: api_key (oauth_consumer_key) for OAuthSimple. This is usually provided by the hosting site.");
86 throw("Missing argument: shared_secret (shared secret) for OAuthSimple. This is usually provided by the hosting site.")
    [all...]
  /external/chromium_org/extensions/test/data/
unit_test_environment_specific_bindings.js 2 // 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.numCallbacksToRun_ = numCallbacksToRun
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
ServiceEventImpl.java 34 * The service info record, or null if the service could be be resolved. This is also null, if the event was fired to a service type listener.
52 this._type = type;
53 this._name = name;
54 this._info = info;
91 buf.append("[" + this.getClass().getSimpleName() + "@" + System.identityHashCode(this) + " ");
93 buf.append(this.getName());
95 buf.append(this.getType());
97 buf.append(this.getInfo());
120 ServiceInfoImpl newInfo = new ServiceInfoImpl(this.getInfo())
    [all...]
SocketListener.java 30 this.setDaemon(true);
31 this._jmDNSImpl = jmDNSImpl;
39 while (!this._jmDNSImpl.isCanceling() && !this._jmDNSImpl.isCanceled()) {
41 this._jmDNSImpl.getSocket().receive(packet);
42 if (this._jmDNSImpl.isCanceling() || this._jmDNSImpl.isCanceled() || this._jmDNSImpl.isClosing() || this._jmDNSImpl.isClosed()) {
46 if (this._jmDNSImpl.getLocalHost().shouldIgnorePacket(packet))
    [all...]
DNSOutgoing.java 36 this(size, out, 0);
46 this.write(value & 0xFF);
136 _out._names.put(aName, Integer.valueOf(this.size() + _offset));
161 MessageOutputStream record = new MessageOutputStream(512, _out, _offset + this.size() + 2);
172 * This can be used to turn off domain name compression. This was helpful for tracking problems interacting with other mdns implementations.
196 this(flags, true, DNSConstants.MAX_MSG_TYPICAL);
206 this(flags, multicast, DNSConstants.MAX_MSG_TYPICAL);
221 _questionsBytes = new MessageOutputStream(senderUDPPayload, this);
222 _answersBytes = new MessageOutputStream(senderUDPPayload, this);
    [all...]
  /development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/
DialogActivity.java 5 * you may not use this file except in compliance with the License.
37 DialogActivity.this.finish();
  /external/chromium_org/third_party/tlslite/tlslite/
__init__.py 2 # 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/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
49 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
68 this.out = out;
77 if (!this.closed) {
78 this.closed = true;
79 this.out.flush();
84 this.out.flush()
    [all...]
AbstractSessionOutputBuffer.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
53 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
81 this.outstream = outstream;
82 this.buffer = new ByteArrayBuffer(buffersize);
83 this.charset = HttpProtocolParams.getHttpElementCharset(params);
84 this.ascii = this.charset.equalsIgnoreCase(HTTP.US_ASCII
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PriorityParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
77 this.lexer.SPorHT();
78 /*this.lexer.match(TokenTypes.ID);
83 // This is in violation of the RFC but
85 priority.setPriority(this.lexer.ttokenSafe());
87 this.lexer.SPorHT();
88 this.lexer.match('\n')
    [all...]
Pipeline.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
64 this.pipeline = pipeline;
68 if (this.isCancelled)
80 this.isCancelled = true;
95 this.length = length;
96 this.bytes = bytes;
107 if (this.readTimeout == -1
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMTreeWalker.java 4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
31 * This class does a pre-order walk of the DTM tree, calling a ContentHandler
35 * I think normally this class should not be needed, because
45 /** DomHelper for this TreeWalker */
93 this.m_contentHandler = contentHandler;
108 // %REVIEW% Why isn't this just traverse(pos,pos)?
110 int top = pos; // Remember the root of this subtree
131 // %REVIEW% This condition isn't tested in traverse(pos,top
    [all...]
  /external/apache-harmony/support/src/test/java/tests/util/
CallVerificationStack.java 4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
82 if (!eles[i].getClassName().equals(this.getClass().getName())) {
86 this.callStack.push(eles[i]);
95 return this.callStack.peek().getClassName();
104 return this.callStack.peek().getMethodName();
112 this.callStack.clear();
123 * Pushes a boolean onto the top of this stack.
128 this.push(new BaseTypeWrapper(val))
    [all...]
  /external/apache-http/src/org/apache/http/impl/
HttpConnectionMetricsImpl.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
42 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
67 this.inTransportMetric = inTransportMetric;
68 this.outTransportMetric = outTransportMetric;
74 if (this.inTransportMetric != null) {
75 return this.inTransportMetric.getBytesTransferred();
82 if (this.outTransportMetric != null)
    [all...]
SocketHttpClientConnection.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
58 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
73 if (this.open) {
79 if (!this.open) {
107 this.socket = socket;
116 this.open = true;
120 return this.open
    [all...]
SocketHttpServerConnection.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
58 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
73 if (this.open) {
79 if (!this.open) {
105 this.socket = socket;
114 this.open = true;
118 return this.socket
    [all...]

Completed in 552 milliseconds

1 2 3 4 5 6 7 8 91011>>