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

1 2 3 4 5 6 78 91011>>

  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
GridLayoutTest.java 24 import static android.widget.GridLayout.Spec;
27 import static android.widget.GridLayout.spec;
39 Spec rowSpec = spec(UNDEFINED, null);
40 Spec colSpec = spec(UNDEFINED, null);
  /libcore/benchmarks/src/benchmarks/regression/
CipherInputStreamBenchmark.java 22 import java.security.spec.AlgorithmParameterSpec;
27 import javax.crypto.spec.IvParameterSpec;
55 private AlgorithmParameterSpec spec; field in class:CipherInputStreamBenchmark
63 spec = new IvParameterSpec(IV);
66 cipherEncrypt.init(Cipher.ENCRYPT_MODE, key, spec);
71 cipherEncrypt.init(Cipher.ENCRYPT_MODE, key, spec);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
KeyFactorySpi.java 8 import java.security.spec.InvalidKeySpecException;
9 import java.security.spec.KeySpec;
13 import javax.crypto.spec.DHPrivateKeySpec;
14 import javax.crypto.spec.DHPublicKeySpec;
32 Class spec)
35 if (spec.isAssignableFrom(DHPrivateKeySpec.class) && key instanceof DHPrivateKey)
41 else if (spec.isAssignableFrom(DHPublicKeySpec.class) && key instanceof DHPublicKey)
48 return super.engineGetKeySpec(key, spec);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
KeyFactorySpi.java 10 import java.security.spec.DSAPrivateKeySpec;
11 import java.security.spec.DSAPublicKeySpec;
12 import java.security.spec.InvalidKeySpecException;
13 import java.security.spec.KeySpec;
29 Class spec)
32 if (spec.isAssignableFrom(DSAPublicKeySpec.class) && key instanceof DSAPublicKey)
38 else if (spec.isAssignableFrom(DSAPrivateKeySpec.class) && key instanceof java.security.interfaces.DSAPrivateKey)
45 return super.engineGetKeySpec(key, spec);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseAlgorithmParameters.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.InvalidParameterSpecException;
  /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/doclava/src/com/google/doclava/
