HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 1 - 25 of 812) 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() {
32 this.__defineGetter__('font', GetFont);
33 this.__defineGetter__('fontSize', GetFontSize);
34 this.__defineGetter__('isFocused', IsFocused);
35 this.__defineGetter__('isKeyCaptureEnabled', IsKeyCaptureEnabled);
36 this.__defineGetter__('rtl', GetRightToLeft);
37 this.__defineGetter__('startMargin', GetStartMargin);
38 this.__defineGetter__('value', GetQuery);
40 // This method is restricted to chrome-search://most-visited pages b
    [all...]
webstore_custom_bindings.js 2 // Use of this source code is governed by a BSD-style license that can be
10 this._pendingInstall = null;
14 if (this._pendingInstall)
18 this._pendingInstall = {
27 var pendingInstall = this._pendingInstall;
29 // TODO(kalman): should this be an error?
42 this._pendingInstall = null;
  /external/svox/pico/lib/
picoknow.c 5 * 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->base = NULL
    [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();
  /frameworks/base/core/java/android/os/
ConditionVariable.java 5 * you may not use this file except in compliance with the License.
23 * This differs from the built-in java.lang.Object wait() and notify()
24 * in that this class contains the condition to wait on itself. That means
29 * This class uses itself as the object to wait on, so if you wait()
64 synchronized (this) {
68 this.notifyAll();
81 synchronized (this) {
94 synchronized (this) {
97 this.wait();
119 // Object.wait(0) means wait forever, to mimic this, we jus
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
testview.js 2 // Use of this source code is governed by a BSD-style license that can be
6 * This view displays the progress and results from the "connection tester".
16 DivView.call(this, mainBoxId);
18 this.urlInput_ = document.getElementById(urlInputId);
19 this.summaryDiv_ = document.getElementById(summaryDivId);
22 form.addEventListener('submit', this.onSubmitForm_.bind(this), false);
24 g_browser.addConnectionTestsObserver(this);
30 g_browser.sendStartConnectionTests(this.urlInput_.value);
38 this.summaryDiv_.innerHTML = ''
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetProvider.java 5 * you may not use this file except in compliance with the License.
31 * <p>Extend this class and override one or more of the {@link #onUpdate}, {@link #onDeleted},
66 this.onUpdate(context, AppWidgetManager.getInstance(context), appWidgetIds);
74 this.onDeleted(context, new int[] { appWidgetId });
83 this.onAppWidgetOptionsChanged(context, AppWidgetManager.getInstance(context),
88 this.onEnabled(context);
91 this.onDisabled(context);
98 * this AppWidget provider is being asked to provide {@link android.widget.RemoteViews RemoteViews}
99 * for a set of AppWidgets. Override this method to implement your own AppWidget functionality.
103 * @param context The {@link android.content.Context Context} in which this receiver i
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
NullCipher.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
32 * This class provides an identity cipher that does not transform the input data
43 this.init(Cipher.ENCRYPT_MODE, (Key)null, (SecureRandom)null);
  /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.
32 this.indexMap = indexMap;
33 this.reader = new CodeReader();
34 this.reader.setAllVisitors(new GenericVisitor());
35 this.reader.setStringVisitor(new StringVisitor());
36 this.reader.setTypeVisitor(new TypeVisitor());
37 this.reader.setFieldVisitor(new FieldVisitor());
38 this.reader.setMethodVisitor(new MethodVisitor());
  /external/android-mock/tests/com/google/android/testing/mocking/
ClassDoesWorkInConstructor.java 5 * you may not use this file except in compliance with the License.
26 this.fooInt(1);
27 this.fooByte((byte) 1);
28 this.fooShort((short) 1);
29 this.fooChar('a');
30 this.fooLong(1L);
31 this.fooFloat(1.0f);
32 this.fooDouble(1.0);
33 this.fooBoolean(true);
34 this.fooObject("hello")
    [all...]
  /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
61 this.out = out;
62 this.wire = wire;
66 this.out.write(b, off, len);
67 if (this.wire.enabled()) {
68 this.wire.output(b, off, len);
73 this.out.write(b)
    [all...]
  /external/chromium/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/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/chrome/common/extensions/docs/examples/extensions/wave/
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/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/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...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
TeeOutputStream.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
41 this.branch = branch;
51 this.branch.write(b);
63 this.branch.write(b, off, len);
73 this.branch.write(b);
82 this.branch.flush();
91 this.branch.close();
  /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/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Curve.java 10 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
17 * may be used to endorse or promote products derived from this software
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
64 * @param controlPoints the control points to use to create this curve
68 this(new Spline(Spline.SplineType.CatmullRom, controlPoints, 10, false), nbSubSegments);
79 this.spline = spline;
82 this.createCatmullRomMesh(nbSubSegments);
85 this.createBezierMesh(nbSubSegments)
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
TestHttpClient.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
70 this.params = new BasicHttpParams();
71 this.params
77 this.httpproc = new BasicHttpProcessor();
79 this.httpproc.addInterceptor(new RequestContent());
80 this.httpproc.addInterceptor(new RequestTargetHost());
82 this.httpproc.addInterceptor(new RequestConnControl())
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
StreamHandler.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
33 * <li>java.util.logging.StreamHandler.encoding specifies the encoding this
37 * class to be associated with this handler. No <code>Filter</code> is used by
40 * formatter class to be associated with this handler. Default is
46 * This class is not thread-safe.
50 // the output stream this handler writes to
65 this.os = null;
66 this.writer = null
    [all...]
  /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
63 this.out = out;
72 if (!this.closed) {
73 this.closed = true;
74 this.out.flush();
79 this.out.flush();
83 if (this.closed)
    [all...]

Completed in 1215 milliseconds

1 2 3 4 5 6 7 8 91011>>