Searched
refs:source (Results
1276 -
1300 of
4581) sorted by null
<<51525354555657585960>>
| /external/webkit/WebKit/chromium/src/ |
| WebWorkerBase.cpp | 4 * Redistribution and use in source and binary forms, with or without 8 * * Redistributions of source code must retain the above copyright 129 // Construct substitute data source for the 'shadow page'. We only need it 203 MessageSource source, 212 static_cast<int>(source), 220 int destination, int source, 228 thisPtr->commonClient()->postConsoleMessageToWorkerObject(destination, source,
|
| /external/webkit/WebKit/win/Interfaces/ |
| IWebFrame.idl | 4 * Redistribution and use in source and binary forms, with or without 7 * 1. Redistributions of source code must retain the above copyright 157 @discussion Returns the committed data source. Will return nil if the 158 provisional data source hasn't yet been loaded. 162 HRESULT dataSource([out, retval] IWebDataSource** source); 166 @discussion Will return the provisional data source. The provisional data source will 167 be nil if no data source has been set on the frame, or the data source 168 has successfully transitioned to the committed data source [all...] |
| /external/webkit/WebKit/win/ |
| WebHTMLRepresentation.cpp | 4 * Redistribution and use in source and binary forms, with or without 7 * 1. Redistributions of source code must retain the above copyright 264 /* [retval][out] */ BSTR* source) 266 if (!source) 269 *source = 0; 310 *source = WebCore::BString(decoder->encoding().decode(dataBuffer.data(), dataBuffer.size())).release();
|
| /external/webkit/WebKit/wx/ |
| WebBrowserShell.h | 6 * Redistribution and use in source and binary forms, with or without 9 * 1. Redistributions of source code must retain the above copyright 99 wxPageSourceViewFrame(const wxString& source);
|
| /frameworks/base/core/java/android/content/ |
| IntentFilter.java | 2 * Copyright (C) 2006 The Android Open Source Project [all...] |
| /frameworks/base/core/java/android/content/res/ |
| ColorStateList.java | 2 * Copyright (C) 2007 The Android Open Source Project 318 public ColorStateList createFromParcel(Parcel source) { 319 final int N = source.readInt(); 322 stateSpecs[i] = source.createIntArray(); 324 int[] colors = source.createIntArray();
|
| /frameworks/base/core/java/android/preference/ |
| DialogPreference.java | 2 * Copyright (C) 2007 The Android Open Source Project 449 public SavedState(Parcel source) { 450 super(source); 451 isDialogShowing = source.readInt() == 1; 452 dialogBundle = source.readBundle();
|
| /frameworks/base/include/media/stagefright/ |
| AudioPlayer.h | 2 * Copyright (C) 2009 The Android Open Source Project 44 // Caller retains ownership of "source". 45 void setSource(const sp<MediaSource> &source);
|
| DataSource.h | 2 * Copyright (C) 2009 The Android Open Source Project 70 const sp<DataSource> &source, String8 *mimeType,
|
| MPEG2TSWriter.h | 2 * Copyright (C) 2010 The Android Open Source Project 34 virtual status_t addSource(const sp<MediaSource> &source);
|
| /frameworks/base/media/libstagefright/include/ |
| AACEncoder.h | 2 * Copyright (C) 2010 The Android Open Source Project 32 AACEncoder(const sp<MediaSource> &source, const sp<MetaData> &meta);
|
| AVCDecoder.h | 2 * Copyright (C) 2009 The Android Open Source Project 31 AVCDecoder(const sp<MediaSource> &source);
|
| AVCEncoder.h | 2 * Copyright (C) 2010 The Android Open Source Project 35 AVCEncoder(const sp<MediaSource> &source,
|
| M4vH263Encoder.h | 2 * Copyright (C) 2010 The Android Open Source Project 34 M4vH263Encoder(const sp<MediaSource> &source,
|
| NuCachedSource2.h | 2 * Copyright (C) 2010 The Android Open Source Project 31 NuCachedSource2(const sp<DataSource> &source);
|
| ThreadedSource.h | 2 * Copyright (C) 2010 The Android Open Source Project 30 ThreadedSource(const sp<MediaSource> &source);
|
| /frameworks/base/media/libstagefright/mpeg2ts/ |
| MPEG2TSExtractor.cpp | 2 * Copyright (C) 2010 The Android Open Source Project 120 MPEG2TSExtractor::MPEG2TSExtractor(const sp<DataSource> &source) 121 : mDataSource(source), 272 const sp<DataSource> &source, String8 *mimeType, float *confidence, 276 if (source->readAt(kTSPacketSize * i, &header, 1) != 1
|
| /frameworks/base/media/libstagefright/rtsp/ |
| AAMRAssembler.cpp | 2 * Copyright (C) 2010 The Android Open Source Project 77 const sp<ARTPSource> &source) { 78 return addPacket(source); 98 const sp<ARTPSource> &source) { 99 List<sp<ABuffer> > *queue = source->queue();
|
| /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
| ClassHasNativeVisitor.java | 2 * Copyright (C) 2008 The Android Open Source Project 76 public void visitSource(String source, String debug) {
|
| /hardware/qcom/media/mm-core/ |
| Android.mk | 4 #Redistribution and use in source and binary forms, with or without 6 # * Redistributions of source code must retain the above copyright
|
| /hardware/qcom/media/mm-video/ |
| Android.mk | 4 #Redistribution and use in source and binary forms, with or without 6 # * Redistributions of source code must retain the above copyright
|
| /hardware/ril/mock-ril/ |
| Android.mk | 1 # Copyright 2010 The Android Open Source Project 14 # Directories of source files 22 # Directories of generated source files
|
| /libcore/luni/src/main/java/java/nio/channels/ |
| SocketChannel.java | 348 * @param source 365 public abstract int write(ByteBuffer source) throws IOException; 377 * the array of byte buffers that is the source for bytes written
|
| /libcore/luni/src/main/java/org/w3c/dom/ |
| Document.java | 203 * or removing the source node from the original document; this method 204 * creates a new copy of the source node. The returned node has no 207 * importing document, with attribute values identical to the source 211 * <code>cloneNode</code> operation, the source node is not altered. 218 * a fragment of XML or HTML source was copied from one document to 227 * descendants of the source <code>Attr</code> are recursively imported 234 * was set to <code>true</code>, the descendants of the source 247 * <dd><em>Specified</em> attribute nodes of the source element are imported, and the generated 252 * <code>true</code>, the descendants of the source element are 263 * of the the source <code>Entity</code> are recursively imported an [all...] |
| /libcore/luni/src/test/java/libcore/java/text/ |
| OldFormatTest.java | 39 public Object parseObject(String source, ParsePosition pos) {
|
Completed in 1116 milliseconds
<<51525354555657585960>>