HomeSort by relevance Sort by last modified time
    Searched refs:gn (Results 1 - 25 of 49) sorted by null

1 2

  /system/bt/build/
install_deps.sh 4 +/master/linux64/gn.sha1?format=TEXT"
51 gn_path=`which gn`
54 wget -O gn http://storage.googleapis.com/chromium-gn/$gnsha1
55 chmod a+x ./gn
56 sudo mv ./gn /usr/bin/
  /external/skia/bin/
coverage 34 bin/fetch-gn
38 gn gen --args="$ARGS" "$BUILD"
  /libcore/ojluni/src/main/java/sun/security/x509/
GeneralNames.java 120 for (GeneralName gn : names) {
121 gn.encode(temp);
NameConstraintsExtension.java 502 GeneralName gn = gs.getName(); local
503 if (gn == null)
505 GeneralNameInterface exName = gn.getName();
532 GeneralName gn = gs.getName(); local
533 if (gn == null)
535 GeneralNameInterface perName = gn.getName();
GeneralSubtrees.java 179 GeneralName gn = gs.getName(); local
180 GeneralNameInterface gni = gn.getName();
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
AttributeCertificateIssuer.java 71 GeneralName gn = names[i]; local
73 if (gn.getTagNo() == GeneralName.directoryName)
75 if (X500Name.getInstance(gn.getName()).equals(subject))
AttributeCertificateHolder.java 200 GeneralName gn = names[i]; local
202 if (gn.getTagNo() == GeneralName.directoryName)
204 if (X500Name.getInstance(gn.getName()).equals(subject))
  /external/skia/infra/bots/recipe_modules/flavor/
gn_chromecast_flavor.py 12 """GN Chromecast flavor utils, used for building Skia for Chromecast with GN"""
87 gn = 'gn.exe' if 'Win' in os else 'gn'
89 gn = self.m.vars.skia_dir.join('bin', gn)
91 self._py('fetch-gn', self.m.vars.skia_dir.join('bin', 'fetch-gn'))
92 self._run('gn gen', gn, 'gen', self.out_dir, '--args=' + gn_args
    [all...]
gn_android_flavor.py 11 """GN Android flavor utils, used for building Skia for Android with GN."""
77 gn = 'gn.exe' if 'Win' in os else 'gn'
79 gn = self.m.vars.skia_dir.join('bin', gn)
81 self._py('fetch-gn', self.m.vars.skia_dir.join('bin', 'fetch-gn'))
82 self._run('gn gen', gn, 'gen', self.out_dir, '--args=' + gn_args
    [all...]
gn_chromebook_flavor.py 15 GN Chromebook flavor utils, used for building and testing Skia for ARM
16 Chromebooks with GN
134 gn = 'gn.exe' if 'Win' in os else 'gn'
136 gn = self.m.vars.skia_dir.join('bin', gn)
140 self._py('fetch-gn', self.m.vars.skia_dir.join('bin', 'fetch-gn'))
141 self._run('gn gen', [gn, 'gen', self.out_dir, '--args=' + gn_args]
    [all...]
gn_flavor.py 7 """GN flavor utils, used for building Skia with GN."""
26 """Build Skia with GN."""
126 gn = 'gn.exe' if 'Win' in os else 'gn'
128 gn = self.m.vars.skia_dir.join('bin', gn)
131 self._py('fetch-gn', self.m.vars.skia_dir.join('bin', 'fetch-gn'))
    [all...]
  /external/skia/tools/
build_command_buffer.py 33 help='Type of name of the gn output directory (e.g. Debug or Release). '
35 'script will reset the gn args in this directory on each run.')
36 parser.add_argument('--extra-gn-args', default='',
37 help=('Extra GN arguments to use for the output directory used to build'
124 gn = 'gn'
130 gn = 'gn.exe'
131 gn = os.path.join(chrome_src_dir, 'buildtools', platform, gn)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
AttributeCertificateIssuer.java 116 GeneralName gn = names[i]; local
118 if (gn.getTagNo() == GeneralName.directoryName)
122 if (new X500Principal(((ASN1Encodable)gn.getName()).toASN1Primitive().getEncoded()).equals(subject))
AttributeCertificateHolder.java 213 GeneralName gn = names[i]; local
215 if (gn.getTagNo() == GeneralName.directoryName)
219 if (new X509Principal(((ASN1Encodable)gn.getName()).toASN1Primitive()
  /external/ltp/testcases/network/multicast/mc_member/
mc_member 93 netstat -gn | grep $agroup
104 netstat -gn | grep $agroup
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorContractionThreadPool.h 157 // - task grain sizes (number of kernels executed per task: gm, gn)
254 Index gn = 1; local
257 gm = coarsenM(m, n, bm, bn, bk, gn, num_threads, shard_by_col);
258 gn = coarsenN(m, n, bm, bn, bk, gm, num_threads, shard_by_col);
260 gn = coarsenN(m, n, bm, bn, bk, gm, num_threads, shard_by_col);
261 gm = coarsenM(m, n, bm, bn, bk, gn, num_threads, shard_by_col);
265 Index nn = divup(nn0, gn);
293 k, bm, bn, bk, nm, nn, nk, gm, gn, nm0, nn0,
306 Index gn, Index nm0, Index nn0, bool shard_by_col,
326 gn_(gn),
621 Index gn(Index n) const { return n + 1 < nn_ ? gn_ : nn0_ + gn_ - gn_ * nn_; } function in class:Eigen::TensorEvaluator::Context
681 Index gn = 1; local
    [all...]
  /external/skia/fuzz/
coverage 35 bin/fetch-gn
41 gn gen --args="$ARGS" "$BUILD"
  /external/v8/tools/
gyp_flag_compare.py 8 """Given the output of -t commands from a ninja build for a gyp and GN generated
124 # paths are unsupported by gn. But gn allows to use system-absolute paths
159 def CompareLists(gyp, gn, name, dont_care_gyp=None, dont_care_gn=None):
160 """Return a report of any differences between gyp and gn lists, ignoring
161 anything in |dont_care_{gyp|gn}| respectively."""
168 if gyp[name] != gn[name]:
170 gn_set = set(gn[name])
178 output += ' In gyp, but not in GN:\n %s' % '\n '.join(
182 output += ' In GN, but not in gyp:\n %s' % '\n '.join
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
softfloat64.go 197 gs, gm, ge, gi, gn := funpack64(g)
201 case fn || gn: // NaN + x or x + NaN = NaN
260 gs, gm, ge, gi, gn := funpack64(g)
264 case fn || gn: // NaN * g or f * NaN = NaN
290 gs, gm, ge, gi, gn := funpack64(g)
294 case fn || gn: // NaN / g = f / NaN = NaN
309 _, _, _, _ = fi, fn, gi, gn
345 gs, gm, _, gi, gn := funpack64(g)
348 case fn, gn: // flag NaN
  /prebuilts/go/linux-x86/src/runtime/
softfloat64.go 197 gs, gm, ge, gi, gn := funpack64(g)
201 case fn || gn: // NaN + x or x + NaN = NaN
260 gs, gm, ge, gi, gn := funpack64(g)
264 case fn || gn: // NaN * g or f * NaN = NaN
290 gs, gm, ge, gi, gn := funpack64(g)
294 case fn || gn: // NaN / g = f / NaN = NaN
309 _, _, _, _ = fi, fn, gi, gn
345 gs, gm, _, gi, gn := funpack64(g)
348 case fn, gn: // flag NaN
  /external/skia/infra/bots/recipes/
recreate_skps.py 67 # Call GN.
69 gn = src_dir.join('buildtools', platform, 'gn')
73 api.run(api.step, 'GN', cmd=[gn, 'gen', out_dir])
  /external/skia/platform_tools/android/bin/
android_gdbserver 19 GN_TARGET_CPU=$(grep target_cpu ${SKIA_OUT}/args.gn)
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
URICertStore.java 215 GeneralNameInterface gn = ad.getAccessLocation().getName(); local
216 if (!(gn instanceof URIName)) {
219 URI uri = ((URIName) gn).getURI();
  /external/skia/gn/
gn_helpers.py 5 """Helper functions useful when writing scripts that integrate with GN.
8 serialized GN veriables and Python variables.
27 """Returns a stringified GN equivalent of the Python value.
30 to GN scopes. This is only possible at the top level, you can't nest a
31 GN scope in a list, so this should be set to False for recursive calls."""
63 raise GNException("Unsupported type when printing to GN.")
67 """Converts the input string from a GN serialized value to Python values.
71 If your GN script did:
79 You can parse this into a Python list using GN rules with:
82 will not handle GN escaping properly, nor GN booleans. You should use thi
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java     [all...]

Completed in 1307 milliseconds

1 2