HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 101 - 125 of 690) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PathParser.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
78 this.lexer.match(TokenTypes.PATH);
79 this.lexer.SPorHT();
80 this.lexer.match(':');
81 this.lexer.SPorHT();
86 this.lexer.SPorHT();
89 this.lexer.match(',')
    [all...]
ServiceRouteParser.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
78 this.lexer.match(TokenTypes.SERVICE_ROUTE);
79 this.lexer.SPorHT();
80 this.lexer.match(':');
81 this.lexer.SPorHT();
86 this.lexer.SPorHT();
88 this.lexer.match(',')
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.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
41 * This is the Stack abstraction for the active object that waits for messages
103 this.transport = transport;
115 this( transport );
116 this.initialize(ipAddress, port, transactionStack);
120 * Initializes this MessageProcessor. Needed for extensions
130 this.sipStack = transactionStack
    [all...]
SIPServerTransaction.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
207 * This timer task is used for alerting the application to send retransmission alerts.
221 this.ticks = SIPTransaction.T1;
222 this.ticksLeft = this.ticks;
226 SIPServerTransaction serverTransaction = SIPServerTransaction.this;
230 this.ticksLeft = 2 * ticks
    [all...]
SIPDialog.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
110 * Bugs in this class were reported by Antonis Karydas, Brad Templeton, Jeff Adams, Alex Rootham ,
122 * dialog identifier that can be used to retrieve this structure from the SipStack.
197 // This is for debugging only.
220 // the amount of time to keep this dialog around before the stack GC's it
258 // List of event listeners for this dialog
279 * This task waits till a pending ACK has been recorded and then sends out a re-INVITE. Thi
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/amigaos/
SDL_ahiaudio.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
82 SDL_AudioDevice *this; local
89 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
90 if ( this ) {
91 SDL_memset(this, 0, (sizeof *this));
92 this->hidden = (struct SDL_PrivateAudioData *)
93 SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/dummy/
SDL_dummyaudio.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
22 This file written by Ryan C. Gordon (icculus@icculus.org)
64 SDL_AudioDevice *this; local
67 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
68 if ( this ) {
69 SDL_memset(this, 0, (sizeof *this));
70 this->hidden = (struct SDL_PrivateAudioData *
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/picogui/
SDL_pgevents.c 5 This library is free software; you can redistribute it and/or
10 This library is distributed in the hope that it will be useful,
16 License along with this library; if not, write to the Free Software
69 SDL_VideoDevice *this = (SDL_VideoDevice *) evt->extra; local
70 pgFocus(this->hidden->wCanvas);
98 pgSetWidget(this->hidden->wCanvas, PG_WP_TRIGGERMASK,
99 pgGetWidget(this->hidden->wCanvas, PG_WP_TRIGGERMASK) |
104 pgFocus(this->hidden->wCanvas);
107 pgBind(this->hidden->wApp, PG_WE_CLOSE, &PG_HandleClose, NULL);
108 pgBind(this->hidden->wCanvas, PG_WE_BUILD, &PG_HandleResize, NULL)
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldServerSocketChannelTest.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
45 this.localAddr1 = new InetSocketAddress(
48 this.serverChannel = ServerSocketChannel.open();
49 this.clientChannel = SocketChannel.open();
53 if (null != this.serverChannel) {
55 this.serverChannel.close();
61 if (null != this.clientChannel) {
63 this.clientChannel.close()
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
WeakAsyncTask.java 5 * you may not use this file except in compliance with the License.
36 this.onPreExecute(target);
45 return this.doInBackground(target, params);
56 this.onPostExecute(target, result);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
BackgroundThread.java 5 * you may not use this file except in compliance with the License.
24 * this flag with <code>isQuitting()</code> and should finish if the flag is
31 * Tell the thread to exit. This is usually called from the UI thread. The
39 this.join();
  /frameworks/base/core/java/android/net/http/
AndroidHttpClientConnection.java 5 * you may not use this file except in compliance with the License.
84 this.entityserializer = new EntitySerializer(
111 this.socket = socket;
114 this.inbuffer = new SocketInputBuffer(socket, buffersize, params);
115 this.outbuffer = new SocketOutputBuffer(socket, buffersize, params);
122 this.requestWriter = new HttpRequestWriter(outbuffer, null, params);
124 this.metrics = new HttpConnectionMetricsImpl(
128 this.open = true;
146 if (this.open) {
152 if (!this.open)
    [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/
ConfigTab.java 3 * All rights reserved. This program and the accompanying materials
5 * which accompanies this distribution, and is available at
94 this.configName = name;
96 this.configBox = idx > 0 ? box.substring(0, idx) : box;
97 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID);
109 this.shell = tabFolder.getShell();
110 this.display = this.shell.getDisplay();
113 boolean initResources = this.table == null;
114 if (this.table != null)
    [all...]
BuildsView.java 3 * All rights reserved. This program and the accompanying materials
5 * which accompanies this distribution, and is available at
56 * Typical actions from this view are update local data files with builds results
71 String resultGenerationDir = BuildsView.this.preferences.get(IPerformancesConstants.PRE_RESULTS_GENERATION_DIR, "");
72 String pathFilter = (BuildsView.this.outputDir == null) ? resultGenerationDir : BuildsView.this.outputDir.getPath();
77 BuildsView.this.outputDir = dir;
78 BuildsView.this.preferences.put(IPerformancesConstants.PRE_RESULTS_GENERATION_DIR, dir.getAbsolutePath());
81 String[] baselines = BuildsView.this.results.getBaselines();
87 selectedBaseline = BuildsView.this.results.getPerformanceResults().getBaselineName()
    [all...]
ComponentsView.java 3 * All rights reserved. This program and the accompanying materials
5 * which accompanies this distribution, and is available at
64 * There's only one available action from this view: read the local data files. This
120 // this.onlyFingerprintsImageDescriptor = ImageDescriptor.createFromFile(getClass(), "filter_ps.gif");
124 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID);
127 WRITE_STATUS = this.preferences.getInt(IPerformancesConstants.PRE_WRITE_STATUS, IPerformancesConstants.DEFAULT_WRITE_STATUS);
139 this.viewer = new TreeViewer(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL);
144 return ComponentsView.this.getElements();
147 this.viewer.setContentProvider(contentProvider)
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
WorkSpaceController.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.
63 this.initEventHandlers();
64 this.initToolbar();
68 this.view.setTitle("gUnitEditor");
69 this.view.setVisible(true);
70 this.view.pack()
    [all...]
TestCaseEditController.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.
115 //this.owner = workspace;
125 this.currentRule = rule;
126 this.currentTestCase = null;
127 this.listModel = rule;
128 this.listCases.setModel(this.listModel);
    [all...]
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-xml/src/main/java/org/apache/xml/serializer/
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.
41 * This class does a pre-order walk of the DOM tree, calling a ContentHandler
44 * This class is a copy of the one in org.apache.xml.utils.
56 * If m_contentHandler is a SerializationHandler, then this is
64 /** DomHelper for this TreeWalker */
67 /** Locator object for this TreeWalker */
81 this(ch,null);
139 this.m_contentHandler.startDocument()
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 64 * This is the multicast group, we are listening to for multicast DNS messages.
68 * This is our multicast socket.
93 * This hashtable holds the services that have been registered. Keys are instances of String which hold an all lower-case version of the fully qualified service name. Values are instances of ServiceInfo.
98 * This hashtable holds the service types that have been registered or that have been received in an incoming datagram.<br/>
107 * This is used to store type entries. The type is stored as a call variable and the map support the subtypes.
148 * Replaces the value corresponding to this entry with the specified value (optional operation). This implementation simply throws <tt>UnsupportedOperationException</tt>, as this class implements an <i>immutable</i> map entry.
151 * new value to be stored in this entry
169 return this.getKey().equals(((Map.Entry<?, ?>) entry).getKey()) && this.getValue().equals(((Map.Entry<?, ?>) e (…)
    [all...]
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java 7 * This program is free software; you can redistribute it and/or modify it
12 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * with this program; if not, write to the Free Software Foundation, Inc.,
38 * This ClassVisitor fills out the ProgramClass objects that it visits with data
67 this.dataInput = new RuntimeDataInput(dataInput);
96 constant.accept(programClass, this);
130 this.visitProgramField(programClass, programField);
141 this.visitProgramMethod(programClass, programMethod);
152 attribute.accept(programClass, this);
179 attribute.accept(programClass, programField, this);
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridAlphaMapTest.java 85 this.flyCam.setMoveSpeed(100f);
87 this.stateManager.attach(state);
118 this.base = new FractalSum();
119 this.base.setRoughness(0.7f);
120 this.base.setFrequency(1.0f);
121 this.base.setAmplitude(1.0f);
122 this.base.setLacunarity(2.12f);
123 this.base.setOctaves(8);
124 this.base.setScale(0.02125f);
125 this.base.addModulator(new NoiseModulator()
    [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
72 this.abortLock = new ReentrantLock();
82 return this.uri;
100 this.uri = uri;
105 this.abortLock.lock();
107 if (this.aborted) {
111 this.releaseTrigger = null
    [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
74 this.original = request;
78 this.uri = ((HttpUriRequest) request).getURI();
79 this.method = ((HttpUriRequest) request).getMethod();
80 this.version = null;
84 this.uri = new URI(requestLine.getUri())
    [all...]

Completed in 634 milliseconds

1 2 3 45 6 7 8 91011>>