HomeSort by relevance Sort by last modified time
    Searched defs:spec (Results 151 - 175 of 424) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECFieldF2m_ImplTest.java 22 package org.apache.harmony.security.tests.java.security.spec;
25 import java.security.spec.ECFieldF2m;
ECPrivateKeySpec_ImplTest.java 22 package org.apache.harmony.security.tests.java.security.spec;
25 import java.security.spec.ECFieldFp;
26 import java.security.spec.ECParameterSpec;
27 import java.security.spec.ECPoint;
28 import java.security.spec.ECPrivateKeySpec;
29 import java.security.spec.EllipticCurve;
ECPublicKeySpec_ImplTest.java 22 package org.apache.harmony.security.tests.java.security.spec;
25 import java.security.spec.ECFieldFp;
26 import java.security.spec.ECParameterSpec;
27 import java.security.spec.ECPoint;
28 import java.security.spec.ECPublicKeySpec;
29 import java.security.spec.EllipticCurve;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
AlgorithmParameterGeneratorSpi.java 6 import java.security.spec.AlgorithmParameterSpec;
8 import javax.crypto.spec.DHGenParameterSpec;
9 import javax.crypto.spec.DHParameterSpec;
40 DHGenParameterSpec spec = (DHGenParameterSpec)genParamSpec; local
42 this.strength = spec.getPrimeSize();
43 this.l = spec.getExponentSize();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
BouncyCastleProviderConfiguration.java 5 import javax.crypto.spec.DHParameterSpec;
11 import org.bouncycastle.jce.spec.ECParameterSpec;
48 else // assume java.security.spec
50 curveSpec = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false);
73 else // assume java.security.spec
75 ecImplicitCaParams = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false);
125 ECParameterSpec spec = (ECParameterSpec)ecThreadSpec.get(); local
127 if (spec != null)
129 return spec;
145 DHParameterSpec spec = (DHParameterSpec)params local
    [all...]
  /external/chromium_org/chrome/browser/geolocation/
chrome_access_token_store.cc 25 const std::string& spec = url.spec(); local
28 if (spec == "https://www.google.com/loc/json")
32 if (spec == "https://maps.googleapis.com/maps/api/browserlocation/json")
122 server_url.spec(), Value::CreateStringValue(token));
  /external/chromium_org/chrome/common/extensions/
extension_messages.cc 84 std::string spec; local
86 !ReadParam(m, iter, &spec))
95 URLPattern::ParseResult result = p->Parse(spec);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestInterfaces.cpp 139 string spec = GURL(testURL).spec(); local
141 if (spec.find("loading/") != string::npos)
143 if (spec.find("/dumpAsText/") != string::npos) {
147 if (spec.find("/inspector/") != string::npos)
  /external/emma/ant/ant14/com/vladium/emma/instr/
FilterCfg.java 49 final String spec = specs [i]; local
51 if (spec.startsWith (IInclExclFilter.INCLUSION_PREFIX_STRING) ||
52 spec.startsWith (IInclExclFilter.EXCLUSION_PREFIX_STRING))
54 appendValue (spec, COMMA);
58 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec, COMMA); // default to inclusion
77 final String spec = specs [i]; local
79 if (spec.startsWith (IInclExclFilter.INCLUSION_PREFIX_STRING))
81 appendValue (spec, COMMA);
85 if (spec.startsWith (IInclExclFilter.EXCLUSION_PREFIX_STRING))
86 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec.substring (1), COMMA); // overrid
99 final String spec = specs [i]; local
    [all...]
  /external/emma/core/java12/com/vladium/emma/filter/
IInclExclFilter.java 77 final String spec = specs [i]; local
79 if (spec.length () > 0)
81 if (spec.charAt (0) == EXCLUSION_PREFIX)
82 exclusions.add (spec.substring (1));
87 if (spec.charAt (0) == INCLUSION_PREFIX)
88 inclusions.add (spec.substring (1));
90 inclusions.add (spec);
  /external/guava/guava-tests/test/com/google/common/net/
