Searched defs:Signature (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DSignature.java36 public class Signature implements Parcelable { class in inherits:Parcelable
43 * Create Signature from an existing raw byte array.
45 public Signature(byte[] signature) { method in class:Signature
62 * Create Signature from a text representation previously returned by
69 public Signature(String text) { method in class:Signature
90 * Encode the Signature as ASCII text.
97 * Encode the Signature as ASCII text in to an existing array.
148 * @throws CertificateException when Signature isn't a valid X.509
163 Signature other = (Signature)ob
200 private Signature(Parcel source) { method in class:Signature
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DSignature.java26 * A Signature holds the specification for a filter's input and output ports.
28 * A Signature instance must be returned by the filter's {@link Filter#getSignature()} method. It
30 * are required, how data for those ports are accessed, and more. A Signature does not change over
38 * If ports other than the ones in the Signature are allowed, they default to the most generic
40 * a frame's data, it must be specified in the Signature.
42 public class Signature { class
80 * Creates a new empty Signature.
82 public Signature() { method in class:Signature
86 * Adds an input port to the Signature.
91 * @return this Signature instanc
[all...]
/frameworks/compile/libbcc/bcinfo/
H A DMetadataExtractor.cpp372 uint32_t Signature = 0; local
373 if (SigString.getAsInteger(10, Signature)) {
377 TmpSigList[i] = Signature;
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSForEachExpand.cpp98 uint32_t Signature = 0; local
99 if (SigString.getAsInteger(10, Signature)) {
103 return Signature;
292 bool ExpandFunction(llvm::Function *F, uint32_t Signature) { argument
295 if (!Signature) {
296 Signature = getRootSignature(F);
297 if (!Signature) {
340 if (bcinfo::MetadataExtractor::hasForEachSignatureIn(Signature)) {
350 if (bcinfo::MetadataExtractor::hasForEachSignatureOut(Signature)) {
359 if (bcinfo::MetadataExtractor::hasForEachSignatureUsrData(Signature)) {
437 ExpandKernel(llvm::Function *F, uint32_t Signature) argument
609 uint32_t Signature = func_iter->second; local
[all...]

Completed in 249 milliseconds