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

1 2 3 4 5 6 7 891011>>

  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
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
125 SDL_AudioDevice *this; local
128 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
129 if ( this ) {
130 SDL_memset(this, 0, (sizeof *this));
131 this->hidden = (struct SDL_PrivateAudioData *)
132 SDL_malloc((sizeof *this->hidden))
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/nas/
SDL_nasaudio.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 driver was written by:
71 SDL_AudioDevice *this; local
74 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
75 if ( this ) {
76 SDL_memset(this, 0, (sizeof *this));
77 this->hidden = (struct SDL_PrivateAudioData *
    [all...]
  /external/qemu/distrib/sdl-1.2.12/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.12/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.12/src/video/cybergfx/
SDL_cgxaccel.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
168 D(bug("HW colorkey not supported for this depth\n"));
182 if ( CGX_SetHWColorKey(this, src, src->format->colorkey) < 0 ) {
206 struct SDL_VideoDevice *this=src->hwdata->videodata; local
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fb3dfx.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
63 if ( dst == this->screen ) {
87 if ( dst == this->screen ) {
96 SDL_VideoDevice *this = current_video; local
111 if ( dst == this->screen ) {
165 if ( dst == this->screen ) {
180 if ( ! this->info.blit_hw_A ) {
185 if ( ! this->info.blit_hw_CC )
    [all...]
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/zlib/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/com/android/internal/statusbar/
StatusBarNotification.java 5 * you may not use this file except in compliance with the License.
29 // TODO: make this restriction do something smarter like never fill
59 this.pkg = pkg;
60 this.id = id;
61 this.tag = tag;
62 this.uid = uid;
63 this.initialPid = initialPid;
64 this.notification = notification;
66 this.priority = PRIORITY_NORMAL;
74 this.pkg = in.readString()
    [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) {
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/emailcommon/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/Launcher2/src/com/android/launcher2/
ApplicationInfo.java 5 * you may not use this file except in compliance with the License.
74 this.componentName = new ComponentName(packageName, info.activityInfo.name);
75 this.container = ItemInfo.NO_ID;
76 this.setActivity(componentName,
93 iconCache.getTitleAndIcon(this, info, labelCache);
136 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");
  /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/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...]

Completed in 754 milliseconds

1 2 3 4 5 6 7 891011>>