Searched defs:spec (Results 101 - 125 of 254) sorted by relevance

1234567891011

/external/chromium/googleurl/src/
H A Durl_canon_stdurl.cc151 bool CanonicalizeStandardURL(const char* spec, argument
158 URLComponentSource<char>(spec), parsed, query_converter,
162 bool CanonicalizeStandardURL(const char16* spec, argument
169 URLComponentSource<char16>(spec), parsed, query_converter,
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableInfo.java178 * register spec. This throws an exception if the instruction
181 * <b>Note:</b> Although the instruction contains its own spec for
183 * method, since the spec that is stored here should always have a
188 * @param spec {@code non-null;} the associated register spec
190 public void addAssignment(Insn insn, RegisterSpec spec) { argument
197 if (spec == null) {
198 throw new NullPointerException("spec == null");
201 insnAssignments.put(insn, spec);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableInfo.java175 * register spec. This throws an exception if the instruction
178 * <b>Note:</b> Although the instruction contains its own spec for
180 * method, since the spec that is stored here should always have a
185 * @param spec {@code non-null;} the associated register spec
187 public void addAssignment(SsaInsn insn, RegisterSpec spec) { argument
194 if (spec == null) {
195 throw new NullPointerException("spec == null");
198 insnAssignments.put(insn, spec);
/external/doclava/src/com/google/doclava/
H A DSinceTagger.java101 * @param specApi the spec for this version. If a symbol is in this spec, it was present in the
140 private void versionClass(String versionName, ClassInfo spec, ClassInfo doc) { argument
147 if (spec.isDeprecated()) {
154 * Applies version information from {@code spec} to {@code doc} where not already present.
156 private void versionConstructors(String versionName, ClassInfo spec, ClassInfo doc) { argument
159 && spec.hasConstructor(constructor)) {
165 // Find matching field from API spec
166 if (spec.allConstructorsMap().containsKey(constructor.getHashableName())) {
167 MethodInfo specConstructor = spec
179 versionFields(String versionName, ClassInfo spec, ClassInfo doc) argument
201 versionMethods(String versionName, ClassInfo spec, ClassInfo doc) argument
[all...]
/external/openssh/
H A Dcompat.c181 proto_spec(const char *spec) argument
186 if (spec == NULL)
188 q = s = xstrdup(spec);
200 logit("ignoring bad proto spec: '%s'.", p);
/external/oprofile/pp/
H A Dopannotate_options.cpp89 void handle_options(options::spec const & spec) argument
93 if (spec.first.size()) {
125 profile_spec::create(spec.common, options::image_path,
/external/qemu/distrib/sdl-1.2.15/src/audio/bsd/
H A DSDL_bsdaudio.c71 static int OBSD_OpenAudio(_THIS, SDL_AudioSpec *spec);
302 OBSD_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
311 SDL_CalculateAudioSpec(spec);
333 for (format = SDL_FirstAudioFormat(spec->format);
369 SDL_SetError("No supported encoding for 0x%x", spec->format);
373 spec->format = format;
376 info.play.channels = spec->channels;
378 spec->channels = 1;
380 info.play.sample_rate = spec->freq;
381 info.blocksize = spec
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/disk/
H A DSDL_diskaudio.c50 static int DISKAUD_OpenAudio(_THIS, SDL_AudioSpec *spec);
160 static int DISKAUD_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
176 this->hidden->mixlen = spec->size;
181 SDL_memset(this->hidden->mixbuf, spec->silence, spec->size);
/external/qemu/distrib/sdl-1.2.15/src/audio/dsp/
H A DSDL_dspaudio.c61 static int DSP_OpenAudio(_THIS, SDL_AudioSpec *spec);
163 static int DSP_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
173 if (spec->channels > 8)
174 spec->channels = 8;
175 else if (spec->channels > 4)
176 spec->channels = 4;
177 else if (spec->channels > 2)
178 spec->channels = 2;
209 for ( test_format = SDL_FirstAudioFormat(spec->format);
264 spec
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_dma8.c67 static int Mint_OpenAudio(_THIS, SDL_AudioSpec *spec);
72 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec);
198 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec) argument
203 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff));
204 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0)));
205 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0)));
206 DEBUG_PRINT(("channels=%d, ", spec->channels));
207 DEBUG_PRINT(("freq=%d\n", spec->freq));
209 if (spec->channels > 2)
210 spec
265 Mint_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
[all...]
H A DSDL_mintaudio_stfa.c76 static int Mint_OpenAudio(_THIS, SDL_AudioSpec *spec);
81 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec);
82 static void Mint_InitAudio(_THIS, SDL_AudioSpec *spec);
201 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec) argument
205 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff));
206 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0)));
207 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0)));
208 DEBUG_PRINT(("channels=%d, ", spec->channels));
209 DEBUG_PRINT(("freq=%d\n", spec->freq));
211 if (spec
242 Mint_InitAudio(_THIS, SDL_AudioSpec *spec) argument
292 Mint_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/nds/
H A DSDL_ndsaudio.c37 static int NDS_OpenAudio(_THIS, SDL_AudioSpec *spec);
55 // memset(buffer, sdl_nds_audiodevice->spec.silence, size);
69 // // sdl_nds_audiodevice->spec.callback(sdl_nds_audiodevice->spec.userdata,
75 // sdl_nds_audiodevice->spec.callback(sdl_nds_audiodevice->spec.userdata, buffer, size);
121 SDL_memset(stream, audio->spec.silence, len);
131 (*audio->spec.callback)(audio->spec.userdata,
138 (*audio->spec
280 NDS_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebURL.h55 WebURL(const WebCString& spec, const url_parse::Parsed& parsed, bool isValid) argument
56 : m_spec(spec)
77 void assign(const WebCString& spec, const url_parse::Parsed& parsed, bool isValid) argument
79 m_spec = spec;
84 const WebCString& spec() const function in class:WebKit::WebURL
143 return a.spec() < b.spec();
148 return !a.spec().compare(b.spec());
/external/webkit/Source/WebKit/gtk/tests/
H A Dtesthittestresult.c75 GParamSpec* spec,
74 load_status_cb(WebKitWebView* webView, GParamSpec* spec, gpointer data) argument
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
H A DEllipticCurveTest.java18 package org.apache.harmony.security.tests.java.security.spec;
21 import java.security.spec.ECField;
22 import java.security.spec.ECFieldF2m;
23 import java.security.spec.ECFieldFp;
24 import java.security.spec.EllipticCurve;
436 * @tests java/security/spec/EllipticCurve#EllipticCurve(EcField,BigInteger,BigInteger)
542 * @tests java.security.spec.EllipticCurve#getSeed()
H A DPSSParameterSpecTest.java22 package org.apache.harmony.security.tests.java.security.spec;
24 import java.security.spec.AlgorithmParameterSpec;
25 import java.security.spec.MGF1ParameterSpec;
26 import java.security.spec.PSSParameterSpec;
H A DRSAMultiPrimePrivateCrtKeySpecTest.java22 package org.apache.harmony.security.tests.java.security.spec;
25 import java.security.spec.KeySpec;
26 import java.security.spec.RSAMultiPrimePrivateCrtKeySpec;
27 import java.security.spec.RSAOtherPrimeInfo;
28 import java.security.spec.RSAPrivateKeySpec;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPrivateKey.java10 import javax.crypto.spec.DHParameterSpec;
11 import javax.crypto.spec.DHPrivateKeySpec;
54 DHPrivateKeySpec spec)
56 this.x = spec.getX();
57 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
53 BCDHPrivateKey( DHPrivateKeySpec spec) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java9 import java.security.spec.DSAParameterSpec;
10 import java.security.spec.DSAPrivateKeySpec;
48 DSAPrivateKeySpec spec)
50 this.x = spec.getX();
51 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
47 BCDSAPrivateKey( DSAPrivateKeySpec spec) argument
H A DBCDSAPublicKey.java9 import java.security.spec.DSAParameterSpec;
10 import java.security.spec.DSAPublicKeySpec;
31 DSAPublicKeySpec spec)
33 this.y = spec.getY();
34 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
30 BCDSAPublicKey( DSAPublicKeySpec spec) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DBCRSAPrivateCrtKey.java6 import java.security.spec.RSAPrivateCrtKeySpec;
53 * @param spec the spec to be used in construction.
56 RSAPrivateCrtKeySpec spec)
58 this.modulus = spec.getModulus();
59 this.publicExponent = spec.getPublicExponent();
60 this.privateExponent = spec.getPrivateExponent();
61 this.primeP = spec.getPrimeP();
62 this.primeQ = spec.getPrimeQ();
63 this.primeExponentP = spec
55 BCRSAPrivateCrtKey( RSAPrivateCrtKeySpec spec) argument
[all...]
H A DBCRSAPrivateKey.java8 import java.security.spec.RSAPrivateKeySpec;
46 RSAPrivateKeySpec spec)
48 this.modulus = spec.getModulus();
49 this.privateExponent = spec.getPrivateExponent();
45 BCRSAPrivateKey( RSAPrivateKeySpec spec) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPublicKey.java8 import java.security.spec.ECParameterSpec;
9 import java.security.spec.ECPoint;
10 import java.security.spec.ECPublicKeySpec;
11 import java.security.spec.EllipticCurve;
43 // import org.bouncycastle.jce.spec.ECNamedCurveParameterSpec;
45 import org.bouncycastle.jce.spec.ECNamedCurveSpec;
74 ECPublicKeySpec spec)
77 this.ecSpec = spec.getParams();
78 this.q = EC5Util.convertPoint(ecSpec, spec.getW(), false);
83 org.bouncycastle.jce.spec
72 JCEECPublicKey( String algorithm, ECPublicKeySpec spec) argument
81 JCEECPublicKey( String algorithm, org.bouncycastle.jce.spec.ECPublicKeySpec spec) argument
107 JCEECPublicKey( String algorithm, ECPublicKeyParameters params, ECParameterSpec spec) argument
129 JCEECPublicKey( String algorithm, ECPublicKeyParameters params, org.bouncycastle.jce.spec.ECParameterSpec spec) argument
[all...]
H A DJCERSAPrivateKey.java8 import java.security.spec.RSAPrivateKeySpec;
46 RSAPrivateKeySpec spec)
48 this.modulus = spec.getModulus();
49 this.privateExponent = spec.getPrivateExponent();
45 JCERSAPrivateKey( RSAPrivateKeySpec spec) argument
H A DJDKDSAPrivateKey.java9 import java.security.spec.DSAParameterSpec;
10 import java.security.spec.DSAPrivateKeySpec;
50 DSAPrivateKeySpec spec)
52 this.x = spec.getX();
53 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
49 JDKDSAPrivateKey( DSAPrivateKeySpec spec) argument

Completed in 343 milliseconds

1234567891011