HomeSort by relevance Sort by last modified time
    Searched defs:je (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveInterval.cpp 90 const_iterator je = other.end(); local
102 j = std::upper_bound(j, je, i->start);
109 if (j == je) return false;
114 std::swap(ie, je);
  /external/turbine/javatests/com/google/turbine/main/
MainTest.java 125 JarEntry je = entries.nextElement(); local
126 data.put(je.getName(), ByteStreams.toByteArray(jf.getInputStream(je)));
  /external/turbine/javatests/com/google/turbine/zip/
ZipTest.java 92 JarEntry je = new JarEntry(name); local
93 je.setMethod(JarEntry.STORED);
94 je.setSize(bytes.length);
95 je.setCrc(Hashing.crc32().hashBytes(bytes).padToLong());
96 jos.putNextEntry(je);
113 JarEntry je = entries.nextElement(); local
115 je.getName(),
117 .hashBytes(ByteStreams.toByteArray(jf.getInputStream(je)))
  /libcore/ojluni/src/main/java/javax/crypto/
JarVerifier.java 105 JarEntry je = jf.getJarEntry("cryptoPerms"); local
106 if (je == null) {
112 appPerms.load(jf.getInputStream(je));
JceSecurity.java 369 JarEntry je = entries.nextElement(); local
372 if (je.getName().startsWith("default_")) {
373 is = jf.getInputStream(je);
375 } else if (je.getName().startsWith("exempt_")) {
376 is = jf.getInputStream(je);
390 JarVerifier.verifyPolicySigned(je.getCertificates());
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
JarTestFinder.java 50 JarEntry je = e.nextElement(); local
51 if (je.isDirectory() || !je.getName().endsWith(".class")
52 || je.getName().contains("$")) {
55 String className = getClassName(je.getName());
TestCaseReport.java 306 JarEntry je = e.nextElement(); local
307 if (je.isDirectory()
308 || !je.getName().endsWith(".class")
309 || je.getName().contains("$")
310 || je.getName().contains("junit/")) {
313 String className = getClassName(je.getName());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 61 int je[se] = {-1}; local
62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je));
63 assert(base(r) == je + 3);
64 assert(je[0] == 0);
65 assert(je[1] == 1);
66 assert(je[2] == 0);
unique_copy_pred.pass.cpp 80 int je[se] = {-1}; local
82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal());
83 assert(base(r) == je + 3);
84 assert(je[0] == 0);
85 assert(je[1] == 1);
86 assert(je[2] == 0);
  /external/turbine/javatests/com/google/turbine/deps/
AbstractTransitiveTest.java 87 JarEntry je = entries.nextElement(); local
88 jarEntries.put(je.getName(), ByteStreams.toByteArray(jf.getInputStream(je)));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
JarInputStreamTest.java 62 JarEntry je = jis.getNextJarEntry(); local
63 while (je != null) {
64 if (je.getName().equals(A_CLASS)) {
67 je = jis.getNextJarEntry();
99 JarEntry je = jis.getNextJarEntry(); local
100 while (je != null) {
101 actual.add(je.toString());
102 je = jis.getNextJarEntry();
148 JarEntry je = jis.getNextJarEntry(); local
149 while (je != null)
418 JarEntry je = jis.getNextJarEntry(); local
    [all...]
JarFileTest.java 327 JarEntry je = enumeration.nextElement(); local
328 jarFile.getEntry(je.getName());
333 JarEntry je = enumeration.nextElement(); local
336 jarFile.getEntry(je.getName());
364 JarEntry je = enumeration.nextElement(); local
365 jarFile.getJarEntry(je.getName());
370 JarEntry je = enumeration.nextElement(); local
373 jarFile.getJarEntry(je.getName());
    [all...]
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 76 int je[se] = {-1}; local
77 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je));
78 assert(base(r) == je + 3);
79 assert(je[0] == 0);
80 assert(je[1] == 1);
81 assert(je[2] == 0);
unique_copy_pred.pass.cpp 96 int je[se] = {-1}; local
98 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal());
99 assert(base(r) == je + 3);
100 assert(je[0] == 0);
101 assert(je[1] == 1);
102 assert(je[2] == 0);
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 356 const_iterator je = other.end(); local
368 j = std::upper_bound(j, je, i->start);
375 if (j == je) return false;
380 std::swap(ie, je);
403 const_iterator JE = Other.end();
404 if (J == JE)
422 std::swap(IE, JE);
426 if (++J == JE)
    [all...]
  /external/turbine/java/com/google/turbine/main/
Main.java 146 JarEntry je = new JarEntry(name); local
147 je.setTime(0L); // normalize timestamps to the DOS epoch
148 je.setMethod(ZipEntry.STORED);
149 je.setSize(bytes.length);
150 je.setCrc(Hashing.crc32().hashBytes(bytes).padToLong());
151 jos.putNextEntry(je);
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldJarEntryTest.java 129 JarEntry je = jarFile.getJarEntry(entryName); local
130 assertNotNull("Jar entry is null", je);
131 jarEntry = new JarEntry(je);
  /libcore/luni/src/test/java/libcore/java/net/
OldJarURLConnectionTest.java 80 JarEntry je = juc.getJarEntry(); local
82 InputStream is = jf.getInputStream(je);
83 is.skip(je.getSize());
  /external/javassist/src/main/javassist/
ClassPoolTail.java 142 JarEntry je = jarfile.getJarEntry(jarname); local
143 if (je != null)
144 return jarfile.getInputStream(je);
155 JarEntry je = jarfile.getJarEntry(jarname); local
156 if (je != null)
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStressTest.java 40 JarEntry je = jarFile.getJarEntry("AndroidManifest.xml"); local
46 InputStream is = jarFile.getInputStream(je);
50 Certificate[] certs = je != null ? je.getCertificates() : null;
  /libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
URLJarFile.java 257 private JarEntry je; field in class:URLJarFile.URLJarFileEntry
259 URLJarFileEntry(JarEntry je) {
260 super(je);
261 this.je=je;
277 Certificate[] certs = je.getCertificates();
282 CodeSigner[] csg = je.getCodeSigners();
  /libcore/ojluni/src/main/java/java/util/jar/
JarVerifier.java 112 public void beginEntry(JarEntry je, ManifestEntryVerifier mev)
115 if (je == null)
119 debug.println("beginEntry "+je.getName());
122 String name = je.getName();
139 if (je.isDirectory()) {
140 mev.setEntry(null, je);
153 mev.setEntry(null, je);
167 if (je.isDirectory()) {
168 mev.setEntry(null, je);
186 mev.setEntry(name, je);
240 JarEntry je = mev.getEntry(); local
793 JarEntry je = entry; local
    [all...]
  /external/fio/
eta.c 354 bool calc_thread_status(struct jobs_eta *je, int force)
387 je->elapsed_sec = (mtime_since_genesis() + 999) / 1000;
396 je->is_pow2 = 1;
397 je->unit_base = td->o.unit_base;
404 je->nr_running++;
406 je->t_rate[0] += td->o.rate[DDIR_READ];
407 je->t_iops[0] += td->o.rate_iops[DDIR_READ];
408 je->m_rate[0] += td->o.ratemin[DDIR_READ];
409 je->m_iops[0] += td->o.rate_iops_min[DDIR_READ];
412 je->t_rate[1] += td->o.rate[DDIR_WRITE]
626 struct jobs_eta *je; local
648 struct jobs_eta *je; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
WinCOFFObjectWriter.cpp 841 MCAssembler::const_iterator j, je; local
848 j = Asm.begin(), je = Asm.end();
849 (i != ie) && (j != je); ++i, ++j) {
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 998 MCAssembler::iterator j, je; local
    [all...]

Completed in 525 milliseconds

1 2 3 4 5