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

1 2 3 4 5 67 8 91011>>

  /development/samples/Vault/src/com/example/android/vault/
SecretKeyWrapper.java 77 final KeyPairGeneratorSpec spec = new KeyPairGeneratorSpec.Builder(context) local
86 gen.initialize(spec);
  /external/aac/libAACenc/src/
band_nrg.cpp 151 FIXP_DBL spec; local
160 spec = mdctSpectrum[j] << scale;
161 tmp = fPow2AddDiv2(tmp, spec);
201 FIXP_DBL spec; local
211 spec = mdctSpectrum[j] << leadingBits;
212 tmp = fPow2AddDiv2(tmp, spec);
217 spec = mdctSpectrum[j] >> shift;
218 tmp = fPow2AddDiv2(tmp, spec);
276 FIXP_DBL spec = scaleValue(mdctSpectrum[j], leadingBits); local
277 tmp = fPow2AddDiv2(tmp, spec);
    [all...]
  /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;
41 DHGenParameterSpec spec = (DHGenParameterSpec)genParamSpec; local
43 this.strength = spec.getPrimeSize();
44 this.l = spec.getExponentSize();
  /external/clang/test/PCH/
cxx1y-variable-templates.cpp 50 namespace spec { namespace
145 namespace spec { namespace
  /external/deqp/modules/glshared/
glsShaderConstExprTests.cpp 158 glu::sl::ShaderCaseSpecification spec; local
160 spec.targetVersion = version;
161 spec.expectResult = glu::sl::EXPECT_PASS;
162 spec.caseType = glu::sl::CASETYPE_VERTEX_ONLY;
163 spec.programs.resize(1);
165 spec.programs[0].sources << glu::VertexSource(mapped);
167 addOutputVar(&spec.values, outType, cases[caseNdx].output);
174 spec));
179 glu::sl::ShaderCaseSpecification spec; local
181 spec.targetVersion = version
212 glu::sl::ShaderCaseSpecification spec; local
233 glu::sl::ShaderCaseSpecification spec; local
    [all...]
  /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/robolectric/v1/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/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowTabSpecTest.java 31 TabHost.TabSpec spec = new TabHost(RuntimeEnvironment.application).newTabSpec("foo"); local
33 TabHost.TabSpec self = spec.setIndicator(view);
34 assertThat(self).isSameAs(spec);
35 assertThat(shadowOf(spec).getIndicatorAsView()).isSameAs(view);
40 TabHost.TabSpec spec = new TabHost(RuntimeEnvironment.application).newTabSpec("foo"); local
42 TabHost.TabSpec self = spec.setContent(intent);
43 assertThat(self).isSameAs(spec);
44 assertThat(shadowOf(spec).getContentAsIntent()).isSameAs(intent);
49 TabHost.TabSpec spec = new TabHost(RuntimeEnvironment.application).newTabSpec("foo") local
52 assertThat(shadowOf(spec).getIndicatorLabel()).isEqualTo("labelText")
58 TabHost.TabSpec spec = new TabHost(RuntimeEnvironment.application).newTabSpec("foo") local
    [all...]
  /external/skia/fuzz/
FuzzParsePath.cpp 117 SkString spec; local
121 spec.append(MakeRandomParsePathPiece(fuzz));
123 SkDebugf("SkParsePath::FromSVGString(%s, &path);\n",spec.c_str());
124 if (!SkParsePath::FromSVGString(spec.c_str(), &path)){
  /external/skia/gm/
arcto.cpp 150 SkString spec; local
153 spec.printf("M %d,%d\n", x, y);
156 spec.append(MakeRandomParsePathPiece(&rand));
158 SkAssertResult(SkParsePath::FromSVGString(spec.c_str(), &path));
167 sk_fwrite(spec.c_str(), spec.size(), file);
  /external/skqp/fuzz/
FuzzParsePath.cpp 117 SkString spec; local
121 spec.append(MakeRandomParsePathPiece(fuzz));
123 SkDebugf("SkParsePath::FromSVGString(%s, &path);\n",spec.c_str());
124 if (!SkParsePath::FromSVGString(spec.c_str(), &path)){
  /external/skqp/gm/
arcto.cpp 150 SkString spec; local
153 spec.printf("M %d,%d\n", x, y);
156 spec.append(MakeRandomParsePathPiece(&rand));
158 SkAssertResult(SkParsePath::FromSVGString(spec.c_str(), &path));
167 sk_fwrite(spec.c_str(), spec.size(), file);
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_tensorflow_server.cc 59 const StringPiece spec = job_pieces[1]; local
61 const std::vector<string> host_ports = str_util::Split(spec, ';');
74 "\" does not appear in the cluster spec");
89 << " --cluster_spec=SPEC --job_name=NAME --task_id=ID" << std::endl;
91 std::cerr << " SPEC is <JOB>(,<JOB>)*" << std::endl;
103 tensorflow::Flag("cluster_spec", &cluster_spec, "cluster spec"),
grpc_testlib_server.cc 53 const StringPiece spec = job_pieces[1]; local
55 const std::vector<string> host_ports = str_util::Split(spec, ';');
103 LOG(ERROR) << "Could not parse job spec: " << s.error_message() << "\n"
  /external/v8/tools/clang/blink_gc_plugin/
Config.cpp 59 ClassTemplateSpecializationDecl* spec = local
61 if (!spec)
63 switch (spec->getTemplateSpecializationKind()) {
  /external/vulkan-validation-layers/scripts/
spec.py 13 # spec.py script
15 # Overview - this script is intended to generate validation error codes and message strings from the json spec file
19 # Ideal flow - Pull the valid usage text and IDs from the spec json, pull the IDs from the validation error database,
35 # This is the root spec link that is used in error messages to point users to spec sections
41 # spec valid usage language as well as the link to nearest section of spec to that language
42 error_msg_prefix = "The spec valid usage text states "
46 print ("Usage: python spec.py [-out <headerfile.h>] [-gendb <databasefile.txt>] [-update] [-json <json_file>] [-help]")
54 print (" and online spec file as the latest. The default header and database files will be updated in-place for review and (…)
344 spec = Specification() variable
    [all...]
  /frameworks/base/keystore/tests/src/android/security/keystore/
KeyGenParameterSpecTest.java 38 KeyGenParameterSpec spec = ParcelableKeyGenParameterSpecTest.configureDefaultSpec(); local
40 new KeyGenParameterSpec.Builder(spec).build();
42 copiedSpec, spec.getUid(), spec.getKeystoreAlias());
47 KeyGenParameterSpec spec = new KeyGenParameterSpec.Builder(ALIAS, KEY_PURPOSES).build(); local
48 KeyGenParameterSpec copiedSpec = new KeyGenParameterSpec.Builder(spec).build();
56 KeyGenParameterSpec spec = ParcelableKeyGenParameterSpecTest.configureDefaultSpec(); local
58 new KeyGenParameterSpec.Builder(spec)
  /frameworks/compile/mclinker/include/mcld/Script/
InputSectDesc.h 30 struct Spec {
53 bool operator==(const Spec& pRHS) const {
73 const Spec& pSpec,
79 const Spec& spec() const { return m_Spec; } function in class:mcld::InputSectDesc
91 Spec m_Spec;
  /frameworks/support/samples/ViewPager2Demos/src/main/java/com/example/androidx/viewpager2/cards/
Card.java 65 char[] spec = bundle.getCharArray(ARGS_BUNDLE); local
66 return new Card(spec[0], spec[1]);
  /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;

Completed in 679 milliseconds

1 2 3 4 5 67 8 91011>>