HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 151 - 175 of 1443) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/telecomm/java/android/telecom/
DisconnectCause.java 208 public void writeToParcel(Parcel destination, int flags) {
209 destination.writeInt(mDisconnectCode);
210 TextUtils.writeToParcel(mDisconnectLabel, destination, flags);
211 TextUtils.writeToParcel(mDisconnectDescription, destination, flags);
212 destination.writeString(mDisconnectReason);
213 destination.writeInt(mToneToPlay);
AudioState.java 161 public void writeToParcel(Parcel destination, int flags) {
162 destination.writeByte((byte) (isMuted ? 1 : 0));
163 destination.writeInt(route);
164 destination.writeInt(supportedRouteMask);
CallAudioState.java 197 public void writeToParcel(Parcel destination, int flags) {
198 destination.writeByte((byte) (isMuted ? 1 : 0));
199 destination.writeInt(route);
200 destination.writeInt(supportedRouteMask);
  /system/connectivity/shill/test-scripts/
routing.py 47 self.destination = int(dest, 16)
62 intToDottedQuad(self.destination),
80 return (self.flagbits & RTF_GATEWAY) and self.destination == 0
83 return (ip & self.netmask) == self.destination
104 destination = route[colMap["Destination"]]
109 Route(interface, destination, gateway, flags, mask))
162 "Iface Destination Gateway Flags RefCnt "
  /external/v8/tools/testrunner/local/
utils.py 122 def URLRetrieve(source, destination):
129 subprocess.check_call(["curl", source, '-k', '-L', '-o', destination])
135 with open(destination, 'w') as f:
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
CoordinateUtils.java 48 public static void copy(@Nonnull final int[] destination, @Nonnull final int[] source) {
49 destination[INDEX_X] = source[INDEX_X];
50 destination[INDEX_Y] = source[INDEX_Y];
  /external/jetty/src/java/org/eclipse/jetty/client/security/
HashRealmResolver.java 40 public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOException
  /external/libchrome/sandbox/mac/
message_server.h 62 // Forwards the original |request| to the |destination| for handling.
63 virtual void ForwardMessage(IPCMessage request, mach_port_t destination) = 0;
  /external/opencv3/modules/photo/src/
seamless_cloning.hpp 56 void normalClone(const cv::Mat& destination, const cv::Mat &mask, const cv::Mat &wmask, cv::Mat &cloned, int flag);
63 void initVariables(const cv::Mat &destination, const cv::Mat &binaryMask);
64 void computeDerivatives(const cv::Mat &destination, const cv::Mat &patch, const cv::Mat &binaryMask);
66 void poisson(const cv::Mat &destination);
seamless_cloning_impl.cpp 241 void Cloning::initVariables(const Mat &destination, const Mat &binaryMask)
243 destinationGradientX = Mat(destination.size(),CV_32FC3);
244 destinationGradientY = Mat(destination.size(),CV_32FC3);
245 patchGradientX = Mat(destination.size(),CV_32FC3);
246 patchGradientY = Mat(destination.size(),CV_32FC3);
252 const int w = destination.cols;
257 const int h = destination.rows;
263 void Cloning::computeDerivatives(const Mat& destination, const Mat &patch, const Mat &binaryMask)
265 initVariables(destination,binaryMask);
267 computeGradientX(destination,destinationGradientX)
    [all...]
  /frameworks/base/core/java/android/print/
PrintDocumentAdapter.java 68 * pages to the provided destination. The execution of this method is not
234 * @param destination The destination file descriptor to which to write.
241 public abstract void onWrite(PageRange[] pages, ParcelFileDescriptor destination,
PrintFileDocumentAdapter.java 87 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination,
89 mWriteFileAsyncTask = new WriteFileAsyncTask(destination, cancellationSignal, callback);
102 public WriteFileAsyncTask(ParcelFileDescriptor destination,
104 mDestination = destination;
  /frameworks/opt/chips/src/com/android/ex/chips/
CircularImageView.java 27 private final RectF destination; field in class:CircularImageView
44 destination = new RectF();
80 destination.set(getPaddingLeft(), getPaddingTop(), getWidth() - getPaddingRight(),
83 drawBitmapWithCircleOnCanvas(bitmap, canvas, source, destination);
88 * mask. Only draws a circle with diameter equal to the destination width.
93 * @param dest The destination bound on the canvas.
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSSerializer.java 381 * @param destination The destination for the serialized DOM.
394 LSOutput destination)
  /system/connectivity/shill/
icmp.h 53 // Send an ICMP Echo Request (Ping) packet to |destination|. The ID and
56 virtual bool TransmitEchoRequest(const IPAddress& destination, uint16_t id,
  /system/connectivity/shill/shims/
netfilter_queue_processor.h 111 destination(0) {}
123 destination(destination_in) {}
129 uint32_t destination; member in struct:shill::shims::NetfilterQueueProcessor::ListenerEntry
160 // which transmitted to multicast destination |destination|.
162 uint16_t port, int device_index, uint32_t destination);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/epiphany/
badpostmod.s 4 ldrd r0,[r1],r2 ; tricky because r1 is implied as destination
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-aarch64/
farcall-section.s 2 # if the destination is of type STT_SECTION (eg non-global symbol)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
farcall-section.s 2 @ if the destination is of type STT_SECTION (eg non-global symbol)
  /external/libbrillo/brillo/
any_internal_impl.h 33 // From and To are the source and destination types.
321 // Copies the data from the current buffer into the |destination|.
322 void CopyTo(Buffer* destination) const {
324 destination->Clear();
326 GetDataPtr()->CopyTo(destination);
330 // Moves the data from the current buffer into the |destination|.
331 void MoveTo(Buffer* destination) {
333 destination->Clear();
336 destination->Clear();
337 destination->storage_ = kExternal
    [all...]
  /external/protobuf/src/google/protobuf/
repeated_field_unittest.cc 250 RepeatedField<int> source, destination; local
253 destination.Add(1);
254 destination.Add(2);
255 destination.Add(3);
257 destination.MergeFrom(source);
259 ASSERT_EQ(5, destination.size());
260 EXPECT_EQ(1, destination.Get(0));
261 EXPECT_EQ(2, destination.Get(1));
262 EXPECT_EQ(3, destination.Get(2));
263 EXPECT_EQ(4, destination.Get(3))
276 RepeatedField<int> source, destination; local
327 RepeatedField<int> source, destination; local
696 RepeatedPtrField<string> source, destination; local
722 RepeatedPtrField<string> source, destination; local
792 RepeatedPtrField<string> source, destination; local
    [all...]
  /external/jacoco/org.jacoco.agent/src/org/jacoco/agent/
AgentJar.java 85 * @param destination
90 public static void extractTo(File destination) throws IOException {
96 outputJarStream = new FileOutputStream(destination);
  /external/sfntly/cpp/src/test/
open_type_data_test.cc 56 WritableFontDataPtr destination = new WritableFontData(destination_array); local
58 int32_t length = source->CopyTo(destination);
  /external/valgrind/memcheck/tests/solaris/
strlcpy.stderr.exp 8 Source and destination overlap in strlcpy(0x........, 0x........, 11)
  /external/webrtc/webrtc/common_audio/resampler/
sinc_resampler.h 26 // of data to be rendered into |destination|; zero padded if not enough frames
31 virtual void Run(size_t frames, float* destination) = 0;
64 // Resample |frames| of data from |read_cb_| into |destination|.
65 void Resample(size_t frames, float* destination);

Completed in 972 milliseconds

1 2 3 4 5 67 8 91011>>