HomeSort by relevance Sort by last modified time
    Searched defs:destination (Results 126 - 150 of 1217) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/protobuf/src/google/protobuf/
unknown_field_set_unittest.cc 289 unittest::TestEmptyMessage source, destination; local
291 destination.mutable_unknown_fields()->AddVarint(1, 1);
292 destination.mutable_unknown_fields()->AddVarint(3, 2);
296 destination.MergeFrom(source);
305 destination.DebugString());
331 unittest::TestAllTypes destination; local
332 ASSERT_TRUE(destination.ParseFromString(all_fields_data_ + data));
334 TestUtil::ExpectAllFieldsSet(destination);
335 ASSERT_EQ(1, destination.unknown_fields().field_count());
337 destination.unknown_fields().field(0).type())
    [all...]
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
ZipExtractorTask.java 172 File destination = new File(mOutput, entry.getName()); local
173 if (!destination.getParentFile().exists()) {
174 destination.getParentFile().mkdirs();
176 if (destination.exists() && mContext != null && !mReplaceAll) {
190 ProgressReportingOutputStream outStream = new ProgressReportingOutputStream(destination);
  /external/v8/src/compiler/
move-optimizer.cc 15 InstructionOperand destination; member in struct:v8::internal::compiler::__anon40915::MoveKey
21 return a.destination.CompareCanonicalized(b.destination);
180 // destination operand.
195 if (outputs.ContainsOpOrAlias(move->destination()) &&
196 !inputs.ContainsOpOrAlias(move->destination())) {
205 if (!inputs.ContainsOpOrAlias(move->destination())) {
244 src_cant_be.InsertOp(move->destination());
249 // destination operands are eligible for being moved down.
252 if (!dst_cant_be.ContainsOpOrAlias(move->destination())) {
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-gap-resolver-ia32.cc 53 // the same as the destination, the destination is ignored and
75 // Clear this move's destination to indicate a pending move. The actual
76 // destination is saved on the side.
78 LOperand* destination = moves_[index].destination(); local
83 // as this one's destination blocks this one so recursively perform all
87 if (other_move.Blocks(destination) && !other_move.IsPending()) {
93 // not be swapped). Since this move's destination is B and there is
102 // pending, so restore its destination
133 LOperand* destination = move.destination(); local
147 LOperand* destination = moves_[index].destination(); local
199 LOperand* destination = moves_[i].destination(); local
260 LOperand* destination = moves_[index].destination(); local
359 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-gap-resolver-x87.cc 54 // the same as the destination, the destination is ignored and
76 // Clear this move's destination to indicate a pending move. The actual
77 // destination is saved on the side.
79 LOperand* destination = moves_[index].destination(); local
84 // as this one's destination blocks this one so recursively perform all
88 if (other_move.Blocks(destination) && !other_move.IsPending()) {
94 // not be swapped). Since this move's destination is B and there is
103 // pending, so restore its destination
134 LOperand* destination = move.destination(); local
148 LOperand* destination = moves_[index].destination(); local
200 LOperand* destination = moves_[i].destination(); local
261 LOperand* destination = moves_[index].destination(); local
364 LOperand* destination = moves_[index].destination(); local
    [all...]
  /frameworks/av/drm/libmediadrm/
ICrypto.cpp 103 const DestinationBuffer &destination, AString *errorDetailMsg) {
137 data.writeInt32((int32_t)destination.mType);
138 if (destination.mType == kDestinationTypeNativeHandle) {
139 if (destination.mHandle == NULL) {
142 data.writeNativeHandle(destination.mHandle);
144 if (destination.mSharedMemory == NULL) {
147 data.writeStrongBinder(IInterface::asBinder(destination.mSharedMemory));
350 DestinationBuffer destination; local
351 destination.mType = (DestinationType)data.readInt32();
352 if (destination.mType == kDestinationTypeNativeHandle)
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/tethering/
IPv6TetheringCoordinator.java 229 final IpPrefix destination = routeInfo.getDestination(); local
230 if ((destination.getAddress() instanceof Inet6Address) &&
231 (destination.getPrefixLength() <= 64)) {
  /frameworks/base/services/net/java/android/net/ip/
IpNeighborMonitor.java 220 final InetAddress destination = neighMsg.getDestination(); local
227 whenMs, msgType, ifindex, destination, nudState,
  /frameworks/support/navigation/common/src/main/java/androidx/navigation/
NavDestination.java 41 * <p>Each destination is associated with a {@link Navigator} which knows how to navigate to this
42 * particular destination.</p>
45 * support. These actions form a navigation API for the destination; the same actions declared
49 * <p>Each destination has a set of {@link #getDefaultArguments() default arguments} that will
50 * be applied when {@link NavController#navigate(int, Bundle) navigating} to that destination.
87 * Called when inflating a destination from a resource.
106 * Gets the {@link NavGraph} that contains this destination. This will be set when a
107 * destination is added to a NavGraph via {@link NavGraph#addDestination}.
116 * Returns the destination's unique ID. This should be an ID resource generated by
119 * @return this destination's I
282 NavAction destination = mActions == null ? null : mActions.get(id); local
    [all...]
NavGraph.java 39 * <p>A NavGraph serves as a 'virtual' destination: while the NavGraph itself will not appear
41 * {@link #getStartDestination starting destination} to be added to the back stack.</p>
49 * {@link #addDestination(NavDestination) add a destination} and
50 * {@link #setStartDestination(int) set the starting destination}.
61 * {@link #addDestination(NavDestination) add a destination} and
62 * {@link #setStartDestination(int) set the starting destination}.
64 * @param navGraphNavigator The {@link NavGraphNavigator} which this destination
102 * Adds a destination to this NavGraph. The destination must have an
105 * <p>The destination must not have a {@link NavDestination#getParent() parent} set. I
182 NavDestination destination = mNodes.get(resid); local
235 NavDestination destination = iterator.next(); local
    [all...]
  /frameworks/support/navigation/runtime/src/main/java/androidx/navigation/
NavInflater.java 122 NavDestination destination = inflate(res, parser, attrs); local
123 if (!(destination instanceof NavGraph)) {
127 return (NavGraph) destination;
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskImageContainer.java 94 * output image specification. Added a field to specify the destination of
114 public enum Destination {
120 public final Destination destination; field in class:TaskImageContainer.TaskInfo
129 Destination aDestination) {
133 destination = aDestination;
291 TaskInfo.Destination aDestination) {
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/services/
AbstractCopyJobTest.java 169 * Creates a job with a stack consisting to the default source and destination.
179 Uri destination = DocumentsContract.buildDocumentUri(AUTHORITY, mDestRoot.documentId); local
180 return createJob(mOpType, srcs, srcParent, destination);
  /packages/apps/Gallery2/jni/filters/
wbalance.c 135 char* destination = 0; local
136 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
139 unsigned char * rgb = (unsigned char * )destination;
  /packages/apps/HTMLViewer/src/com/android/htmlviewer/
HTMLViewerActivity.java 93 Uri destination = mIntent.getData(); local
94 if (destination != null) {
96 if ("file".equals(destination.getScheme())
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
VCardRequest.java 288 String destination = null; local
291 destination = PhoneUtils.getDefault().getCanonicalBySystemLocale(
295 if (destination == null) {
298 destination = emails.get(0).getAddress();
301 avatarUri = AvatarUriUtil.createAvatarUri(null, displayName, destination, null);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
MoveAppStepFragment.java 54 void onRequestMovePackageToVolume(String packageName, VolumeInfo destination);
131 final VolumeInfo destination = mCandidateVolumes.get((int) action.getId()); local
132 if (destination.equals(mCurrentVolume)) {
137 callback.onRequestMovePackageToVolume(mPackageName, destination);
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ContactResolver.java 226 final int width = HALF_MAXIMUM_PHOTO_SIZE >= request.destination.getDecodeWidth()
228 final int height = HALF_MAXIMUM_PHOTO_SIZE >= request.destination.getDecodeHeight()
266 request.destination.onDecodeComplete(request.contactRequest, bitmap);
  /platform_testing/libraries/system-helpers/sysui-helper/src/android/system/helpers/
QuickSettingsHelper.java 94 Point destination = mDevice.wait(Until.findObject local
100 destination);
101 // Long press the icon, then drag it to the destination slowly.
104 quickSettingTileObject.drag(destination, 1000);
  /system/core/adb/
bugreport.cpp 95 std::string destination; local
97 destination = dest_file_;
99 destination = android::base::StringPrintf("%s%c%s", dest_dir_.c_str(),
105 br_->DoSyncPull(srcs, destination.c_str(), false, line_message_.c_str()) ? 0 : 1;
111 destination.c_str(), src_file_.c_str());
168 // Bugreport destination on host, depending on argument passed on constructor:
176 // Message displayed on LinePrinter, it's updated every time the destination above change.
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
MapForProto2Test.java 80 private void copyMapValues(TestMap source, TestMap.Builder destination) {
81 destination
327 TestMap.Builder destination = TestMap.newBuilder(); local
328 copyMapValues(source, destination);
329 assertMapValuesSet(destination.build());
MapTest.java 81 private void copyMapValues(TestMap source, TestMap.Builder destination) {
82 destination
328 TestMap.Builder destination = TestMap.newBuilder(); local
329 copyMapValues(source, destination);
330 assertMapValuesSet(destination.build());
342 TestMap destination = destinationBuilder.build(); local
344 assertEquals(0, destination.getInt32ToEnumFieldValue().get(0).intValue());
345 assertEquals(1, destination.getInt32ToEnumFieldValue().get(1).intValue());
346 assertEquals(1000, destination.getInt32ToEnumFieldValue().get(2).intValue());
    [all...]
  /art/runtime/native/
dalvik_system_DexFile.cc 261 auto destination = reinterpret_cast<jbyte*>(dex_mem_map.get()->Begin()); local
262 env->GetByteArrayRegion(buffer, start, end - start, destination);
    [all...]
  /cts/tests/tests/networksecurityconfig/networksecurityconfig-downloadmanager/src/android/security/net/config/cts/
DownloadManagerTest.java 104 Uri destination = Uri.parse(host + ":" + serverSocket.getLocalPort()); local
105 long id = dm.enqueue(new DownloadManager.Request(destination));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
scantools.py 728 classname, listname = self.destination(tp, name, arglist, modifiers)
730 classname, listname = self.destination(tp, name, arglist)
732 self.htmlreport("*** no output generated: self.destination() returned None", klass="blacklisted")
754 def destination(self, type, name, arglist): member in class:Scanner

Completed in 751 milliseconds

1 2 3 4 56 7 8 91011>>