HomeSort by relevance Sort by last modified time
    Searched full:spec (Results 1076 - 1100 of 5555) sorted by null

<<41424344454647484950>>

  /prebuilts/go/linux-x86/src/cmd/fix/
fix.go 71 case *ast.Spec:
99 case *[]ast.Spec:
277 case []ast.Spec:
290 // importSpec returns the import spec if f imports path,
316 for _, spec := range gen.Specs {
317 impspec := spec.(*ast.ImportSpec)
597 for j, spec := range gen.Specs {
598 impspec := spec.(*ast.ImportSpec)
653 for j, spec := range gen.Specs {
654 impspec := spec.(*ast.ImportSpec
    [all...]
  /prebuilts/go/linux-x86/src/go/doc/
reader.go 224 func specNames(specs []ast.Spec) []string {
246 for _, spec := range decl.Specs {
247 s, ok := spec.(*ast.ValueSpec)
323 func (r *reader) readType(decl *ast.GenDecl, spec *ast.TypeSpec) {
324 typ := r.lookupType(spec.Name.Name)
334 doc := spec.Doc
335 spec.Doc = nil // doc consumed - remove from AST
337 // no doc associated with the spec, use the declaration doc, if any
347 list, typ.isStruct = fields(spec.Type)
470 for _, spec := range d.Specs
    [all...]
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.2/
gradle-tooling-api-2.2.jar 
  /art/runtime/base/
logging.cc 106 std::string spec(specs[i]);
107 if (spec.size() == 3 && StartsWith(spec, "*:")) {
108 switch (spec[2]) {
133 LOG(FATAL) << "unsupported '" << spec << "' in ANDROID_LOG_TAGS (" << tags << ")";
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyPairGeneratorTest.java 46 import java.security.spec.AlgorithmParameterSpec;
47 import java.security.spec.ECGenParameterSpec;
48 import java.security.spec.ECParameterSpec;
49 import java.security.spec.RSAKeyGenParameterSpec;
158 KeyPairGeneratorSpec spec = new KeyPairGeneratorSpec.Builder(getContext()) local
165 getRsaGenerator().initialize(spec);
166 getRsaGenerator().initialize(spec, new SecureRandom());
168 getEcGenerator().initialize(spec);
169 getEcGenerator().initialize(spec, new SecureRandom());
173 KeyGenParameterSpec spec = new KeyGenParameterSpec.Builder local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlockList.java 386 * Processes the given register spec.
388 * @param spec {@code non-null;} the register spec
390 private void processReg(RegisterSpec spec) {
391 int reg = spec.getNextReg();
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlockList.java 384 * Processes the given register spec.
386 * @param spec {@code non-null;} the register spec
388 private void processReg(RegisterSpec spec) {
389 int reg = spec.getNextReg();
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
SecretKeyFactoryTest.java 28 import java.security.spec.InvalidKeySpecException;
29 import java.security.spec.KeySpec;
34 import javax.crypto.spec.DESKeySpec;
35 import javax.crypto.spec.DESedeKeySpec;
36 import javax.crypto.spec.SecretKeySpec;
  /external/autotest/server/cros/clique_lib/
clique_dut_locker.py 26 """Object to specify the DUT spec.
54 """Object to specify the DUT set spec. It's a list of DUTSpec objects."""
62 """Object to specify the DUT pool spec.It's a list of DUTSetSpec objects."""
81 @param dut_spec: a DUTSpec object corresponding to the spec of the DUT
196 logging.debug('Trying to find a device with spec (%s, %s)',
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
OperatorHelper.java 16 import java.security.spec.InvalidKeySpecException;
17 import java.security.spec.PSSParameterSpec;
18 import java.security.spec.X509EncodedKeySpec;
346 PSSParameterSpec spec = (PSSParameterSpec)params.getParameterSpec(PSSParameterSpec.class); local
347 sig.setParameter(spec);
  /external/curl/tests/
sshhelp.pm 28 use File::Spec;
302 my $file = File::Spec->catfile($_, $fn);
319 my $file = File::Spec->catfile($_, $fn);
334 push(@spath, File::Spec->path());
346 push(@hpath, File::Spec->path());
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlockList.java 384 * Processes the given register spec.
386 * @param spec {@code non-null;} the register spec
388 private void processReg(RegisterSpec spec) {
389 int reg = spec.getNextReg();
  /external/icu/icu4c/source/i18n/
transreg.cpp 196 * Spec class for sources and targets.
198 * A Spec may be a locale or a script. If it is a locale, it has a
200 * ssss is the script mapping of xx_YY_ZZZ. The Spec API methods
204 * The Spec class canonicalizes itself, so the locale is put into
210 TransliteratorSpec(const UnicodeString& spec);
228 UnicodeString spec; member in class:TransliteratorSpec
231 UBool isSpecLocale; // TRUE if spec is a locale
281 // assert(spec != top);
294 if (spec != top) {
295 spec = top
    [all...]
  /external/llvm/lib/MC/
MCSectionMachO.cpp 166 /// ParseSectionSpecifier - Parse the section specifier indicated by "Spec".
171 std::string MCSectionMachO::ParseSectionSpecifier(StringRef Spec, // In.
180 Spec.split(SplitSpec, ',');
253 // Okay, we've parsed the section attributes, see if we have a stub size spec.
262 // If we have a stub size spec, we must have a sectiontype of S_SYMBOL_STUBS.
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DumperOptions.java 34 * @see <a href="http://yaml.org/spec/1.1/#id903915">Chapter 9. Scalar
36 * @see <a href="http://yaml.org/spec/1.1/#id858081">2.3. Scalars</a>
81 * @see <a href="http://www.yaml.org/spec/current.html#id2509255">3.2.3.1.
82 * Node Styles (http://yaml.org/spec/1.1)</a>
203 * (http://yaml.org/spec/1.1/#id858081)
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
quantize.c 327 Word32 calcSfbDist(const Word32 *spec,
348 if (spec[line]) {
353 sa = L_abs(spec[line]);
398 if (spec[line]) {
403 sa = L_abs(spec[line]);
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
Material.java 43 public static final int SPEC = 5;
94 mColor[p + SPEC] = (byte) (255 * specular);
254 mColor[p + SPEC] = (byte) (255 * mp.mSpecular);
280 mColor[p + SPEC] = (byte) (255 * specular);
297 mColor[p + SPEC] = (byte) (255 * mp.mSpecular);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
SecretKeyFactoryTest.java 31 import java.security.spec.InvalidKeySpecException;
32 import java.security.spec.KeySpec;
38 import javax.crypto.spec.DESKeySpec;
39 import javax.crypto.spec.DESedeKeySpec;
40 import javax.crypto.spec.SecretKeySpec;
  /system/core/base/
logging.cpp 262 std::string spec(specs[i]);
263 if (spec.size() == 3 && StartsWith(spec, "*:")) {
264 switch (spec[2]) {
290 LOG(FATAL) << "unsupported '" << spec << "' in ANDROID_LOG_TAGS (" << tags
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreCipherSpiBase.java 45 import java.security.spec.AlgorithmParameterSpec;
46 import java.security.spec.InvalidKeySpecException;
47 import java.security.spec.PKCS8EncodedKeySpec;
48 import java.security.spec.X509EncodedKeySpec;
59 import javax.crypto.spec.SecretKeySpec;
604 SecretKeySpec spec = local
607 encoded = spec.getEncoded();
621 PKCS8EncodedKeySpec spec = local
623 encoded = spec.getEncoded();
637 X509EncodedKeySpec spec local
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
KeyPairGeneratorTest.java 38 import java.security.spec.AlgorithmParameterSpec;
39 import java.security.spec.DSAParameterSpec;
40 import java.security.spec.ECGenParameterSpec;
41 import java.security.spec.ECParameterSpec;
42 import java.security.spec.PKCS8EncodedKeySpec;
43 import java.security.spec.X509EncodedKeySpec;
53 import javax.crypto.spec.DHParameterSpec;
330 PKCS8EncodedKeySpec spec = new PKCS8EncodedKeySpec(encoded); local
332 PrivateKey privKey = kf.generatePrivate(spec);
347 X509EncodedKeySpec spec = new X509EncodedKeySpec(encoded) local
    [all...]
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.4-20150121230028+0000/
gradle-tooling-api-2.4-20150121230028+0000.jar 
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java 138 * <p>See "Evaluation of XPath Expressions" section of JAXP 1.3 spec
167 //Validating parameters to enforce constraints defined by JAXP spec
169 //Throwing NullPointerException as defined in spec
196 // XPathExpressionException ( as per spec )
211 * <p>See "Evaluation of XPath Expressions" section of JAXP 1.3 spec
247 * <p>See "Evaluation of XPath Expressions" section of JAXP 1.3 spec
309 * <p>See "Evaluation of XPath Expressions" section of JAXP 1.3 spec
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DES.java 6 import java.security.spec.AlgorithmParameterSpec;
7 import java.security.spec.InvalidKeySpecException;
8 import java.security.spec.KeySpec;
11 import javax.crypto.spec.DESKeySpec;
12 import javax.crypto.spec.IvParameterSpec;
13 import javax.crypto.spec.PBEKeySpec;
14 import javax.crypto.spec.SecretKeySpec;
  /external/deqp/modules/gles3/functional/
es3fTransformFeedbackTests.cpp 236 static bool isProgramSupported (const glw::Functions& gl, const ProgramSpec& spec, deUint32 tfMode)
249 int totalVertexAttribs = 1 /* a_position */ + (spec.isPointSizeUsed() ? 1 : 0);
250 for (vector<Varying>::const_iterator var = spec.getVaryings().begin(); var != spec.getVaryings().end(); var++)
262 for (vector<string>::const_iterator iter = spec.getTransformFeedbackVaryings().begin(); iter != spec.getTransformFeedbackVaryings().end(); iter++)
274 const Varying& varying = *std::find_if(spec.getVaryings().begin(), spec.getVaryings().end(), VaryingNameEquals(varName));
325 static void genShaderSources (const ProgramSpec& spec, std::string& vertSource, std::string& fragSource, bool pointSizeRequired)
329 bool addPointSize = spec.isPointSizeUsed()
    [all...]

Completed in 1029 milliseconds

<<41424344454647484950>>