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

<<11121314151617181920>>

  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
RunnerController.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.
78 this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
79 this.add(scroll);
80 this.setBorder(BorderFactory.createEmptyBorder());
81 this.setOpaque(false)
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionInputBuffer.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
54 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
83 this.instream = instream;
84 this.buffer = new byte[buffersize];
85 this.bufferpos = 0;
86 this.bufferlen = 0;
87 this.linebuffer = new ByteArrayBuffer(buffersize)
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HttpService.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 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
97 this.processor = processor;
104 this.connStrategy = connStrategy;
111 this.responseFactory = responseFactory;
115 this.handlerResolver = handlerResolver;
119 this.expectationVerifier = expectationVerifier
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.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.
39 * This class does a pre-order walk of the DOM tree, calling a ContentHandler
53 /** DomHelper for this TreeWalker */
56 /** Locator object for this TreeWalker */
87 this.m_contentHandler = contentHandler;
109 this.m_contentHandler = contentHandler;
127 this.m_contentHandler = contentHandler;
154 this.m_contentHandler.startDocument()
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ComponentResultsView.java 3 * All rights reserved. This program and the accompanying materials
5 * which accompanies this distribution, and is available at
54 * This view show for each performance machine the results of all builds
59 * There's no real action available action from this view, only the possibility
113 this.fullSelectionImageDescriptor = ImageDescriptor.createFromFile(getClass(), "icallout_obj.gif");
114 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID);
115 this.preferences.addPreferenceChangeListener(this);
116 Util.initMilestones(this.preferences);
135 this.tabFolder = new CTabFolder(parent, SWT.BORDER)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/client/
BlockingHttpConnection.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.
61 synchronized (this)
65 this.notifyAll();
76 LOG.debug("onIdleExpired {}ms {} {}",idleForMs,this,_endp);
94 synchronized(this)
96 this.notifyAll();
103 Connection connection = this;
111 while (_endp.isOpen() && connection==this)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/continuation/
FauxContinuation.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.
34 * This implementation of Continuation is used by the {@link ContinuationFilter}
73 l.onComplete(this);
81 l.onTimeout(this);
96 synchronized(this)
105 synchronized(this)
114 synchronized(this)
135 synchronized(this)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
RolloverFileOutputStream.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.
38 * This output stream puts content in a file that is rolled over every 24 hours.
73 this(filename,true,ROLLOVER_FILE_RETAIN_DAYS);
86 this(filename,append,ROLLOVER_FILE_RETAIN_DAYS);
102 this(filename,append,retainDays,TimeZone.getDefault());
120 this(filename,append,retainDays,zone,null,null);
223 // Is this a rollover file?
329 RolloverFileOutputStream.this.setFile()
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
BlenderLoader.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
67 * This is the main loading class. Have in notice that asset manager needs to have loaders for resources like textures.
80 this.setup(assetInfo);
88 Object object = this.toObject(block.getStructure(blenderContext));
92 if (this.isRootObject(loadingResults, (Node)object)) {
108 loadingResults.addMaterial(this.toMaterial(block.getStructure(blenderContext)));
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 19 * This class holds the basic data that describes a bone.
30 /** This variable indicates if the Y axis should be the UP axis. */
36 /** The children of this context. */
65 this(boneStructure, null, objectToArmatureMatrix, bonesPoseChannels, blenderContext);
86 this.parent = parent;
87 this.boneStructure = boneStructure;
93 this.computeRestMatrix(objectToArmatureMatrix);
96 this.children.add(new BoneContext(child, this, objectToArmatureMatrix, bonesPoseChannels, blenderContext));
101 blenderContext.setBoneContext(boneStructure.getOldMemoryAddress(), this);
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintRotLimit.java 16 * This class represents 'Rot limit' constraint type in blender.
30 * This constructor creates the constraint instance.
41 * this exception is thrown when the blender file is somehow
82 this.update();
83 Object owner = this.owner.getObject();
84 AnimData animData = blenderContext.getAnimData(this.owner.getOma());
87 BlenderTrack track = this.getTrack(owner, animData.skeleton, animation);
93 this.rotLimit(angles, ipo.calculateValue(frame));
101 Transform ownerTransform = this.owner.getTransform();
103 this.rotLimit(angles, ipo.calculateValue(0));
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Field.java 10 * This class represents a single field in the structure. It can be either a primitive type or a table or a reference to
27 /** This variable indicates the level of the pointer. */
30 * This variable determines the sizes of the array. If the value is null the n the field is not an array.
33 /** This variable indicates if the field is a function pointer. */
45 * this exception is thrown if the names contain errors
48 this.type = type;
49 this.blenderContext = blenderContext;
50 this.parseField(new StringBuilder(name));
72 return new Field(this);
76 * This method fills the field wth data read from the input stream.
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorVoronoi.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
47 * This class generates the 'voronoi' texture.
78 float[][] colorBand = this.computeColorband(tex, blenderContext);
119 this.cellNoiseV(pa[m], pa[m + 1], pa[m + 2], hashPoint);
145 this.applyBrightnessAndContrast(bacd, texres);
151 this.applyBrightnessAndContrast(texres, bacd.contrast, bacd.brightness)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ADefCommand.java 0 /* This file was generated by SableCC (http://www.sablecc.org/). */
42 cloneNode(this._position_),
43 cloneList(this._macro_),
44 cloneList(this._arguments_),
45 cloneNode(this._command_));
50 ((Analysis) sw).caseADefCommand(this);
55 return this._position_;
60 if(this._position_ != null)
62 this._position_.parent(null);
72 node.parent(this);
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
InsnList.java 10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
38 * A doubly linked list of {@link AbstractInsnNode} objects. <i>This
44 * Indicates if preconditions of methods of this class must be checked.
53 * The number of instructions in this list.
58 * The first instruction in this list. May be <tt>null</tt>.
63 * The last instruction in this list. May be <tt>null</tt>.
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Contact.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
68 // This must be private or the toString will go for a loop!
91 this.parameters.set(nv);
168 this.parameters.set(EXPIRES, deltaSeconds);
190 this.wildCardFlag = true;
191 this.address = new AddressImpl();
192 this.address.setWildCardFlag()
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageProcessor.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
54 * stack that were incorporated into this code. Niklas Uhrberg suggested that
101 this.sipStack = sipStack;
103 this.messageQueue = new LinkedList();
105 this.port = port;
107 this.sock = sipStack.getNetworkLayer().createDatagramSocket(port,
123 // Note that on WINDOWS this is actually broken. It wil
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
RealBufferedSink.java 5 * you may not use this file except in compliance with the License.
30 this.buffer = buffer;
31 this.sink = sink;
35 this(sink, new Buffer());
116 return this;
177 return this;
184 return this;
204 RealBufferedSink.this.flush();
209 RealBufferedSink.this.close();
213 return RealBufferedSink.this + ".outputStream()"
    [all...]
  /external/v8/test/mjsunit/tools/
profile.js 7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 this.profile = new Profile();
62 this.stack_ = [];
63 this.addFunctions_();
75 this.profile.addLibrary('lib1', 0x11000, 0x12000);
76 this.profile.addStaticCode('lib1-f1', 0x11100, 0x11900)
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupTransport.java 5 * you may not use this file except in compliance with the License.
38 // this time, but the restore is still running and the caller should simply
64 * Ask the transport for the name under which it should be registered. This will
78 * return {@code null} from this method.
81 * launch the transport's configuration UI. This method will return {@code null}
95 * sending data. This method should not return null.
115 * UI, then it should return {@code null} from this method.
118 * launch the transport's data-management UI. This method will return
131 * affordance. If the transport supplies a data management intent, this
141 * This is per-transport so that mock transports used for testing can coexist wit
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetProviderInfo.java 5 * you may not use this file except in compliance with the License.
31 * Describes the meta data for an installed AppWidget provider. The fields in this class
54 * Indicates that the widget can be displayed on the home screen. This is the default value.
69 * Identity of this AppWidget component. This component should be a {@link
73 * <p>This field corresponds to the <code>android:name</code> attribute in
80 * at least this width, and will often be given more, depending on the host.
82 * <p>This field corresponds to the <code>android:minWidth</code> attribute in
89 * at least this height, and will often be given more, depending on the host.
91 * <p>This field corresponds to the <code>android:minHeight</code> attribute i
    [all...]
  /frameworks/base/core/java/android/content/
AbstractThreadedSyncAdapter.java 5 * you may not use this file except in compliance with the License.
39 * by monitoring its network activity over the course of a minute. If the network traffic over this
52 * In order to be a sync adapter one must extend this class, provide implementations for the
55 * with an intent with action <code>android.content.SyncAdapter</code>. This service
78 * indicate which content authority and for which account types this sync adapter serves.
79 * <li><code>android:userVisible</code> defaults to true and controls whether or not this sync
109 // all accesses to this member variable must be synchronized on mSyncThreadLock
118 * @param context the {@link android.content.Context} that this is running within.
126 this(context, autoInitialize, false /* allowParallelSyncs */);
131 * @param context the {@link android.content.Context} that this is running within
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 5 * you may not use this file except in compliance with the License.
38 this.attachInterface(this, DESCRIPTOR);
57 return this;
72 this.onUsbMassStorageConnectionChanged(connected);
81 this.onStorageStateChanged(path, oldState, newState);
  /frameworks/base/core/java/android/service/notification/
StatusBarNotification.java 5 * you may not use this file except in compliance with the License.
51 this(pkg, opPkg, id, tag, uid, initialPid, score, notification, user,
61 this.pkg = pkg;
62 this.opPkg = opPkg;
63 this.id = id;
64 this.tag = tag;
65 this.uid = uid;
66 this.initialPid = initialPid;
67 this.score = score;
68 this.notification = notification
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ServerSocketChannelTest.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
54 this.serverChannel = ServerSocketChannel.open();
55 this.clientChannel = SocketChannel.open();
59 if (null != this.serverChannel) {
61 this.serverChannel.close();
67 if (null != this.clientChannel) {
69 this.clientChannel.close();
89 assertEquals(SelectionKey.OP_ACCEPT, this.serverChannel.validOps())
    [all...]

Completed in 163 milliseconds

<<11121314151617181920>>