| /frameworks/av/media/libstagefright/ | 
| CameraSource.cpp | 2  * Copyright (C) 2009 The Android Open Source Project 39     CameraSourceListener(const sp<CameraSource> &source);
 58 CameraSourceListener::CameraSourceListener(const sp<CameraSource> &source)
 59     : mSource(source) {
 74     sp<CameraSource> source = mSource.promote();  local
 75     if (source.get() != NULL) {
 76         source->dataCallback(msgType, dataPtr);
 83     sp<CameraSource> source = mSource.promote();  local
 84     if (source.get() != NULL) {
 85         source->dataCallbackTimestamp(timestamp/1000, msgType, dataPtr)
 146  CameraSource *source = new CameraSource(camera, proxy, cameraId,  local
 [all...]
 | 
| NuCachedSource2.cpp | 2  * Copyright (C) 2010 The Android Open Source Project 181         const sp<DataSource> &source,
 184     : mSource(source),
 232         HTTPBase* source = static_cast<HTTPBase *>(mSource.get());  local
 233         return source->getEstimatedBandwidthKbps(kbps);
 240         HTTPBase *source = static_cast<HTTPBase *>(mSource.get());  local
 241         return source->setBandwidthStatCollectFreq(freqMs);
 329         ALOGE("source returned error %ld, %d retries left", n, mNumRetriesLeft);
 
 | 
| StagefrightMetadataRetriever.cpp | 2  * Copyright (C) 2009 The Android Open Source Project 64         ALOGE("Unable to create data source for '%s'.", uri);
 141         const sp<MediaSource> &source,
 146     sp<MetaData> format = source->getFormat();
 157                 client->interface(), format, false, source,
 365     sp<MediaSource> source = mExtractor->getTrack(i);  local
 367     if (source.get() == NULL) {
 385                 &mClient, trackMeta, source, OMXCodec::kPreferSoftwareCodecs,
 392         frame = extractVideoFrameWithCodecFlags(&mClient, trackMeta, source, 0,
 
 | 
| /frameworks/av/media/libstagefright/rtsp/ | 
| ARTPConnection.cpp | 2  * Copyright (C) 2010 The Android Open Source Project 330                 sp<ARTPSource> source = s->mSources.valueAt(i);  local
 332                 source->addReceiverReport(buffer);
 335                     source->addFIR(buffer);
 480     sp<ARTPSource> source = findSource(s, srcId);  local
 493     source->processRTPPacket(buffer);
 589     sp<ARTPSource> source = findSource(s, id);  local
 591     source->byeReceived();
 616     sp<ARTPSource> source = findSource(s, id);  local
 618     source->timeUpdate(rtpTime, ntpTime)
 624  sp<ARTPSource> source;  local
 [all...]
 | 
| /frameworks/base/core/java/android/app/ | 
| ActivityOptions.java | 2  * Copyright (C) 2012 The Android Open Source Project 198      * @param source The View that the new activity is animating from.  This
 200      * @param startX The x starting location of the new activity, relative to <var>source</var>.
 201      * @param startY The y starting location of the activity, relative to <var>source</var>.
 207     public static ActivityOptions makeScaleUpAnimation(View source,
 210         opts.mPackageName = source.getContext().getPackageName();
 213         source.getLocationOnScreen(pts);
 231      * @param source The View that this thumbnail is animating from.  This
 235      * @param startX The x starting location of the bitmap, relative to <var>source</var>.
 236      * @param startY The y starting location of the bitmap, relative to <var>source</var>
 [all...]
 | 
| /frameworks/base/core/java/android/view/ | 
| InputEventConsistencyVerifier.java | 2  * Copyright (C) 2010 The Android Open Source Project 86     // The device id and source of the current stream of touch events.
 203             final int source = event.getSource();  local
 207                     KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ false);
 221                         addKeyState(deviceId, source, keyCode);
 226                     KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ true);
 264             final int source = event.getSource();  local
 265             if ((source & InputDevice.SOURCE_CLASS_TRACKBALL) != 0) {
 302                 problem("Source was not SOURCE_CLASS_TRACKBALL.");
 339             final int source = event.getSource()  local
 468  final int source = event.getSource();  local
 532  final int source = keyEvent.getSource();  local
 702  public int source;  field in class:InputEventConsistencyVerifier.KeyState
 [all...]
 | 
| /frameworks/base/include/androidfw/ | 
| InputTransport.h | 2  * Copyright (C) 2010 The Android Open Source Project 60             int32_t source;  member in struct:android::InputMessage::Body::Key
 78             int32_t source;  member in struct:android::InputMessage::Body::Motion
 204             int32_t source,
 225             int32_t source,
 347     // Batched motion events per device and source.
 353     // Touch state per device and source, only for sources of class pointer.
 377         int32_t source;  member in struct:android::InputConsumer::TouchState
 383         void initialize(int32_t deviceId, int32_t source) {
 385             this->source = source
 [all...]
 | 
| /frameworks/wilhelm/src/android/ | 
| android_AudioSfDecoder.cpp | 2  * Copyright (C) 2011 The Android Open Source Project 181     // Instantiate and initialize the data source for the decoder
 219     // AndroidBufferQueue data source is handled by a subclass,
 226     // Instantiate and initialize the decoder attached to the data source
 260     sp<MediaSource> source = extractor->getTrack(audioTrackIndex);  local
 261     sp<MetaData> meta = source->getFormat();
 300         source = OMXCodec::Create(
 302                 source);
 304         if (source == NULL) {
 310         meta = source->getFormat()
 [all...]
 | 
| /libcore/luni/src/test/java/libcore/java/util/ | 
| TreeMapTest.java | 180         Map<String,String> source = new TreeMap<String, String>(String.CASE_INSENSITIVE_ORDER);  local 181         NavigableMap<String,String> copy = new TreeMap<String, String>(source);
 
 | 
| /packages/apps/Gallery2/src/com/android/photos/views/ | 
| TiledImageView.java | 2  * Copyright (C) 2013 The Android Open Source Project 48         TileSource source;  field in class:TiledImageView.ImageRendererWrapper
 82     public void setTileSource(TileSource source) {
 89                 renderer.source = source;
 90                 renderer.centerX = renderer.source.getImageWidth() / 2;
 91                 renderer.centerY = renderer.source.getImageHeight() / 2;
 167                 (float) getWidth() / (float) renderer.source.getImageWidth(),
 168                 (float) getHeight() / (float) renderer.source.getImageHeight());
 191                 renderer.image.setModel(renderer.source, renderer.rotation)
 [all...]
 | 
| /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ | 
| ShortcutRepositoryImplLog.java | 2  * Copyright (C) 2009 The Android Open Source Project 70             Shortcuts.shortcut_id.name() + "=? AND " + Shortcuts.source.name() + "=?";
 122             Shortcuts.source.fullName,
 281     public void updateShortcut(Source source, String shortcutId, SuggestionCursor refreshed) {
 282         refreshShortcut(source, shortcutId, refreshed);
 330         HashMap<String,Source> allowedSources = new HashMap<String,Source>();
 332             for (Source source : corpus.getSources())
 334  allowedSources.put(source.getName(), source);  local
 392  Source source = mAllowedSources.get(srcStr);  local
 535  Source source = suggestion.getSuggestionSource();  local
 591  Source source = suggestion.getSuggestionSource();  local
 692  source,  enum constant in enum:ShortcutRepositoryImplLog.Shortcuts
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/ | 
| introspect.h | 83  * and source have both an index and a name associated with it. As such 96  * \subsection siso_subsec Sink Inputs and Source Outputs
 98  * Sink inputs and source outputs are the representations of the client ends
 102  * Sink inputs and source outputs only have an index to identify them. As
 134  * sink or source. This mapping between sink/source names and modules can be
 138  * \li By sink/source name - pa_context_get_autoload_info_by_name()
 164  * It is also possible to mute a sink or source:
 171  * \subsection siso_subsec Sink Inputs and Source Outputs
 177  * There is no support for modifying the volume of source outputs
 352  uint32_t source; \/**< Index of the connected source *\/  member in struct:pa_source_output_info
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ | 
| tic.h | 204 	const char	*source;  member in struct:alias 
 | 
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ | 
| introspect.h | 83  * and source have both an index and a name associated with it. As such 96  * \subsection siso_subsec Sink Inputs and Source Outputs
 98  * Sink inputs and source outputs are the representations of the client ends
 102  * Sink inputs and source outputs only have an index to identify them. As
 134  * sink or source. This mapping between sink/source names and modules can be
 138  * \li By sink/source name - pa_context_get_autoload_info_by_name()
 164  * It is also possible to mute a sink or source:
 171  * \subsection siso_subsec Sink Inputs and Source Outputs
 177  * There is no support for modifying the volume of source outputs
 352  uint32_t source; \/**< Index of the connected source *\/  member in struct:pa_source_output_info
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ | 
| tic.h | 204 	const char	*source;  member in struct:alias 
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ | 
| introspect.h | 83  * and source have both an index and a name associated with it. As such 96  * \subsection siso_subsec Sink Inputs and Source Outputs
 98  * Sink inputs and source outputs are the representations of the client ends
 102  * Sink inputs and source outputs only have an index to identify them. As
 134  * sink or source. This mapping between sink/source names and modules can be
 138  * \li By sink/source name - pa_context_get_autoload_info_by_name()
 164  * It is also possible to mute a sink or source:
 171  * \subsection siso_subsec Sink Inputs and Source Outputs
 177  * There is no support for modifying the volume of source outputs
 352  uint32_t source; \/**< Index of the connected source *\/  member in struct:pa_source_output_info
 [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ | 
| tic.h | 204 	const char	*source;  member in struct:alias 
 | 
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ | 
| ChooseAssetTypePage.java | 2  * Copyright (C) 2011 The Android Open Source Project 159         Object source = e.getSource();  local
 160         if (source == mProjectButton) {
 163         } else if (source == mClipboardButton) {
 170         } else if (source instanceof Button) {
 172             Object data = ((Button) source).getData();
 187         Object source = e.getSource();  local
 188         if (source == mNameText) {
 
 | 
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ | 
| InstallDependencyPage.java | 2  * Copyright (C) 2012 The Android Open Source Project 262         Object source = e.getSource();  local
 263         if (source == mCheckButton) {
 269         } else if (source == mInstallButton) {
 282         } else if (source == mLink) {
 
 | 
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ | 
| org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar |  | 
| /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/ | 
| OGLESShaderRenderer.java | 5  * Redistribution and use in source and binary forms, with or without 9  * * Redistributions of source code must retain the above copyright
 [all...]
 | 
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ | 
| PaletteControl.java | 2  * Copyright (C) 2009 The Android Open Source Project 678         final DragSource source = new DragSource(item, DND.DROP_COPY);  local
 679         source.setTransfer(new Transfer[] { SimpleXmlTransfer.getInstance() });
 680         source.addDragListener(new DescDragSourceListener(desc));
 684                 source.dispose();
 756             // Preview images are created before the drag source listener is notified
 [all...]
 | 
| /bionic/libc/kernel/common/linux/ | 
| tcp.h | 11  ***   source file (e.g. under external/kernel-headers/original/) then 25  __u16 source;  member in struct:tcphdr
 
 | 
| /cts/tests/tests/media/src/android/media/cts/ | 
| MediaMuxerTest.java | 2  * Copyright (C) 2013 The Android Open Source Project 53         int source = R.raw.video_176x144_3gp_h263_300kbps_25fps_aac_stereo_128kbps_11025hz;  local
 55         cloneAndVerify(source, outputFile, 2, 90);
 62         int source = R.raw.sinesweepm4a;  local
 64         cloneAndVerify(source, outputFile, 1, -1);
 71         int source = R.raw.video_only_176x144_3gp_h263_25fps;  local
 73         cloneAndVerify(source, outputFile, 1, 180);
 158         // Set up MediaExtractor to read from the source.
 230      * Clones a media file and then compares against the source file to make
 248      * cloned media file matches the source file
 [all...]
 | 
| /cts/tools/signature-tools/test/signature/converter/ | 
| ConvertClassTest.java | 2  * Copyright (C) 2009 The Android Open Source Project 563         String source =   local
 566             IApi api = convert(new CompilationUnit("a.A", source));
 596         String source =   local
 602             IApi api = convert(Visibility.PRIVATE, new CompilationUnit("a.A", source));
 612         String source =   local
 619             IApi api = convert(new CompilationUnit("a.A", source));
 629         String source =   local
 636             IApi api = convert(new CompilationUnit("a.A", source));
 651  String source =   local
 [all...]
 |