HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 126 - 150 of 842) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
RuleListController.java 10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
15 derived from this software without specific prior written permission.
17 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
64 this.initComponents();
101 this.list.addListSelectionListener(l);
114 this.setPreferredSize(new Dimension(50, 18));
136 this.setText("Error!");
138 return this;
    [all...]
WorkSpaceView.java 10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
15 derived from this software without specific prior written permission.
17 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * To change this template, choose Tools | Templates
65 this.paneEditor = new TestCaseEditController(this);
66 this.paneStatus = new StatusBarController();
68 this.toolbar = new JToolBar()
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.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
60 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
77 this.abortLock = new ReentrantLock();
87 return this.uri;
105 this.uri = uri;
110 this.abortLock.lock();
112 if (this.aborted)
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
RequestWrapper.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
51 * This class is also capable of resetting the request headers to
61 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
79 this.original = request;
83 this.uri = ((HttpUriRequest) request).getURI();
84 this.method = ((HttpUriRequest) request).getMethod();
85 this.version = null
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.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
51 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
79 this.cache = new byte[bufferSize];
80 this.out = out;
92 this(out, 2048);
101 if (this.cachePosition > 0) {
102 this.out.writeLine(Integer.toHexString(this.cachePosition))
    [all...]
AbstractMessageWriter.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
48 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
66 this.sessionBuffer = buffer;
67 this.lineBuf = new CharArrayBuffer(128);
68 this.lineFormatter = (formatter != null) ?
84 this.sessionBuffer.writeLine
85 (lineFormatter.formatHeader(this.lineBuf, header))
    [all...]
  /external/apache-http/src/org/apache/http/message/
AbstractHttpMessage.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
52 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
64 this.headergroup = new HeaderGroup();
65 this.params = params;
69 this(null);
74 return this.headergroup.containsHeader(name);
79 return this.headergroup.getHeaders(name)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemWriter.java 86 this.write(hdr.getName());
87 this.write(": ");
88 this.write(hdr.getValue());
89 this.newLine();
92 this.newLine();
117 this.write(buf, 0, index);
118 this.newLine();
126 this.write("-----BEGIN " + type + "-----");
127 this.newLine();
134 this.write("-----END " + type + "-----")
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderAWT.java 59 this.setupMaterialColor(data, format, neg, pixelColor);
60 this.blendPixel(resultPixel, materialColor, pixelColor, affectFactor, blendType, blenderContext);
76 * This method alters the material color in a way dependent on the type of
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainFractalGridTest.java 45 this.flyCam.setMoveSpeed(100f);
47 this.stateManager.attach(state);
50 this.mat_terrain = new Material(this.assetManager, "Common/MatDefs/Terrain/HeightBasedTerrain.j3md");
63 Texture grass = this.assetManager.loadTexture("Textures/Terrain/splat/grass.jpg");
65 this.mat_terrain.setTexture("region1ColorMap", grass);
66 this.mat_terrain.setVector3("region1", new Vector3f(15, 200, this.grassScale));
69 Texture dirt = this.assetManager.loadTexture("Textures/Terrain/splat/dirt.jpg");
71 this.mat_terrain.setTexture("region2ColorMap", dirt)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ACallCommand.java 0 /* This file was generated by SableCC (http://www.sablecc.org/). */
38 cloneNode(this._position_),
39 cloneList(this._macro_),
40 cloneList(this._arguments_));
45 ((Analysis) sw).caseACallCommand(this);
50 return this._position_;
55 if(this._position_ != null)
57 this._position_.parent(null);
67 node.parent(this);
70 this._position_ = node
    [all...]
  /frameworks/base/core/java/android/os/storage/