SinceTagger.java 101 * @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) {
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) {
159 && spec.hasConstructor(constructor)) {
165 // Find matching field from API spec
166 if (spec.allConstructorsMap().containsKey(constructor.getHashableName())) {
167 MethodInfo specConstructor = spec.allConstructorsMap().get(constructor.getHashableName())
    [all...]
  /external/autotest/server/cros/dynamic_suite/
host_spec.py 11 Currently, 'complex' means that the spec contains more labels.
37 Given a simple list of HostSpec objects, pull out the spec and use it to
38 get the associated hosts out of hosts_per_spec. Return the spec and the
45 spec = host_specs.pop()
46 return spec, hosts_per_spec[spec]
103 def __init__(self, spec):
104 self.spec = spec
116 for spec, host_list in hosts_per_spec.iteritems()
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
sym_ids.c 44 char *spec; /* Parsing modifies this. */
91 sym_id_add (const char *spec, Table_Id which_table)
94 int len = strlen (spec);
99 id->spec = (char *) id + sizeof (*id);
100 strcpy (id->spec, spec);
108 /* A spec has the syntax FILENAME:(FUNCNAME|LINENUM). As a convenience
109 to the user, a spec without a colon is interpreted as:
119 parse_spec (char *spec, Sym *sym)
124 colon = strrchr (spec, ':')
43 char *spec; \/* Parsing modifies this. *\/ member in struct:sym_id
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
TileQueryHelper.java 66 final String spec = possibleTiles[i]; local
67 final QSTile<?> tile = host.createTile(spec);
85 addTile(spec, null, state, true);
109 private void addTile(String spec, CharSequence appLabel, State state, boolean isSystem) {
110 if (mSpecs.contains(spec)) {
117 info.spec = spec;
121 mSpecs.add(spec);
124 private void addTile(String spec, Drawable drawable, CharSequence label, CharSequence appLabel,
130 addTile(spec, appLabel, state, false)
134 public String spec; field in class:TileQueryHelper.TileInfo
152 String spec = CustomTile.toSpec(componentName); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
StateTransitionAnimation.java 30 public static class Spec {
31 public static final Spec OUTGOING;
32 public static final Spec INCOMING;
33 public static final Spec PHOTO_INCOMING;
54 OUTGOING = new Spec();
64 INCOMING = new Spec();
77 private static Spec specForTransition(Transition t) {
80 return Spec.OUTGOING;
82 return Spec.INCOMING;
84 return Spec.PHOTO_INCOMING
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnescapeTransliterator.java 39 private char spec[]; field in class:UnescapeTransliterator
42 * Special character marking the end of the spec[] array.
129 * Package private constructor. Takes the encoded spec array.
131 UnescapeTransliterator(String ID, char spec[]) {
133 this.spec = spec;
147 // Loop over the forms in spec[]. Exit this loop when we
150 for (ipat = 0; spec[ipat] != END;) {
153 int prefixLen = spec[ipat++];
154 int suffixLen = spec[ipat++]
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
UnescapeTransliterator.java 38 private char spec[]; field in class:UnescapeTransliterator
41 * Special character marking the end of the spec[] array.
128 * Package private constructor. Takes the encoded spec array.
130 UnescapeTransliterator(String ID, char spec[]) {
132 this.spec = spec;
146 // Loop over the forms in spec[]. Exit this loop when we
149 for (ipat = 0; spec[ipat] != END;) {
152 int prefixLen = spec[ipat++];
153 int suffixLen = spec[ipat++]
    [all...]
  /external/libselinux/src/
label_file.c 68 struct spec *curr_spec, *spec_arr = data->spec_arr;
269 struct spec *spec; local
277 spec = &data->spec_arr[data->nspec];
278 spec->from_mmap = 1;
279 spec->regcomp = 1;
302 spec->lr.ctx_raw = str_buf;
304 if (strcmp(spec->lr.ctx_raw, "<<none>>") && rec->validating) {
305 if (selabel_validate(rec, &spec->lr) < 0) {
307 "%s: context %s is invalid\n", mmap_path, spec->lr.ctx_raw)
560 struct spec *spec; local
648 struct spec *spec = &spec_arr[i]; local
699 struct spec *spec; local
    [all...]
  /external/selinux/libselinux/src/
label_file.c 69 struct spec *curr_spec, *spec_arr = data->spec_arr;
271 struct spec *spec; local
279 spec = &data->spec_arr[data->nspec];
280 spec->from_mmap = 1;
281 spec->regcomp = 1;
304 spec->lr.ctx_raw = str_buf;
306 if (strcmp(spec->lr.ctx_raw, "<<none>>") && rec->validating) {
307 if (selabel_validate(rec, &spec->lr) < 0) {
309 "%s: context %s is invalid\n", mmap_path, spec->lr.ctx_raw)
597 struct spec *spec; local
685 struct spec *spec = &spec_arr[i]; local
736 struct spec *spec; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
BCECPublicKey.java 8 import java.security.spec.ECParameterSpec;
9 import java.security.spec.ECPoint;
10 import java.security.spec.ECPublicKeySpec;
11 import java.security.spec.EllipticCurve;
35 import org.bouncycastle.jce.spec.ECNamedCurveSpec;
64 ECPublicKeySpec spec,
68 this.ecSpec = spec.getParams();
69 this.q = EC5Util.convertPoint(ecSpec, spec.getW(), false);
75 org.bouncycastle.jce.spec.ECPublicKeySpec spec,
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEECPrivateKey.java 8 import java.security.spec.ECParameterSpec;
9 import java.security.spec.ECPoint;
10 import java.security.spec.ECPrivateKeySpec;
11 import java.security.spec.EllipticCurve;
40 import org.bouncycastle.jce.spec.ECNamedCurveSpec;
70 org.bouncycastle.jce.spec.ECPrivateKeySpec spec)
73 this.d = spec.getD();
75 if (spec.getParams() != null) // can be null if implicitlyCA
77 ECCurve curve = spec.getParams().getCurve()
    [all...]
  /art/runtime/interpreter/mterp/x86_64/
op_monitor_exit.S 6 * instruction spec.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
ExtendedInvalidKeySpecException.java 3 import java.security.spec.InvalidKeySpecException;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
ECKey.java 3 import org.bouncycastle.jce.spec.ECParameterSpec;
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/spec/
jasmine.yml 67 # Spec directory path. Your spec_files must be returned relative to this path.
68 # Default: spec/javascripts
72 # spec_dir: spec/javascripts
74 spec_dir: spec
  /external/kernel-headers/original/uapi/linux/usb/
ch11.h 15 * From USB 2.0 spec Table 11-13, offset 7, a hub can
34 * See USB 2.0 spec Table 11-16
42 * Hub class additional requests defined by USB 3.0 spec
43 * See USB 3.0 spec Table 10-6
50 * See USB 2.0 spec Table 11-17
57 * See USB 2.0 spec Table 11-17
77 * Port feature selectors added by USB 3.0 spec.
78 * See USB 3.0 spec Table 10-7
99 * See USB 2.0 spec Table 11-19 and Table 11-20
108 * See USB 2.0 spec Table 11-2
    [all...]
  /external/libdaemon/
.gitignore 24 libdaemon.spec
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/
Makefile.wine 8 %.dll.fake: %.spec $(OBJECTS) version.res
11 %.dll.so: %.spec $(OBJECTS) version.res
14 lib%.def: %.spec
17 lib%.cross.a: %.spec
  /external/v8/test/cctest/
test-feedback-vector.h 42 template <typename Spec>
43 Handle<TypeFeedbackVector> NewTypeFeedbackVector(Isolate* isolate, Spec* spec) {
45 TypeFeedbackMetadata::New(isolate, spec);

Completed in 469 milliseconds

1 2 3 4 5 6 78 91011>>