Home
last modified time | relevance | path

Searched refs:bundler (Results 1 – 25 of 121) sorted by relevance

12345

/external/connectedappssdk/processor/src/main/resources/parcelablewrappers/
DParcelablePair.java30 private final Bundler bundler; field in ParcelablePair
39 public static <F, S> ParcelablePair<F, S> of(Bundler bundler, BundlerType type, Pair<F, S> pair) { in of() argument
40 return new ParcelablePair<>(bundler, type, pair); in of()
47 private ParcelablePair(Bundler bundler, BundlerType type, Pair<F, S> pair) { in ParcelablePair() argument
48 if (bundler == null || type == null) { in ParcelablePair()
51 this.bundler = bundler; in ParcelablePair()
57 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelablePair()
71 F first = (F) bundler.readFromParcel(in, fType); in ParcelablePair()
73 S second = (S) bundler.readFromParcel(in, sType); in ParcelablePair()
80 dest.writeParcelable(bundler, flags); in writeToParcel()
[all …]
DParcelableArray.java28 private final Bundler bundler; field in ParcelableArray
37 public static <F> ParcelableArray<F> of(Bundler bundler, BundlerType type, F[] array) { in of() argument
38 return new ParcelableArray<>(bundler, type, array); in of()
45 private ParcelableArray(Bundler bundler, BundlerType type, E[] array) { in ParcelableArray() argument
46 if (bundler == null || type == null) { in ParcelableArray()
49 this.bundler = bundler; in ParcelableArray()
55 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableArray()
68 E[] a = (E[]) bundler.createArray(valueType, size); in ParcelableArray()
74 E value = (E) bundler.readFromParcel(in, valueType); in ParcelableArray()
82 dest.writeParcelable(bundler, flags); in writeToParcel()
[all …]
DParcelableMap.java30 private final Bundler bundler; field in ParcelableMap
39 public static <E, F> ParcelableMap<E, F> of(Bundler bundler, BundlerType type, Map<E, F> map) { in of() argument
40 return new ParcelableMap<>(bundler, type, map); in of()
47 private ParcelableMap(Bundler bundler, BundlerType type, Map<E, F> map) { in ParcelableMap() argument
48 if (bundler == null || type == null) { in ParcelableMap()
51 this.bundler = bundler; in ParcelableMap()
57 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableMap()
73 E key = (E) bundler.readFromParcel(in, keyType); in ParcelableMap()
75 F value = (F) bundler.readFromParcel(in, valueType); in ParcelableMap()
83 dest.writeParcelable(bundler, flags); in writeToParcel()
[all …]
DParcelableImmutableMap.java34 private final Bundler bundler; field in ParcelableImmutableMap
44 Bundler bundler, BundlerType type, ImmutableMap<E, F> map) { in of() argument
45 return new ParcelableImmutableMap<>(bundler, type, map); in of()
52 private ParcelableImmutableMap(Bundler bundler, BundlerType type, ImmutableMap<E, F> map) { in ParcelableImmutableMap() argument
53 if (bundler == null || type == null) { in ParcelableImmutableMap()
56 this.bundler = bundler; in ParcelableImmutableMap()
62 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableImmutableMap()
79 E key = (E) bundler.readFromParcel(in, keyType); in ParcelableImmutableMap()
81 F value = (F) bundler.readFromParcel(in, valueType); in ParcelableImmutableMap()
91 dest.writeParcelable(bundler, flags); in writeToParcel()
[all …]
DParcelableCollection.java32 private final Bundler bundler; field in ParcelableCollection
42 Bundler bundler, BundlerType type, Collection<F> collection) { in of() argument
43 return new ParcelableCollection<>(bundler, type, collection); in of()
50 private ParcelableCollection(Bundler bundler, BundlerType type, Collection<E> collection) { in ParcelableCollection() argument
51 if (bundler == null || type == null) { in ParcelableCollection()
54 this.bundler = bundler; in ParcelableCollection()
60 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableCollection()
74 E value = (E) bundler.readFromParcel(in, valueType); in ParcelableCollection()
82 dest.writeParcelable(bundler, flags); in writeToParcel()
94 bundler.writeToParcel(dest, value, valueType, flags); in writeToParcel()
DParcelableList.java31 private final Bundler bundler; field in ParcelableList
40 public static <F> ParcelableList<F> of(Bundler bundler, BundlerType type, List<F> list) { in of() argument
41 return new ParcelableList<>(bundler, type, list); in of()
48 private ParcelableList(Bundler bundler, BundlerType type, List<E> list) { in ParcelableList() argument
49 if (bundler == null || type == null) { in ParcelableList()
52 this.bundler = bundler; in ParcelableList()
58 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableList()
73 E value = (E) bundler.readFromParcel(in, valueType); in ParcelableList()
81 dest.writeParcelable(bundler, flags); in writeToParcel()
94 bundler.writeToParcel(dest, value, valueType, flags); in writeToParcel()
DParcelableSet.java30 private final Bundler bundler; field in ParcelableSet
39 public static <F> ParcelableSet<F> of(Bundler bundler, BundlerType type, Set<F> set) { in of() argument
40 return new ParcelableSet<>(bundler, type, set); in of()
47 private ParcelableSet(Bundler bundler, BundlerType type, Set<E> set) { in ParcelableSet() argument
48 if (bundler == null || type == null) { in ParcelableSet()
51 this.bundler = bundler; in ParcelableSet()
57 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableSet()
72 E value = (E) bundler.readFromParcel(in, valueType); in ParcelableSet()
80 dest.writeParcelable(bundler, flags); in writeToParcel()
93 bundler.writeToParcel(dest, value, valueType, flags); in writeToParcel()
DParcelableGuavaOptional.java33 private final Bundler bundler; field in ParcelableGuavaOptional
43 Bundler bundler, BundlerType type, Optional<F> optional) { in of() argument
44 return new ParcelableGuavaOptional<>(bundler, type, optional); in of()
51 private ParcelableGuavaOptional(Bundler bundler, BundlerType type, Optional<E> optional) { in ParcelableGuavaOptional() argument
52 if (bundler == null || type == null) { in ParcelableGuavaOptional()
55 this.bundler = bundler; in ParcelableGuavaOptional()
61 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableGuavaOptional()
77 E value = (E) bundler.readFromParcel(in, valueType); in ParcelableGuavaOptional()
87 dest.writeParcelable(bundler, flags); in writeToParcel()
98 bundler.writeToParcel(dest, optional.get(), valueType, flags); in writeToParcel()
DParcelableOptional.java33 private final Bundler bundler; field in ParcelableOptional
43 Bundler bundler, BundlerType type, Optional<F> optional) { in of() argument
44 return new ParcelableOptional<>(bundler, type, optional); in of()
51 private ParcelableOptional(Bundler bundler, BundlerType type, Optional<E> optional) { in ParcelableOptional() argument
52 if (bundler == null || type == null) { in ParcelableOptional()
55 this.bundler = bundler; in ParcelableOptional()
61 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableOptional()
77 E value = (E) bundler.readFromParcel(in, valueType); in ParcelableOptional()
87 dest.writeParcelable(bundler, flags); in writeToParcel()
98 bundler.writeToParcel(dest, optional.get(), valueType, flags); in writeToParcel()
/external/connectedappssdk/tests/shared/src/main/java/com/google/android/enterprise/connectedapps/testapp/wrappers/
DParcelableCustomWrapper2.java32 private final Bundler bundler; field in ParcelableCustomWrapper2
42 Bundler bundler, BundlerType type, CustomWrapper2<F> customWrapper) { in of() argument
43 return new ParcelableCustomWrapper2<>(bundler, type, customWrapper); in of()
51 Bundler bundler, BundlerType type, CustomWrapper2<E> customWrapper) { in ParcelableCustomWrapper2() argument
52 if (bundler == null || type == null) { in ParcelableCustomWrapper2()
55 this.bundler = bundler; in ParcelableCustomWrapper2()
61 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableCustomWrapper2()
75 E value = (E) bundler.readFromParcel(in, valueType); in ParcelableCustomWrapper2()
82 dest.writeParcelable(bundler, flags); in writeToParcel()
92 bundler.writeToParcel(dest, customWrapper.value(), valueType, flags); in writeToParcel()
DParcelableCustomWrapper.java31 private final Bundler bundler; field in ParcelableCustomWrapper
41 Bundler bundler, BundlerType type, CustomWrapper<F> customWrapper) { in of() argument
42 return new ParcelableCustomWrapper<>(bundler, type, customWrapper); in of()
50 Bundler bundler, BundlerType type, CustomWrapper<E> customWrapper) { in ParcelableCustomWrapper() argument
51 if (bundler == null || type == null) { in ParcelableCustomWrapper()
54 this.bundler = bundler; in ParcelableCustomWrapper()
60 bundler = in.readParcelable(Bundler.class.getClassLoader()); in ParcelableCustomWrapper()
74 E value = (E) bundler.readFromParcel(in, valueType); in ParcelableCustomWrapper()
81 dest.writeParcelable(bundler, flags); in writeToParcel()
91 bundler.writeToParcel(dest, customWrapper.value(), valueType, flags); in writeToParcel()
DSimpleFutureWrapper.java34 public static <E> SimpleFutureWrapper<E> create(Bundler bundler, BundlerType bundlerType) { in create() argument
35 return new SimpleFutureWrapper<>(bundler, bundlerType); in create()
44 private SimpleFutureWrapper(Bundler bundler, BundlerType bundlerType) { in SimpleFutureWrapper() argument
45 super(bundler, bundlerType); in SimpleFutureWrapper()
DParcelableStringWrapper.java39 Bundler bundler, BundlerType type, StringWrapper stringWrapper) { in of() argument
40 return new ParcelableStringWrapper(bundler, type, stringWrapper); in of()
47 private ParcelableStringWrapper(Bundler bundler, BundlerType type, StringWrapper stringWrapper) { in ParcelableStringWrapper() argument
/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/
DFutureWrapper.java25 private final Bundler bundler; field in FutureWrapper
28 protected FutureWrapper(Bundler bundler, BundlerType bundlerType) { in FutureWrapper() argument
29 if (bundler == null || bundlerType == null) { in FutureWrapper()
32 this.bundler = bundler; in FutureWrapper()
39 E result = (E) bundler.readFromParcel(params, bundlerType); in onResult()
DParcelableWrapperUtils.java29 public void writeBundler(Parcel parcel, Bundler bundler, int flags) { in writeBundler() argument
30 parcel.writeParcelable(bundler, flags); in writeBundler()
/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/internal/
DCrossProfileFutureResultWriter.java30 private final Bundler bundler; field in CrossProfileFutureResultWriter
34 ICrossProfileCallback callback, Bundler bundler, BundlerType bundlerType) { in CrossProfileFutureResultWriter() argument
35 if (callback == null || bundler == null || bundlerType == null) { in CrossProfileFutureResultWriter()
39 this.bundler = bundler; in CrossProfileFutureResultWriter()
46 bundler.writeToParcel(parcel, result, bundlerType, /* flags= */ 0); in onSuccess()
/external/llvm-project/clang/test/Driver/
Dhip-link-shared-library.hip6 // CHECK: # "x86_64-unknown-linux-gnu" - "offload bundler", inputs: ["[[IN:.*o]]"], outputs: ["[[HO…
7 // CHECK: # "amdgcn-amd-amdhsa" - "offload bundler", inputs: ["[[IN]]"], outputs: ["{{.*o}}", "[[DO…
9 // CHECK-NOT: offload bundler
11 // CHECK-NOT: offload bundler
13 // CHECK-NOT: offload bundler
Dhip-link-static-library.hip11 // CHECK: # "x86_64-unknown-linux-gnu" - "offload bundler", inputs: ["[[IN:.*o]]"], outputs: ["[[HO…
12 // CHECK: # "amdgcn-amd-amdhsa" - "offload bundler", inputs: ["[[IN]]"], outputs: ["{{.*o}}", "[[DO…
14 // CHECK-NOT: offload bundler
16 // CHECK-NOT: offload bundler
18 // CHECK-NOT: offload bundler
26 // NORDC-NOT: offload bundler
Dhip-binding.hip21 // RDCS: # "x86_64-unknown-linux-gnu" - "offload bundler", inputs: ["[[BC1]]", "[[BC2]]", "[[HOSTOB…
28 // CHECK: # "x86_64-unknown-linux-gnu" - "offload bundler", inputs: ["[[IN:.*o]]"], outputs: ["[[HO…
29 // CHECK: # "amdgcn-amd-amdhsa" - "offload bundler", inputs: ["[[IN]]"], outputs: ["{{.*o}}", "[[DO…
31 // CHECK-NOT: offload bundler
33 // CHECK-NOT: offload bundler
35 // CHECK-NOT: offload bundler
42 // NORDC-NOT: offload bundler
Dhip-toolchain-rdc-separate.hip43 // CHECK: [[BUNDLER:".*clang-offload-bundler"]] "-type=o"
75 // CHECK: [[BUNDLER:".*clang-offload-bundler"]] "-type=o"
87 // LINK: [[BUNDLER:".*clang-offload-bundler"]] "-type=o"
92 // LINK: [[BUNDLER:".*clang-offload-bundler"]] "-type=o"
97 // LINK: [[BUNDLER:".*clang-offload-bundler"]] "-type=o"
102 // LINK: [[BUNDLER:".*clang-offload-bundler"]] "-type=o"
121 // LINK: [[BUNDLER:".*clang-offload-bundler"]] "-type=o"
/external/llvm-project/clang/tools/clang-offload-bundler/
DCMakeLists.txt3 add_clang_tool(clang-offload-bundler
14 add_dependencies(clang clang-offload-bundler)
16 clang_target_link_libraries(clang-offload-bundler
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/robotests/
DCrossProfileCallbackSenderTest.java47 private final Bundler bundler = new ProfileTestCrossProfileType_Bundler(); field in CrossProfileCallbackSenderTest
49 new Profile_TestStringCallbackListener_Sender(callback, exceptionCallback, bundler);
52 new TestICrossProfileCallback(sender), bundler);
/external/connectedappssdk/processor/src/main/resources/futurewrappers/
DListenableFutureWrapper.java38 public static <E> ListenableFutureWrapper<E> create(Bundler bundler, BundlerType bundlerType) { in create() argument
39 return new ListenableFutureWrapper<>(bundler, bundlerType); in create()
42 private ListenableFutureWrapper(Bundler bundler, BundlerType bundlerType) { in ListenableFutureWrapper() argument
43 super(bundler, bundlerType); in ListenableFutureWrapper()
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/artifacts/
Dbuild_artifact_ruby.sh44 gem uninstall rubygems-bundler
47 gem install bundler -v 1.17.3
/external/rust/crates/grpcio-sys/grpc/tools/interop_matrix/patches/ruby_v1.18.0/
Dgit_repo.patch9 -(cd src/ruby && gem update bundler && bundle && rake compile)
10 +(cd src/ruby && gem install bundler -v 1.17.3 && bundle && rake compile)

12345