HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 426 - 450 of 540) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.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
182 /* Check to see if we already have this mode */
222 /* This whole function is a hack. :) */
225 /* This is a non-exported function from libXxf86dga.a */
314 this->info.wm_available = 0;
315 this->info.hw_available = 1;
317 this->info.blit_hw = 1;
319 this->info.blit_hw = 0
863 SDL_VideoDevice *this; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/ipod/
SDL_ipodvideo.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
46 #define _THIS SDL_VideoDevice *this
113 SDL_VideoDevice *this; local
115 this = (SDL_VideoDevice *)SDL_malloc (sizeof(SDL_VideoDevice));
116 if (this) {
117 memset (this, 0, sizeof *this);
118 this->hidden = (struct SDL_PrivateVideoData *) SDL_malloc (sizeof(struct SDL_PrivateVideoData))
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_sysevents.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
140 /* this code needs testing on a real device!
185 This is used all over the place, in the windib driver and in the dx5 driver
202 SDL_VideoDevice *this = current_video; local
203 if(SDL_strcmp(this->name, "gapi") == 0)
205 if( this->hidden->suspended )
207 this->hidden->suspended = 0;
224 SDL_VideoDevice *this = current_video local
336 SDL_VideoDevice *this = current_video; local
351 SDL_VideoDevice *this = current_video; local
667 SDL_VideoDevice *this = current_video; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11events.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
52 /* Define this if you want to debug X11 events */
81 == 0xC0 ) { /* see if those 3 bits are 110. If so, the char is in this range */
93 == 0xE0) { /* see if those 4 bits are 1110. If so, the char is in this range */
105 == 0xF0) { /* see if those 5 bits are 11110. If so, the char is in this range */
117 == 0xF8) { /* see if those 6 bits are 111110. If so, the char is in this range */
130 == 0xFC) { /* see if those 7 bits are 1111110. If so, the char is in this range */
150 This done by AND'ing firstOctet with its mask to trim the bits used for identifying th
1226 struct SDL_VideoDevice *this = current_video; local
    [all...]
  /external/svox/pico/lib/
picorsrc.c 5 * you may not use this file except in compliance with the License.
66 picoos_int8 lockCount; /* count of current subscribers of this resource */
86 * Returns non-zero if 'this' is a valid resource handle, zero otherwise.
88 picoos_int16 picoctrl_isValidResourceHandle(picorsrc_Resource this)
90 return (this != NULL) && CHECK_MAGIC_NUMBER(this);
96 picorsrc_Resource this = picoos_allocate(mm, sizeof(*this)); local
97 if (NULL != this) {
98 SET_MAGIC_NUMBER(this);
146 picorsrc_Voice this = (picorsrc_Voice) picoos_allocate(mm,sizeof(*this)); local
180 picorsrc_VoiceDefinition this = (picorsrc_VoiceDefinition) picoos_allocate(mm,sizeof(*this)); local
230 picorsrc_ResourceManager this = picoos_allocate(mm,sizeof(*this)); local
    [all...]
picosa.c 5 * you may not use this file except in compliance with the License.
153 all but the first will be treated as an (empty) phrase containing just this item.
154 If this (single) item is a flush, creation of SBEG is suppressed.
245 static pico_status_t saInitialize(register picodata_ProcessingUnit this, picoos_int32 resetMode) {
255 if (NULL == this || NULL == this->subObj) {
256 return picoos_emRaiseException(this->common->em,
259 sa = (sa_subobj_t *) this->subObj;
261 /* sa->common = this->common; */
305 fst = picokfst_getFST(this->voice->kbArray[fstKbIds[i]])
448 picodata_ProcessingUnit this; local
    [all...]
picosig.c 5 * you may not use this file except in compliance with the License.
57 static picodata_step_result_t sigStep(register picodata_ProcessingUnit this,
92 /*-----------------------Definition of the local storage for this PU--------*/
111 * @param this : sig PU object
117 static pico_status_t sigInitialize(register picodata_ProcessingUnit this, picoos_int32 resetMode)
120 if (NULL == this || NULL == this->subObj) {
123 sig_subObj = (sig_subobj_t *) this->subObj;
153 this->voice->kbArray[PICOKNOW_KBID_PDF_MGC]);
155 this->voice->kbArray[PICOKNOW_KBID_PDF_LFZ])
263 picodata_ProcessingUnit this = picodata_newProcessingUnit(mm, common, cbIn, local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ProfilesPanel.js 8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 this._id = id;
31 this._name = name;
49 return this.name;
54 return this._id;
59 return this._name;
69 profile._profileView = this.createView(profile)
    [all...]
  /frameworks/base/core/java/android/content/
ContentProvider.java 5 * you may not use this file except in compliance with the License.
120 * @param readPermission The read permision you want this instance should have in the
122 * @param writePermission The write permission you want this instance should have
124 * @param pathPermissions The PathPermissions you want this instance should have
141 * ContentProvider object if it is running in the local process. This can
167 return ContentProvider.this;
178 return ContentProvider.this.query(uri, projection, selection,
183 return ContentProvider.this.getType(uri);
189 return ContentProvider.this.insert(uri, initialValues);
194 return ContentProvider.this.bulkInsert(uri, initialValues)
    [all...]
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 5 * you may not use this file except in compliance with the License.
68 * This class maintains active connection threads
87 mContext, i, this, RequestQueue.this);
104 synchronized (RequestQueue.this) {
105 RequestQueue.this.notify();
159 if this turns out to be a hotspot */
161 synchronized(RequestQueue.this) {
174 host = RequestQueue.this.determineHost(host);
179 RequestQueue.this);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
BroadcastTest.java 5 * you may not use this file except in compliance with the License.
119 synchronized (this) {
226 //System.out.println("Receive in: " + this + ": " + intent);
264 synchronized (BroadcastTest.this) {
266 BroadcastTest.this.notifyAll();
274 synchronized (this) {
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
LoadTestsAutoTest.java 5 * you may not use this file except in compliance with the License.
60 // This function writes the result of the layout test to
138 // this object instance is used to track gc
222 synchronized (LoadTestsAutoTest.this) {
224 LoadTestsAutoTest.this.notifyAll();
245 synchronized (this) {
248 this.wait();
  /frameworks/base/voip/java/android/net/sip/
SipAudioCall.java 5 * you may not use this file except in compliance with the License.
41 * Handles an Internet audio call over SIP. You can instantiate this class with {@link SipManager},
45 * <p class="note"><strong>Note:</strong> Using this class require the
159 * @param errorCode error code of this error
171 * not re-directed to this callback and are handled in {@link #onError}.
216 * @param listener to listen to the audio call events of this object
226 * calls to this method override the previous listener.
228 * @param listener to listen to the audio call events of this object
239 listener.onError(this, mErrorCode, mErrorMessage);
242 listener.onCallHeld(this);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.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 synchronized (this) {
33 this.notify();
34 this.wait(delay);
89 boolean b = Thread.holdsLock(this);
94 boolean b = Thread.holdsLock(this);
151 // We expect this one.
290 this.isDoYield = isDoYield
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractListTest.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
35 this.arrayList = new ArrayList();
39 return this.arrayList.get(index);
43 this.arrayList.add(i, o);
47 return this.arrayList.remove(i);
51 return this.arrayList.size();
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransfer.java 10 * this list of conditions and the following disclaimer.
13 * this list of conditions and the following disclaimer in the documentation
17 * may be used to endorse or promote products derived from this software
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
65 * This class run an actual Opp transfer session (from connect target device to
116 mBatch.registerListern(this);
122 this(context, powerManager, batch, null);
309 synchronized (this) {
449 * TODO catch this erro
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java 5 * you may not use this file except in compliance with the License.
92 mIntentResolver = new ContactsIntentResolver(this);
142 mCreateNewContactButton.setOnClickListener(this);
189 mSearchView.setOnQueryTextListener(this);
190 mSearchView.setOnCloseListener(this);
191 mSearchView.setOnQueryTextFocusChangeListener(this);
201 mSearchView.setOnQueryTextListener(this);
203 // This is a hack to prevent the search view from grabbing focus
204 // at this point. If search view were visible, it would always grabs focus
414 Intent intent = new Intent(ContactSelectionActivity.this,
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountType.java 5 * you may not use this file except in compliance with the License.
50 * In the future this may be inflated from XML defined by a data source.
76 * Set of {@link DataKind} supported by this source.
98 * Whether this account type was able to be fully initialized. This may be false if
106 * @return Whether this type is an "embedded" type. i.e. any of {@link FallbackAccountType},
122 * @return True if contacts can be created and edited using this app. If false,
154 * This allows the sync adapter to provide more up-to-date information.
196 * Returns {@link AccountTypeWithDataSet} for this type.
204 * external account types. This allows for a primary account type to indicate other package
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 5 * you may not use this file except in compliance with the License.
43 * Run the test like this:
237 final long contactId = this.queryContactId(rawContactId);
261 final long groupId = this.createGroup(sTestAccount, GROUP_ID, GROUP_ID, 1);
265 final long rawContactId = this.createRawContact(sTestAccount);
266 final long contactId = this.queryContactId(rawContactId);
269 this.insertGroupMembership(rawContactId, groupId);
288 final long rawContactId = this.createRawContact();
296 final long rawContactId1 = this.createRawContact();
297 final long rawContactId2 = this.createRawContact(sTestAccount)
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadService.java 5 * you may not use this file except in compliance with the License.
66 * object. This is kept independently from the content provider, and the Service only initiates
67 * downloads based on this data, so that it can deal with situation where the data in the
135 synchronized (DownloadService.this) {
144 DownloadService.this.notifyAll();
150 synchronized (DownloadService.this) {
158 unbindService(this);
163 DownloadService.this.notifyAll();
175 synchronized (DownloadService.this) {
179 DownloadService.this.notifyAll()
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
MonitorThread.java 5 * you may not use this file except in compliance with the License.
368 // don't know what this is, display it
375 * Process an incoming DDM packet. If this is a reply to an earlier request,
421 * <p/>This will lock the {@link Client} list of the {@link Device} running <var>client</var>.
446 * Process activity from one of the debugger sockets. This could be a new
542 * this won't be necessary, and we can just send a "debugger
553 // This is done by the DeviceMonitor.
559 // This is done by the DeviceMonitor.
581 this.join();
610 * channel and the client's debugger listener to the selection list. This
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
ShaderEditor.java 5 ** you may not use this file except in compliance with the License.
68 this.setLayout(gridLayout);
70 toolbar = new ToolBar(this, SWT.BORDER);
74 uploadShader.addSelectionListener(this);
78 restoreShader.addSelectionListener(this);
83 list = new List(this, SWT.V_SCROLL);
85 list.addSelectionListener(this);
93 styledText = new StyledText(this, SWT.V_SCROLL | SWT.H_SCROLL | SWT.MULTI);
101 styledText.addExtendedModifyListener(this);
195 MessageDialog.openWarning(this.getShell(), "Context 0x"
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/
ViewNode.java 5 * you may not use this file except in compliance with the License.
121 this.window = window;
122 this.parent = parent;
123 index = this.parent == null ? 0 : this.parent.children.size();
124 if (this.parent != null) {
125 this.parent.children.add(this);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
SocketTest.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
90 synchronized (this) {
92 this.notifyAll();
108 this.wait();
145 this.t = null;
146 this.interrupted = false;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
StylesheetHandler.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.
61 * This class acts as essentially a state machine, maintaining
95 * @param processor non-null reference to the transformer factory that owns this handler.
126 * @param processor non-null reference to the transformer factory that owns this handler.
134 this.pushNewNamespaceSupport();
136 // m_includeStack.push(SystemIDResolver.getAbsoluteURI(this.getBaseIdentifier(), null));
155 XPath xpath = new XPath(str, owningTemplate, this, XPath.SELECT, handler,
176 XPath xpath = new XPath(str, owningTemplate, this, XPath.MATCH, handler,
    [all...]

Completed in 2072 milliseconds

<<11121314151617181920>>