/external/libselinux/src/ |
label_android_property.c | 17 typedef struct spec { struct 34 const struct spec *sp1 = A, *sp2 = B; 54 struct spec *curr_spec, *spec_arr = data->spec_arr; 120 /* On the second pass, process and store the specification in spec. */ 173 * After the first pass, the spec array is malloced to the appropriate 174 * size. Second pass is to populate the spec array and check for 212 qsort(data->spec_arr, data->nspec, sizeof(struct spec), cmp); 226 struct spec *spec; local 230 spec = &data->spec_arr[i] [all...] |
/external/jetty/src/java/org/eclipse/jetty/http/ |
PathMap.java | 70 /** Set the path spec separator. 168 String spec=tok.nextToken(); local 170 if (!spec.startsWith("/") && !spec.startsWith("*.")) 171 throw new IllegalArgumentException("PathSpec "+spec+". must start with '/' or '*.'"); 173 old = super.put(spec,object); 176 Entry entry = new Entry(spec,object); 178 if (entry.getKey().equals(spec)) 180 if (spec.equals("/*")) 182 else if (spec.endsWith("/*") 366 String spec=(String) pathSpec; local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
JCEDHPrivateKey.java | 10 import javax.crypto.spec.DHParameterSpec; 11 import javax.crypto.spec.DHPrivateKeySpec; 52 DHPrivateKeySpec spec) 54 this.x = spec.getX(); 55 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
|
JCEDHPublicKey.java | 9 import javax.crypto.spec.DHParameterSpec; 10 import javax.crypto.spec.DHPublicKeySpec; 34 DHPublicKeySpec spec) 36 this.y = spec.getY(); 37 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
|
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/ |
README.md | 8 **Custom Elements**: allows authors to define their own custom tags ([spec](https://w3c.github.io/webcomponents/spec/custom/)). 10 **HTML Imports**: a way to include and reuse HTML documents via other HTML documents ([spec](https://w3c.github.io/webcomponents/spec/imports/)). 12 **Shadow DOM**: provides encapsulation by hiding DOM subtrees under shadow roots ([spec](https://w3c.github.io/webcomponents/spec/shadow/)).
|
/external/chromium-trace/catapult/tracing/third_party/components/webcomponentsjs/ |
README.md | 8 **Custom Elements**: allows authors to define their own custom tags ([spec](https://w3c.github.io/webcomponents/spec/custom/)). 10 **HTML Imports**: a way to include and reuse HTML documents via other HTML documents ([spec](https://w3c.github.io/webcomponents/spec/imports/)). 12 **Shadow DOM**: provides encapsulation by hiding DOM subtrees under shadow roots ([spec](https://w3c.github.io/webcomponents/spec/shadow/)).
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/ |
build_vc.pl | 31 use File::Spec; 62 $h = File::Spec->canonpath($h); 83 $file = File::Spec->canonpath($file); 85 (undef, undef, $f) = File::Spec->splitpath($file); 88 $objfile = File::Spec->catfile('obj', $base.'.o'); 116 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/ |
build_vc.pl | 31 use File::Spec; 62 $h = File::Spec->canonpath($h); 83 $file = File::Spec->canonpath($file); 85 (undef, undef, $f) = File::Spec->splitpath($file); 90 $objfile = File::Spec->catfile('obj', $base.'.o'); 118 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/ |
build_vc.pl | 31 use File::Spec; 62 $h = File::Spec->canonpath($h); 83 $file = File::Spec->canonpath($file); 85 (undef, undef, $f) = File::Spec->splitpath($file); 88 $objfile = File::Spec->catfile('obj', $base.'.o'); 116 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE);
|
/libcore/benchmarks/src/benchmarks/regression/ |
CipherBenchmark.java | 21 import java.security.spec.AlgorithmParameterSpec; 27 import javax.crypto.spec.IvParameterSpec; 96 private AlgorithmParameterSpec spec; field in class:CipherBenchmark 124 spec = new IvParameterSpec(IV); 128 cipherEncrypt.init(Cipher.ENCRYPT_MODE, key, spec); 131 cipherDecrypt.init(Cipher.DECRYPT_MODE, key, spec);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/ |
DSAParameterSpecTest.java | 22 package org.apache.harmony.security.tests.java.security.spec; 25 import java.security.spec.AlgorithmParameterSpec; 26 import java.security.spec.DSAParameterSpec;
|
RSAPrivateKeySpecTest.java | 22 package org.apache.harmony.security.tests.java.security.spec; 25 import java.security.spec.KeySpec; 26 import java.security.spec.RSAPrivateKeySpec;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/ |
ECNamedCurveTable.java | 7 import org.bouncycastle.jce.spec.ECNamedCurveParameterSpec; 15 * return a parameter spec representing the passed in named 19 * @return a parameter spec for the curve, null if it is not available.
|
/external/e2fsprogs/contrib/ |
build-rpm | 12 pkgname=`grep Name: e2fsprogs.spec | awk '{print $2;}'` 13 pkgvers=`grep Version: e2fsprogs.spec | awk '{print $2;}'` 41 -ba $currdir/e2fsprogs.spec
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/ |
CipherPBEThread.java | 20 import java.security.spec.AlgorithmParameterSpec; 25 import javax.crypto.spec.PBEKeySpec; 26 import javax.crypto.spec.PBEParameterSpec;
|
/libcore/luni/src/test/java/tests/security/spec/ |
DSAParameterSpecTest.java | 23 package tests.security.spec; 28 import java.security.spec.AlgorithmParameterSpec; 29 import java.security.spec.DSAParameterSpec;
|
DSAPrivateKeySpecTest.java | 23 package tests.security.spec; 28 import java.security.spec.DSAPrivateKeySpec; 29 import java.security.spec.KeySpec;
|
RSAPrivateKeySpecTest.java | 23 package tests.security.spec; 28 import java.security.spec.KeySpec; 29 import java.security.spec.RSAPrivateKeySpec;
|
/frameworks/base/core/java/android/widget/ |
GridLayout.java | 69 * Each spec defines the set of rows or columns that are to be 665 Spec spec = horizontal ? p.columnSpec : p.rowSpec; local 667 Interval span = spec.span; 689 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 690 int index = leading ? spec.span.min : spec.span.max; 744 final Spec majorSpec = horizontal ? lp.rowSpec : lp.columnSpec; 752 final Spec minorSpec = horizontal ? lp.columnSpec : lp.rowSpec 828 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1015 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1247 Spec spec = horizontal ? params.columnSpec : params.rowSpec; local 1291 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1307 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1660 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1702 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1733 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1789 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 2587 Spec spec = (Spec) that; local 2623 public static Spec spec(int start, int size, Alignment alignment, float weight) { method 2634 public static Spec spec(int start, Alignment alignment, float weight) { method 2647 public static Spec spec(int start, int size, float weight) { method 2657 public static Spec spec(int start, float weight) { method 2668 public static Spec spec(int start, int size, Alignment alignment) { method 2686 public static Spec spec(int start, Alignment alignment) { method 2703 public static Spec spec(int start, int size) { method 2719 public static Spec spec(int start) { method [all...] |
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/ |
GridLayout.java | 68 * Each spec defines the set of rows or columns that are to be 652 Spec spec = horizontal ? p.columnSpec : p.rowSpec; local 654 Interval span = spec.span; 680 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 681 int index = leading ? spec.span.min : spec.span.max; 735 final Spec majorSpec = horizontal ? lp.rowSpec : lp.columnSpec; 743 final Spec minorSpec = horizontal ? lp.columnSpec : lp.rowSpec 807 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 915 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1142 Spec spec = horizontal ? params.columnSpec : params.rowSpec; local 1186 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1202 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1555 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1597 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1628 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1684 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 2481 Spec spec = (Spec) that; local 2517 public static Spec spec(int start, int size, Alignment alignment, float weight) { method 2528 public static Spec spec(int start, Alignment alignment, float weight) { method 2541 public static Spec spec(int start, int size, float weight) { method 2551 public static Spec spec(int start, float weight) { method 2562 public static Spec spec(int start, int size, Alignment alignment) { method 2580 public static Spec spec(int start, Alignment alignment) { method 2597 public static Spec spec(int start, int size) { method 2613 public static Spec spec(int start) { method [all...] |
/art/runtime/interpreter/mterp/arm/ |
op_monitor_exit.S | 6 * instruction spec.
|
/art/runtime/interpreter/mterp/arm64/ |
op_monitor_exit.S | 6 * instruction spec.
|
/art/runtime/interpreter/mterp/mips64/ |
op_monitor_exit.S | 6 * instruction spec.
|
/art/test/064-field-access/ |
info.txt | 10 equivalent, and not merely spec-compliant.
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
LocalEnd.java | 31 * {@code non-null;} register spec representing the local variable ended 44 * @param local {@code non-null;} register spec representing the local 70 * Gets the register spec representing the local variable ended 73 * @return {@code non-null;} the register spec
|