HomeSort by relevance Sort by last modified time
    Searched refs:SIGNATURE (Results 1 - 25 of 40) sorted by null

1 2

  /external/jmonkeyengine/engine/src/core/com/jme3/export/
FormatVersion.java 16 * Signature of the format. Currently "JME3" as ASCII
18 public static final int SIGNATURE = 0x4A4D4533;
  /dalvik/dx/src/com/android/dx/dex/
SizeOf.java 26 public static final int SIGNATURE = UBYTE * 20;
31 * signature ubyte[20]
53 public static final int HEADER_ITEM = (8 * UBYTE) + UINT + SIGNATURE + (20 * UINT); // 0x70
  /external/dexmaker/src/dx/java/com/android/dx/dex/
SizeOf.java 26 public static final int SIGNATURE = UBYTE * 20;
31 * signature ubyte[20]
53 public static final int HEADER_ITEM = (8 * UBYTE) + UINT + SIGNATURE + (20 * UINT); // 0x70
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSAttributeTableGenerator.java 8 * Note: The SIGNATURE parameter is only available when generating unsigned attributes.
14 static final String SIGNATURE = "encryptedDigest";
SignerInfoGenerator.java 214 parameters.put(CMSAttributeTableGenerator.SIGNATURE, sigBytes.clone());
  /external/dbus/test/data/valid-messages/
simplest-manual.message 23 HEADER_FIELD SIGNATURE
  /external/nist-sip/java/gov/nist/javax/sip/header/
Challenge.java 54 private static String SIGNATURE = ParameterNames.SIGNATURE;
153 * get the Signature value.
157 return (String) authParams.getValue(SIGNATURE);
ParameterNames.java 66 public static final String SIGNATURE = "signature";
AuthenticationHeader.java 64 public static final String SIGNATURE = ParameterNames.SIGNATURE;
  /cts/tools/dasm/src/dasm/
sym.java 21 static final int SIGNATURE = 28;
ReservedWords.java 58 reserved_words.put(".signature", new token(sym.DSIGNATURE));
67 reserved_words.put("signature", new token(sym.SIGNATURE));
parser.cup 68 USING, IS, FROM, METHOD, SIGNATURE, REGS, FIELD, CLASS,
264 /* ========== Signature specification ========== */
419 DFIELD access:a Word:name Word:desc SIGNATURE Str:sig optional_default:v SEP
608 // .var <num> is <name> <desc> signature <sign> from StartLab to EndLab
624 // optional signature specification for a .var
626 SIGNATURE Str:s
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageComposeTests.java 77 private static final String SIGNATURE = "signature";
145 account.mSignature = SIGNATURE;
188 // Note that the signature is always preceeded with a newline.
296 account.mSignature = SIGNATURE;
300 a.setInitialComposeText(null, SIGNATURE);
301 checkFields(SENDER + ", ", null, null, "Re: " + SUBJECT, null, SIGNATURE);
313 a.setInitialComposeText(null, SIGNATURE);
314 checkFields(REPLYTO + ", ", null, null, "Re: " + SUBJECT, null, SIGNATURE);
327 account.mSignature = SIGNATURE;
    [all...]
  /external/libppp/src/
lqr.c 68 u_int32_t signature; member in struct:echolqr
72 #define SIGNATURE 0x594e4f54
81 echo.signature = htonl(SIGNATURE);
98 lqr.signature = ntohl(lqr.signature);
111 if (lqr.signature == SIGNATURE) {
119 (u_long)lqr.signature, (u_long)SIGNATURE);
    [all...]
  /packages/apps/Email/src/com/android/mail/providers/
UIProvider.java 112 AccountColumns.SettingsColumns.SIGNATURE,
381 * String column containing the contents of the signature for this account. If no
382 * signature has been specified, the value will be null.
384 public static final String SIGNATURE = "signature";
    [all...]
  /external/dbus/dbus/
dbus-marshal-basic.c 28 #include "dbus-signature.h"
40 * A signature is just a string with multiple types one after the other.
41 * for example a type is "i" or "(ii)", a signature is "i(ii)"
327 * Sets the existing marshaled signature at the given offset to a new
328 * marshaled signature. Same basic ideas as set_string().
330 * @param str the string to write the marshalled signature to
331 * @param pos the position of the marshaled signature length
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryExporter.java 181 // write signature and version
182 os.write(ByteUtils.convertToBytes(FormatVersion.SIGNATURE));
BinaryImporter.java 139 // Try to read signature
141 if (maybeSignature == FormatVersion.SIGNATURE){
153 // the signature was actually the class count
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsUtils.java 71 cv.put(AccountColumns.SIGNATURE, account.getSignature());
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 171 AccountColumns.SIGNATURE, AccountColumns.POLICY_KEY,
334 public void setSignature(String signature) {
335 mSignature = signature;
    [all...]
EmailContent.java     [all...]
  /packages/apps/Email/src/com/android/email/provider/
DBHelper.java 91 // Version 9: Add security sync key and signature to accounts table
319 + AccountColumns.SIGNATURE + " text, "
618 // accounts: add security sync key & user signature columns
623 + " add column " + AccountColumns.SIGNATURE + " text" + ";");
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
SignatureTest.java 28 import java.security.Signature;
54 if (!type.equals("Signature")) {
60 // Signature.getInstance(String)
61 Signature sig1 = Signature.getInstance(algorithm);
65 // Signature.getInstance(String, Provider)
66 Signature sig2 = Signature.getInstance(algorithm, provider);
71 // Signature.getInstance(String, String)
72 Signature sig3 = Signature.getInstance(algorithm, provider.getName())
116 assertNotNull(sig.getAlgorithm(), signature); local
1271 Signature signature = Signature.getInstance(oid, "BC"); local
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 

Completed in 1416 milliseconds

1 2