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

<<11121314151617181920>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PVisitedNetworkIDParser.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
87 this.lexer.match(TokenTypes.P_VISITED_NETWORK_ID);
88 this.lexer.SPorHT();
89 this.lexer.match(':');
90 this.lexer.SPorHT();
96 if (this.lexer.lookAhead(0) == '\"')
103 this.lexer.SPorHT()
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/bsd/
SDL_bsdaudio.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
107 SDL_AudioDevice *this; local
110 this = (SDL_AudioDevice*)SDL_malloc(sizeof(SDL_AudioDevice));
111 if(this) {
112 SDL_memset(this, 0, (sizeof *this));
113 this->hidden =
114 (struct SDL_PrivateAudioData*)SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/dc/
SDL_dcaudio.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
58 SDL_AudioDevice *this; local
61 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
62 if ( this ) {
63 SDL_memset(this, 0, (sizeof *this));
64 this->hidden = (struct SDL_PrivateAudioData *)
65 SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/dmedia/
SDL_irixaudio.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_AudioDevice *this; local
72 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
73 if ( this ) {
74 SDL_memset(this, 0, (sizeof *this));
75 this->hidden = (struct SDL_PrivateAudioData *)
76 SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/dsp/
SDL_dspaudio.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
40 /* This is installed on some systems */
43 /* This is recommended by OSS */
91 SDL_AudioDevice *this; local
94 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
95 if ( this ) {
96 SDL_memset(this, 0, (sizeof *this));
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/macosx/
SDL_coreaudio.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
60 SDL_AudioDevice *this; local
63 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
64 if ( this ) {
65 SDL_memset(this, 0, (sizeof *this));
66 this->hidden = (struct SDL_PrivateAudioData *)
67 SDL_malloc((sizeof *this->hidden))
103 SDL_AudioDevice *this = (SDL_AudioDevice *)inRefCon; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/mint/
SDL_mintaudio_dma8.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
129 SDL_AudioDevice *this; local
132 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
133 if ( this ) {
134 SDL_memset(this, 0, (sizeof *this));
135 this->hidden = (struct SDL_PrivateAudioData *)
136 SDL_malloc((sizeof *this->hidden))
325 SDL_AudioDevice *this = SDL_MintAudio_device; local
    [all...]
SDL_mintaudio_mcsn.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
147 SDL_AudioDevice *this; local
150 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
151 if ( this ) {
152 SDL_memset(this, 0, (sizeof *this));
153 this->hidden = (struct SDL_PrivateAudioData *)
154 SDL_malloc((sizeof *this->hidden))
    [all...]
SDL_mintaudio_stfa.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
128 SDL_AudioDevice *this; local
131 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
132 if ( this ) {
133 SDL_memset(this, 0, (sizeof *this));
134 this->hidden = (struct SDL_PrivateAudioData *)
135 SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/nds/
SDL_ndsaudio.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
218 SDL_AudioDevice *this; local
221 this = (SDL_AudioDevice *)malloc(sizeof(SDL_AudioDevice));
222 if ( this ) {
223 SDL_memset(this, 0, (sizeof *this));
224 this->hidden = (struct SDL_PrivateAudioData *)
225 SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/sun/
SDL_sunaudio.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
83 SDL_AudioDevice *this; local
86 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
87 if ( this ) {
88 SDL_memset(this, 0, (sizeof *this));
89 this->hidden = (struct SDL_PrivateAudioData *)
90 SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_blit.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
277 SDL_VideoDevice *this = current_video; local
278 video->CheckHWBlit(this, surface, surface->map->dst);
288 SDL_VideoDevice *this = current_video; local
289 video->CheckHWBlit(this, surface, surface->map->dst);
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbmatrox.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
76 if ( dst == this->screen ) {
89 FB_dst_to_xy(this, dst, &dstX, &dstY);
114 if ( dst == this->screen ) {
123 SDL_VideoDevice *this = current_video; local
141 if ( dst == this->screen ) {
148 FB_dst_to_xy(this, src, &srcX, &srcY);
149 FB_dst_to_xy(this, dst, &dstX, &dstY)
    [all...]
SDL_fbriva.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
83 if ( dst == this->screen ) {
90 FB_dst_to_xy(this, dst, &dstX, &dstY);
105 if ( dst == this->screen ) {
114 SDL_VideoDevice *this = current_video; local
129 if ( dst == this->screen ) {
136 FB_dst_to_xy(this, src, &srcX, &srcY);
137 FB_dst_to_xy(this, dst, &dstX, &dstY)
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inffast.c 38 inflate execution time is spent in this routine.
58 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
90 code this; /* retrieved table entry */ local
127 this = lcode[hold & lmask];
129 op = (unsigned)(this.bits);
132 op = (unsigned)(this.op);
134 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
136 "inflate: literal 0x%02x\n", this.val));
137 PUP(out) = (unsigned char)(this.val)
    [all...]
inftrees.c 16 include such an acknowledgment, I would appreciate that you keep this
53 code this; /* table entry for duplication */ local
88 This routine assumes, but does not check, that all of the entries in
89 lens[] are in the range 0..MAXBITS. The caller must assure this.
91 symbol does not occur in this code.
118 this.op = (unsigned char)64; /* invalid code marker */
119 this.bits = (unsigned char)1;
120 this.val = (unsigned short)0;
121 *(*table)++ = this; /* make a table to force an error */
122 *(*table)++ = this;
    [all...]
  /external/smack/src/org/jivesoftware/smack/
ReconnectionManager.java 7 * you may not use this file except in compliance with the License.
58 this.connection = connection;
76 * The reconnection mechanism will try to reconnect periodically in this way:
84 if (this.isReconnectionAllowed()) {
120 while (ReconnectionManager.this.isReconnectionAllowed()) {
126 while (ReconnectionManager.this.isReconnectionAllowed() &&
132 ReconnectionManager.this
138 ReconnectionManager.this.notifyReconnectionFailed(e1);
144 if (ReconnectionManager.this.isReconnectionAllowed()) {
150 ReconnectionManager.this.notifyReconnectionFailed(e);
    [all...]
RosterGroup.java 9 * you may not use this file except in compliance with the License.
52 this.name = name;
53 this.connection = connection;
68 * of the group to a new group specified by the new name. Since this group won't have entries
69 * it will be removed from the roster. This means that all the references to this object will
80 item.removeGroupName(this.name);
136 * Returns true if the specified entry is part of this group.
139 * @return true if the entry is part of this group.
148 * Returns true if the specified XMPP address is an entry in this group
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
InitiationListener.java 3 * you may not use this file except in compliance with the License.
55 this.manager = manager;
72 if (this.manager.getIgnoredBytestreamRequests().remove(byteStreamRequest.getSessionID())) {
77 Socks5BytestreamRequest request = new Socks5BytestreamRequest(this.manager,
81 BytestreamListener userListener = this.manager.getUserListener(byteStreamRequest.getFrom());
86 else if (!this.manager.getAllRequestListeners().isEmpty()) {
90 for (BytestreamListener listener : this.manager.getAllRequestListeners()) {
97 * if there is no listener for this initiation request, reply with reject message
99 this.manager.replyRejectPacket(byteStreamRequest);
109 return this.initFilter;
    [all...]
Socks5ClientForInitiator.java 3 * you may not use this file except in compliance with the License.
28 * Implementation of a SOCKS5 client used on the initiators side. This is needed because connecting
58 this.connection = connection;
59 this.sessionID = sessionID;
60 this.target = target;
68 if (this.streamHost.getJID().equals(this.connection.getUser())) {
70 socket = socks5Server.getSocket(this.digest);
98 SyncPacketSend.getReply(this.connection, activate);
107 Bytestream activate = new Bytestream(this.sessionID);
    [all...]
  /external/zlib/src/contrib/infback9/
inftree9.c 16 include such an acknowledgment, I would appreciate that you keep this
53 code this; /* table entry for duplication */ local
90 This routine assumes, but does not check, that all of the entries in
91 lens[] are in the range 0..MAXBITS. The caller must assure this.
93 symbol does not occur in this code.
144 Create and fill in decoding tables. In this loop, the table being
153 of the low root bits of huff. This is saved in low to check for when a
159 counts are used for this, and so count[] is decremented as codes are
169 all codes of length max, i.e. all codes, have been processed. This
170 routine permits incomplete codes, so another loop after this one fill
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 5 * you may not use this file except in compliance with the License.
68 * This notifies the Android Backup Manager that the application needs an opportunity
81 * that process, and the agent's {@link #onCreate()} method is invoked. This prepares the
82 * agent instance to run the actual backup or restore logic. At this point the
164 * Agents do not need to override this method.
173 * Agents do not need to override this method.
184 * cases, a representation of the final backup state after this pass should
202 * write to this file.
219 * replacing it with the data supplied to this method. No "clear user data"
221 * exception to this is in the case of a failed restore attempt: i
    [all...]
  /frameworks/base/core/java/android/database/
ContentObserver.java 5 * you may not use this file except in compliance with the License.
49 mTransport = new Transport(this);
73 * Returns true if this observer is interested receiving self-change notifications.
75 * Subclasses should override this method to indicate whether the observer
86 * This method is called when a content change occurs.
88 * Subclasses should override this method to handle content changes.
91 * @param selfChange True if this is a self-change notification.
98 * This method is called when a content change occurs.
101 * Subclasses should override this method to handle content changes.
104 * the {@link #onChange(boolean)} overload of this method whenever the
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerTester.java 5 * you may not use this file except in compliance with the License.
33 synchronized (this) {
69 synchronized (HandlerTester.this) {
72 HandlerTester.this.handleMessage(msg);
74 HandlerTester.this.notify();
MessengerTest.java 5 * you may not use this file except in compliance with the License.
36 synchronized (MessengerTest.this) {
38 MessengerTest.this.notifyAll();
51 synchronized (MessengerTest.this) {
54 TestThread.this.handleMessage(msg);
58 TestThread.this.executeTest();
98 synchronized (this) {

Completed in 355 milliseconds

<<11121314151617181920>>