HostSpecifierTest.java 52 for (String spec : GOOD_IPS) {
53 assertGood(spec);
58 for (String spec : BAD_IPS) {
59 assertBad(spec);
64 for (String spec : GOOD_DOMAINS) {
65 assertGood(spec);
70 for (String spec : BAD_DOMAINS) {
71 assertBad(spec);
77 .addEqualityGroup(spec("1.2.3.4"), spec("1.2.3.4")
86 private static HostSpecifier spec(String specifier) { method in class:HostSpecifierTest
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/dc/
SDL_dcaudio.c 38 static int DCAUD_OpenAudio(_THIS, SDL_AudioSpec *spec);
100 while(aica_get_pos(0)/this->spec.samples == this->hidden->nextbuf) {
150 SDL_AudioSpec *spec = &this->spec; local
155 while(aica_get_pos(0)/spec->samples == this->hidden->nextbuf) {
160 offset = this->hidden->nextbuf*spec->size;
163 if (spec->channels==1) {
167 if ((this->spec.format&255)==8) {
177 mode = (spec->format==AUDIO_S8)?SM_8BIT:SM_16BIT;
178 if (spec->channels==1)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TabSpecTest.java 33 TabHost.TabSpec spec = new TabHost(null).newTabSpec("foo"); local
35 TabHost.TabSpec self = spec.setIndicator(view);
36 assertThat(self, is(spec));
37 assertThat(shadowOf(spec).getIndicatorAsView(), is(view));
42 TabHost.TabSpec spec = new TabHost(null).newTabSpec("foo"); local
44 TabHost.TabSpec self = spec.setContent(intent);
45 assertThat(self, is(spec));
46 assertThat(shadowOf(spec).getContentAsIntent(), is(intent));
53 TabHost.TabSpec spec = new TabHost(null).newTabSpec("foo") local
56 assertThat(shadowOf(spec).getIndicatorLabel(), is("labelText"))
61 TabHost.TabSpec spec = new TabHost(null).newTabSpec("foo") local
    [all...]
  /external/srec/srec/clib/
specnorm.c 37 int copy_distribution_counts(spect_dist_info *spec, spect_dist_info *base);
40 int add_distribution_data(spect_dist_info *spec, int spec_val)
44 ASSERT(spec);
46 if (spec_val < spec->low_entry) spec->low_counts += UNIT_SIZE;
47 else if (spec_val > spec->high_entry) spec->high_counts += UNIT_SIZE;
48 else spec->hist[spec_val - spec->low_entry] += UNIT_SIZE;
54 spec->running_total += spec_val - spec->mean
221 spect_dist_info *spec; local
    [all...]
  /frameworks/base/core/java/android/view/
MagnificationSpec.java 24 * This class represents spec for performing screen magnification.
63 MagnificationSpec spec = sPool.acquire(); local
64 return (spec != null) ? spec : new MagnificationSpec();
118 MagnificationSpec spec = MagnificationSpec.obtain();
119 spec.initFromParcel(parcel);
120 return spec;
  /frameworks/base/keystore/tests/src/android/security/
KeyPairGeneratorSpecTest.java 42 KeyPairGeneratorSpec spec = local
46 assertEquals("Context should be the one specified", getContext(), spec.getContext());
48 assertEquals("Alias should be the one specified", TEST_ALIAS_1, spec.getKeystoreAlias());
50 assertEquals("Key algorithm should be the one specified", "RSA", spec.getKeyType());
52 assertEquals("Key size should be the one specified", 1024, spec.getKeySize());
54 assertEquals("subjectDN should be the one specified", TEST_DN_1, spec.getSubjectDN());
56 assertEquals("startDate should be the one specified", NOW, spec.getStartDate());
58 assertEquals("endDate should be the one specified", NOW_PLUS_10_YEARS, spec.getEndDate());
62 KeyPairGeneratorSpec spec = new KeyPairGeneratorSpec.Builder(getContext()) local
73 assertEquals("Context should be the one specified", getContext(), spec.getContext())
    [all...]
  /libcore/luni/src/main/java/java/security/spec/
ECFieldF2m.java 18 package java.security.spec;
EllipticCurve.java 18 package java.security.spec;
RSAMultiPrimePrivateCrtKeySpec.java 18 package java.security.spec;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESKeySpecTest.java 22 package org.apache.harmony.crypto.tests.javax.crypto.spec;
28 import javax.crypto.spec.DESKeySpec;
OAEPParameterSpecTest.java 23 package org.apache.harmony.crypto.tests.javax.crypto.spec;
25 import java.security.spec.MGF1ParameterSpec;
26 import java.security.spec.AlgorithmParameterSpec;
28 import javax.crypto.spec.OAEPParameterSpec;
29 import javax.crypto.spec.PSource;
RC2ParameterSpecTest.java 23 package org.apache.harmony.crypto.tests.javax.crypto.spec;
28 import javax.crypto.spec.RC2ParameterSpec;
SecretKeySpecTest.java 23 package org.apache.harmony.crypto.tests.javax.crypto.spec;
31 import javax.crypto.spec.SecretKeySpec;
  /libcore/luni/src/test/java/tests/security/spec/
ECFieldFpTest.java 23 package tests.security.spec;
28 import java.security.spec.ECFieldFp;
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpecSet.java 92 RegisterSpec spec = specs[i]; local
93 int oneHash = (spec == null) ? 0 : spec.hashCode();
110 RegisterSpec spec = specs[i]; local
111 if (spec != null) {
117 sb.append(spec);
178 * spec, if any. This is just a convenient shorthand for
179 * {@code get(spec.getReg())}.
181 * @param spec {@code non-null;} spec with the desired register numbe
227 RegisterSpec spec = specs[reg]; local
302 RegisterSpec spec = set.get(i); local
331 RegisterSpec spec = specs[i]; local
362 RegisterSpec spec = specs[i]; local
387 RegisterSpec spec = specs[i]; local
    [all...]

Completed in 306 milliseconds

1 2 3 4 5 67 8 91011>>