/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
alltests.java | 46 * Build test suite by adding each test to the test sink 47 * @param sink test sink 49 public void build(DOMTestSink sink) { 50 sink.addTest(attrcreatedocumentfragment.class); 51 sink.addTest(attrcreatetextnode.class); 52 sink.addTest(attrcreatetextnode2.class); 53 // sink.addTest(attrdefaultvalue.class); //javax.xml.parsers.ParserConfigurationException: No validating DocumentBuilder implementation available 54 sink.addTest(attreffectivevalue.class); 55 // sink.addTest(attrentityreplacement.class) [all...] |
/dalvik/dx/tests/054-dex-high16/ |
Blort.java | 19 public static void sink(int i) { method in class:Blort 23 public static void sink(long l) { method in class:Blort 27 public static void sink(float f) { method in class:Blort 31 public static void sink(double d) { method in class:Blort 36 sink(Integer.MIN_VALUE); 37 sink(0x40000000); 38 sink(0x20000000); 39 sink(0x10000000); 40 sink(0x00080000); 41 sink(0x00040000) [all...] |
expected.txt | 4 0002: invoke-static {v0, v1}, Blort.sink:(D)V 6 0007: invoke-static {v0, v1}, Blort.sink:(D)V 8 000c: invoke-static {v0, v1}, Blort.sink:(D)V 10 0011: invoke-static {v0, v1}, Blort.sink:(D)V 12 0016: invoke-static {v0, v1}, Blort.sink:(D)V 17 0002: invoke-static {v0}, Blort.sink:(F)V 19 0007: invoke-static {v0}, Blort.sink:(F)V 21 000c: invoke-static {v0}, Blort.sink:(F)V 23 0011: invoke-static {v0}, Blort.sink:(F)V 25 0016: invoke-static {v0}, Blort.sink:(F) [all...] |
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
alltests.java | 46 * Build test suite by adding each test to the test sink 47 * @param sink test sink 49 public void build(DOMTestSink sink) { 50 // sink.addTest(attrgetownerelement01.class); // javax.xml.parsers.ParserConfigurationException: No validating DocumentBuilder implementation available 51 sink.addTest(attrgetownerelement02.class); 52 sink.addTest(attrgetownerelement03.class); 53 sink.addTest(attrgetownerelement04.class); 54 sink.addTest(attrgetownerelement05.class); 55 sink.addTest(createAttributeNS01.class) [all...] |
/dalvik/dx/tests/048-dex-new-array/ |
Blort.java | 19 public static void sink(Object x) { method in class:Blort 24 sink(new boolean[0]); method 25 sink(new byte[1]); method 26 sink(new char[2]); method 27 sink(new short[3]); method 28 sink(new int[4]); method 29 sink(new long[5]); method 30 sink(new float[6]); method 31 sink(new double[7]); method 32 sink(new Object[0]) method [all...] |
expected.txt | 5 0003: invoke-static {v0}, Blort.sink:(Ljava/lang/Object;)V 8 0009: invoke-static {v0}, Blort.sink:(Ljava/lang/Object;)V 11 000f: invoke-static {v0}, Blort.sink:(Ljava/lang/Object;)V 14 0015: invoke-static {v0}, Blort.sink:(Ljava/lang/Object;)V 17 001b: invoke-static {v0}, Blort.sink:(Ljava/lang/Object;)V 20 0021: invoke-static {v0}, Blort.sink:(Ljava/lang/Object;)V 23 0027: invoke-static {v0}, Blort.sink:(Ljava/lang/Object;)V 26 002d: invoke-static {v0}, Blort.sink:(Ljava/lang/Object;)V 28 0032: invoke-static {v0}, Blort.sink:(Ljava/lang/Object;)V
|
/external/bluetooth/bluez/audio/ |
sink.c | 45 #include "sink.h" 58 struct sink { struct 95 error("Invalid sink state %d", state); 102 struct sink *sink = dev->sink; local 104 sink_state_t old_state = sink->state; 107 sink->state = new_state; 127 struct sink *sink = dev->sink local 177 struct sink *sink = device->sink; local 191 struct sink *sink = dev->sink; local 279 struct sink *sink = user_data; local 307 struct sink *sink = user_data; local 485 struct sink *sink = user_data; local 570 struct sink *sink = dev->sink; local 609 struct sink *sink = device->sink; local 648 struct sink *sink = device->sink; local 682 struct sink *sink = device->sink; local 717 struct sink *sink = device->sink; local 737 struct sink *sink = device->sink; local 799 struct sink *sink = dev->sink; local 842 struct sink *sink; local 866 struct sink *sink = dev->sink; local 876 struct sink *sink = dev->sink; local 884 struct sink *sink = dev->sink; local [all...] |
gsta2dpsink.c | 52 GST_ELEMENT_DETAILS("Bluetooth A2DP sink", 53 "Sink/Audio", 58 GST_STATIC_PAD_TEMPLATE("sink", GST_PAD_SINK, GST_PAD_ALWAYS, 169 if (self->sink != NULL) 170 gst_avdtp_sink_set_device(self->sink, 181 if (self->sink != NULL) 182 g_object_set(G_OBJECT(self->sink), "auto-connect", 200 if (self->sink != NULL) { 201 device = gst_avdtp_sink_get_device(self->sink); 207 if (self->sink != NULL 403 GstElement *sink; local 447 gst_bin_remove(GST_BIN(self), sink); local [all...] |
sink.h | 42 struct sink *sink_init(struct audio_device *dev); 48 gboolean sink_setup_stream(struct sink *sink, struct avdtp *session); 49 gboolean sink_shutdown(struct sink *sink);
|
gstavdtpsink.h | 51 GstBaseSink sink; member in struct:_GstAvdtpSink 80 GstCaps *gst_avdtp_sink_get_device_caps(GstAvdtpSink *sink); 81 gboolean gst_avdtp_sink_set_device_caps(GstAvdtpSink *sink, 84 guint gst_avdtp_sink_get_link_mtu(GstAvdtpSink *sink); 86 void gst_avdtp_sink_set_device(GstAvdtpSink *sink, 89 gchar *gst_avdtp_sink_get_device(GstAvdtpSink *sink);
|
Android.mk | 17 module-bluetooth-sink.c \ 18 sink.c \
|
/external/webkit/WebCore/platform/graphics/gtk/ |
VideoSinkGStreamer.cpp | 21 * SECTION:webkit-video-sink 22 * @short_description: GStreamer video sink 24 * #WebKitVideoSink is a GStreamer sink element that triggers 36 static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE("sink", 81 "webkit video sink") 95 gst_element_class_set_details_simple(element_class, "WebKit video sink", 96 "Sink/Video", "Sends video data from a GStreamer pipeline to a Cairo surface", 101 webkit_video_sink_init(WebKitVideoSink* sink, WebKitVideoSinkClass* klass) 105 sink->priv = priv = G_TYPE_INSTANCE_GET_PRIVATE(sink, WEBKIT_TYPE_VIDEO_SINK, WebKitVideoSinkPrivate) 113 WebKitVideoSink* sink = reinterpret_cast<WebKitVideoSink*>(data); local 139 WebKitVideoSink* sink = WEBKIT_VIDEO_SINK(bsink); local 230 WebKitVideoSink* sink = WEBKIT_VIDEO_SINK(object); local 265 WebKitVideoSink* sink = WEBKIT_VIDEO_SINK(object); local 276 WebKitVideoSink* sink = WEBKIT_VIDEO_SINK(object); local [all...] |
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/ |
SinkChannelTest.java | 69 private Pipe.SinkChannel sink; field in class:SinkChannelTest 80 sink = pipe.sink(); 97 assertEquals(SelectionKey.OP_WRITE, sink.validOps()); 116 sink.configureBlocking(sinkBlockingMode[i]); 118 // if sink and source both are blocking mode, source only needs read 119 // once to get what sink write. 124 sink.write(buf); 159 sink.write(ByteBuffer.wrap(strbytes)); 197 sink.configureBlocking(true) [all...] |
PipeTest.java | 59 * @tests java.nio.channels.Pipe#sink() 64 method = "sink", 69 SinkChannel sink = pipe.sink(); local 70 assertTrue(sink.isBlocking());
|
SourceChannelTest.java | 57 private Pipe.SinkChannel sink; field in class:SourceChannelTest 68 sink = pipe.sink(); 99 sink.write(ByteBuffer.allocate(1)); 134 sink.write(buffer); 135 sink.close(); 217 sink = pipe.sink(); 219 sink.configureBlocking(sinkBlockingMode[i]); 224 long writeCount = sink.write(bufArray) [all...] |
/external/opencore/engines/player/include/ |
pv_player_datasink.h | 23 * Description : Abstract base class for player engine data sink 56 * PVPlayerDataSink is an abstract base class for player engine data sink. 57 * Player engine expects the data sink to be derived from PVPlayerDataSink. 68 * Returns this instance's data sink type 70 * @returns The PVPlayer data sink type 75 * Returns this data sink instance's format type 82 * Returns the filename for the data sink 89 * Returns the node interface for the data sink 91 * @returns The node interface pointer to the data sink
|
/external/opencore/engines/common/include/ |
pv_plugin_interfaces.h | 133 * This API returns multimedias type supported by the data source/sink - 135 * @return Multimedia types supported by the data source/sink. The reference 195 * This method is used when a data source is passively waiting for requests from a consumer ie a data sink 203 * The data sink that consumes the data. The data source needs this to make the BufferFilledL 214 * Method called by a data sink to pass back an emptied buffer to the source 217 * This method is used as the callback when the data source actively requests a consumer ie a data sink 222 * The buffer that has been emptied by a data sink and is now available for reuse 248 * and should be used in preference to the sink buffer provided the sink buffer 264 * the source buffer creation has a dependancy on the sink buffe [all...] |
/external/skia/src/views/ |
SkEventSink.cpp | 65 SkEventSink* sink = globals.fSinkHead; local 70 SkEventSink* next = sink->fNextSink; 71 if (sink == this) 79 prev = sink; 80 sink = next; 181 void SkEventSink::copyListeners(const SkEventSink& sink) 183 SkListenersTagList* sinkList = (SkListenersTagList*)sink.findTagList(kListeners_SkTagList); 241 SkEventSink* sink = SkEventSink::FindSink(sinkID); local 243 if (sink) 257 return sink->doEvent(evt) ? kHandled_EventResult : kNotHandled_EventResult 285 SkEventSink* sink = globals.fSinkHead; local [all...] |
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/ |
PipeImpl.java | 37 private SinkChannelImpl sink; field in class:PipeImpl 46 sink = new SinkChannelImpl(SelectorProvider.provider()); 48 sink.finishConnect(); 61 if(sink != null){ 63 sink.close(); 80 * @see java.nio.channels.Pipe#sink() 82 public SinkChannel sink() { method in class:PipeImpl 83 return sink;
|
/system/bluetooth/data/ |
audio.conf | 5 # NOTE: Enable=Sink means that bluetoothd exposes Sink interface for remote 8 Enable=Sink,Control
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothA2dp.java | 61 /** Indicates the state of an A2DP audio sink has changed. 112 /** Initiate a connection to an A2DP sink. 129 /** Initiate disconnect from an A2DP sink. 146 /** Initiate suspend from an A2DP sink. 162 /** Initiate resume from an suspended A2DP sink. 178 /** Check if a specified A2DP sink is connected. 189 /** Check if any A2DP sink is connected. 204 /** Check if any A2DP sink is in Non Disconnected state 220 /** Get the state of an A2DP sink 236 * Set priority of a2dp sink [all...] |
/dalvik/libcore/nio/src/main/java/java/nio/channels/ |
Pipe.java | 24 * A pipe contains two channels. One is the writable sink channel and the other 32 * Writable sink channel used to write to a pipe. 107 * Returns the sink channel of the pipe. 109 * @return a writable sink channel of the pipe. 111 public abstract SinkChannel sink(); method in class:Pipe
|
/external/opencore/doc/pvauthor_html/ |
classMPVDataSinkBase.html | 123 Method called by a data source to pass back an filled buffer to the sink 125 This is a pure virtual function that each derived class must implement. This method is used as the callback when the data sink actively requests a supplier ie a data source to fill a buffer by calling the data sources FillBufferL. When the data sink gets this callback it knows that the buffer has been filled and is ready to be emptied<dl compact><dt><b>Parameters: </b></dt><dd> 158 Method to indicate whether the data sink can create a buffer. 163 ETrue if the data sink can create a buffer else EFalse </dl> </td> 201 Returns a buffer created by the data sink 208 This must be written to by the method to indicate whether the created buffer is a 'reference' buffer. A 'reference' buffer is a buffer that is owned by the sink and should be used in preference to the source buffer provided the source buffer is also not a reference buffer. </td></tr> 255 Method called by a MDataSource to request the data sink to empty aBuffer of data. 257 This is a pure virtual function that each derived class must implement. This method is used when a data sink is passively waiting for requests from a supplier ie a data source to empty a buffer. The data sink must call the BufferEmptiedL member on aSupplier when it has emptied the buffer of it's data - the (…) [all...] |
/external/icu4c/test/intltest/ |
strtest.cpp | 414 SimpleByteSink sink(buffer); 415 sink.Append("abc", 3); 416 sink.Flush(); 417 if(!(sink.length() == 4 && 0 == memcmp("abcz", buffer, 4) && buffer[4] == '!')) { 423 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity); 428 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity); 433 dest = sink.GetAppendBuffer(5, 50, scratch, (int32_t)sizeof(scratch), &capacity); 443 CheckedArrayByteSink sink(buffer, (int32_t)sizeof(buffer)); 444 sink.Append("abc", 3); 445 if(!(sink.NumberOfBytesWritten() == 3 && 0 == memcmp("abc", buffer, 3) && buffer[3] == '!')) [all...] |
/external/skia/include/views/ |
SkEventSink.h | 43 /** Returns true if the sink (or one of its subclasses) understands the event as a query. 44 If so, the sink may modify the event to communicate its "answer". 52 /** Copy listeners from one event sink to another, typically from parent to child. 53 @param from the event sink to copy the listeners from 73 If one is found, it calls the sink's doEvent method, returning
|