IObbActionListener.java 5 * you may not use this file except in compliance with the License.
38 this.attachInterface(this, DESCRIPTOR);
57 return this;
76 this.onObbResult(filename, nonce, status);
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
LeakTest.java 4 * you may not use this file except in compliance with the License.
114 synchronized (this) {
116 this.wait();
125 synchronized (this) {
127 this.notifyAll();
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
IconLoaderTest.java 5 * you may not use this file except in compliance with the License.
70 synchronized(this) {
73 this.notifyAll();
80 this.wait();
95 return this;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat16RootDirectory.java 4 * This library is free software; you can redistribute it and/or modify it
9 * This library is distributed in the hope that it will be useful, but
15 * along with this library; If not, write to the Free Software Foundation, Inc.,
40 this.deviceOffset = FatUtils.getRootDirOffset(bs);
41 this.device = bs.getDevice();
80 this.device.read(deviceOffset, data);
85 this.device.write(deviceOffset, data);
100 * As a FAT12/16 root directory can not change it's size, this method
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 4 * This library is free software; you can redistribute it and/or modify it
9 * This library is distributed in the hope that it will be useful, but
15 * along with this library; If not, write to the Free Software Foundation, Inc.,
31 * This is a {@code BlockDevice} that uses a {@link File} as it's backing store.
60 this.readOnly = readOnly;
61 this.closed = false;
63 this.raf = new RandomAccessFile(file, modeString);
64 this.fc = raf.getChannel();
68 this.closed = false;
69 this.raf = raf
    [all...]
  /cts/libs/deviceutil/src/android/cts/util/
TestThread.java 5 * you may not use this file except in compliance with the License.
75 this.join(runTime);
76 if (this.isAlive()) {
77 this.interrupt();
78 this.join(runTime);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.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
29 * <code>lock</code> used to synchronize access to this Writer.
40 * the <code>lock</code> used to synchronize access to this Writer.
52 * Close this Writer. This is the concrete implementation required. This
55 * @throws java.io.IOException If an IO error occurs closing this StringWriter.
62 * Flush this Writer. This is the concrete implementation required. Thi
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultResponseParser.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
51 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
72 this.responseFactory = responseFactory;
73 this.lineBuf = new CharArrayBuffer(128);
74 this.maxGarbageLines = params.getIntParameter(
83 this.lineBuf.clear();
88 int i = sessionBuffer.readLine(this.lineBuf)
    [all...]
LoggingSessionInputBuffer.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
49 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
68 this.in = in;
69 this.wire = wire;
73 return this.in.isDataAvailable(timeout);
77 int l = this.in.read(b, off, len);
78 if (this.wire.enabled() && l > 0)
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/simple_api/
simple_api_parser.js 20 this.options = Utils.mergeOptions(DEFAULT_OPTIONS, options);
21 this.handlers = {
22 doctype: this._wrapHandler(handlers.doctype),
23 startTag: this._wrapHandler(handlers.startTag),
24 endTag: this._wrapHandler(handlers.endTag),
25 text: this._wrapHandler(handlers.text),
26 comment: this._wrapHandler(handlers.comment)
31 var parser = this;
35 if (this.options.locationInfo) {
50 this._reset(html)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/client/webdav/
WebdavSupportedExchange.java 5 // All rights reserved. This program and the accompanying materials
7 // and Apache License v2.0 which accompanies this distribution.
15 // You may elect to redistribute this code under either of these licenses.
54 synchronized (this)
58 this.wait();
  /external/jmdns/src/javax/jmdns/impl/
DNSStatefulObject.java 18 * <b>Implementation note:</b> This interface is accessed from multiple threads. The implementation must be thread safe.
25 * This class define a semaphore. On this multiple threads can wait the arrival of one event. Thread wait for a maximum defined by the timeout.
27 * Implementation note: this class is based on {@link java.util.concurrent.Semaphore} so that they can be released by the timeout timer.
86 aLog.append(this._name);
133 return this._dns;
137 this._dns = dns;
145 if (this._task == null && this._state == state) {
146 this.lock()
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.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
49 * Bone index in the skeleton which this track effects.
75 this.targetBoneIndex = targetBoneIndex;
76 this.setKeyframes(times, translations, rotations);
88 this.targetBoneIndex = targetBoneIndex;
89 this.setKeyframes(times, translations, rotations, scales)
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
WindowsFakeFileSystem.java 5 * you may not use this file except in compliance with the License.
47 this.setDirectoryListingFormatter(new WindowsDirectoryListingFormatter());
96 * @return true if the specified path component is a root for this filesystem

Completed in 557 milliseconds

1 2 3 4 56 7 8 91011>>