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

<<11121314151617181920>>

  /frameworks/base/core/tests/coretests/src/android/os/
TestHandlerThread.java 5 * you may not use this file except in compliance with the License.
38 synchronized (this) {
66 synchronized (this) {
73 synchronized (this) {
87 synchronized (TestHandlerThread.this) {
92 TestHandlerThread.this.notifyAll();
99 synchronized (this) {
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
ClientTest.java 5 * you may not use this file except in compliance with the License.
163 this.bindService(new Intent(IWapPushManager.class.getName()), conn,
171 this.unbindService(conn);
  /libcore/luni/src/main/java/java/util/logging/
SocketHandler.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
27 * This handler reads the following properties from the log manager to
31 * defaults to {@code Level.ALL} if this property is not found or has an invalid
34 * class to be associated with this handler, defaults to {@code null} if this
37 * formatter class to be associated with this handler, defaults to
38 * {@code java.util.logging.XMLFormatter} if this property is not found or has
40 * <li>java.util.logging.SocketHandler.encoding specifies the encoding this
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParser.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
38 * implementation class. In JAXP 1.0, this class wrapped the
39 * {@link org.xml.sax.Parser} interface, however this interface was
41 * of transition, this class continues to support the same name
44 * An instance of this class can be obtained from the
46 * Once an instance of this class is obtained, XML can be parsed from
50 * This static method creates a new factory instance based
56 * This property names a class that is a concrete subclass of thi
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
UnboundedFifoByteBuffer.java 4 * distributed with this work for additional information *
5 * regarding copyright ownership. The ASF licenses this file *
7 * "License"); you may not use this file except in compliance *
38 * Note that this implementation is not synchronized. The following can be
44 * This buffer prevents null objects from being added.
70 this(32);
92 * @return this buffer's size
107 * Returns true if this buffer is empty; false otherwise.
109 * @return true if this buffer is empty
116 * Adds the given element to this buffer.
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterPointRepresentation.java 5 * you may not use this file except in compliance with the License.
58 return this.mCandidates.get(index);
62 this.mCandidates.add(c);
77 this.mCandidates.remove(c);
81 this.mCandidates.clear();
  /packages/apps/Launcher2/src/com/android/launcher2/
ApplicationInfo.java 5 * you may not use this file except in compliance with the License.
69 this.componentName = new ComponentName(packageName, info.activityInfo.name);
70 this.container = ItemInfo.NO_ID;
71 this.setActivity(componentName,
88 iconCache.getTitleAndIcon(this, info, labelCache);
131 return new ShortcutInfo(this);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilRootLayoutElementImpl.java 6 * you may not use this file except in compliance with the License.
36 return this.getAttribute(BACKGROUND_COLOR_ATTRIBUTE_NAME);
40 String heightString = this.getAttribute(HEIGHT_ATTRIBUTE_NAME);
45 return this.getAttribute(TITLE_ATTRIBUTE_NAME);
49 String widthString = this.getAttribute(WIDTH_ATTRIBUTE_NAME);
54 this.setAttribute(BACKGROUND_COLOR_ATTRIBUTE_NAME, backgroundColor);
58 this.setAttribute(HEIGHT_ATTRIBUTE_NAME, String.valueOf(height) + "px");
63 this.setAttribute(TITLE_ATTRIBUTE_NAME, title);
67 this.setAttribute(WIDTH_ATTRIBUTE_NAME, String.valueOf(width) + "px");
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
InfoDialogFragment.java 31 mOkButton.setOnClickListener(this);
42 this.dismiss();
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
DatagramChannelTest.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
76 this.channel1 = DatagramChannel.open();
77 this.channel2 = DatagramChannel.open();
79 this.localAddr1 = new InetSocketAddress("127.0.0.1", ports[0]);
80 this.localAddr2 = new InetSocketAddress("127.0.0.1", ports[1]);
81 this.datagramSocket1 = new DatagramSocket(ports[2]);
82 this.datagramSocket2 = new DatagramSocket(ports[3]);
87 if (null != this.channel1)
    [all...]
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
58 this.localAddr1 = new InetSocketAddress(
61 this.serverChannel = ServerSocketChannel.open();
62 this.clientChannel = SocketChannel.open();
66 if (null != this.serverChannel) {
68 this.serverChannel.close();
74 if (null != this.clientChannel) {
76 this.clientChannel.close()
    [all...]
  /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
78 this.instream = instream;
79 this.buffer = new byte[buffersize];
80 this.bufferpos = 0;
81 this.bufferlen = 0;
82 this.linebuffer = new ByteArrayBuffer(buffersize);
83 this.charset = HttpProtocolParams.getHttpElementCharset(params)
    [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
92 this.processor = processor;
99 this.connStrategy = connStrategy;
106 this.responseFactory = responseFactory;
110 this.handlerResolver = handlerResolver;
114 this.expectationVerifier = expectationVerifier;
118 return this.params
    [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/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/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/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamRequest.java 3 * you may not use this file except in compliance with the License.
98 this.manager = manager;
99 this.bytestreamRequest = bytestreamRequest;
106 * by the initiator until a connection is established. This timeout divided by the number of
115 if (this.totalConnectTimeout <= 0) {
118 return this.totalConnectTimeout;
125 * by the initiator until a connection is established. This timeout divided by the number of
134 this.totalConnectTimeout = totalConnectTimeout;
144 if (this.minimumConnectTimeout <= 0) {
147 return this.minimumConnectTimeout;
    [all...]

Completed in 687 milliseconds

<<11121314151617181920>>