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

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
timesunder.asm 0 je label
1 je label label
opt-align1.asm 0 je label1
3 je label1 label
6 je label2 label
1 je label1 label
opt-align2.asm 0 je label1
2 je label1 label
7 je label2 label
1 je label1 label
opt-immexpand.asm 2 je label3 label
5 je label4 label
opt-immnoexpand.asm 3 je label3 label
6 je label4 label
opt-align3.asm 0 je label1a
2 je label1b label
3 je label1c label
7 je label2 label
1 je label1a label
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
equlocal.asm 7 je .local label
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
win64-dataref2.asm 12 je bar label
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 104 const_iterator je = other.end(); local
116 j = std::upper_bound(j, je, i->start);
123 if (j == je) return false;
128 std::swap(ie, je);
152 const_iterator JE = Other.end();
153 if (J == JE)
171 std::swap(IE, JE);
175 if (++J == JE)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarInputStreamTest.java 64 JarEntry je = jis.getNextJarEntry(); local
65 while (je != null) {
66 if (je.getName().equals(entryName)) {
69 je = jis.getNextJarEntry();
101 JarEntry je = jis.getNextJarEntry(); local
102 while (je != null) {
103 actual.add(je.toString());
104 je = jis.getNextJarEntry();
156 JarEntry je = jis.getNextJarEntry(); local
157 while (je != null)
    [all...]
JarFileTest.java 153 JarEntry je = enumeration.nextElement(); local
154 jarFile.getEntry(je.getName());
159 JarEntry je = enumeration.nextElement(); local
162 jarFile.getEntry(je.getName());
186 JarEntry je = enumeration.nextElement(); local
187 jarFile.getJarEntry(je.getName());
192 JarEntry je = enumeration.nextElement(); local
195 jarFile.getJarEntry(je.getName());
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/gas/
win32at.asm 50 je L2594 label
52 je L2593 label
  /external/chromium_org/tools/traceline/traceline/
stubs.asm 89 je NEAR blah2 label
  /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/main/java/java/util/jar/
JarFile.java 251 JarEntry je = new JarEntry(ze.nextElement()); local
252 je.parentJar = jf;
253 return je;
417 JarEntry je = new JarEntry(ze); local
418 je.parentJar = this;
419 return je;
  /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/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 300 JarEntry je = enumeration.nextElement(); local
301 jarFile.getEntry(je.getName());
306 JarEntry je = enumeration.nextElement(); local
309 jarFile.getEntry(je.getName());
337 JarEntry je = enumeration.nextElement(); local
338 jarFile.getJarEntry(je.getName());
343 JarEntry je = enumeration.nextElement(); local
346 jarFile.getJarEntry(je.getName());
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 861 MCAssembler::const_iterator j, je; local
872 j = Asm.begin(), je = Asm.end();
873 (i != ie) && (j != je); ++i, ++j) {
  /libcore/luni/src/main/java/java/net/
URLClassLoader.java 250 final JarEntry je = jf.getJarEntry("META-INF/INDEX.LIST"); local
251 this.index = (je == null ? null : IndexFile.readIndexFile(jf, je, url));
    [all...]
  /build/tools/signapk/
SignApk.java 306 JarEntry je = new JarEntry(OTACERT_NAME); local
307 je.setTime(timestamp);
308 outputJar.putNextEntry(je);
675 JarEntry je = new JarEntry(JarFile.MANIFEST_NAME); local
676 je.setTime(timestamp);
677 outputJar.putNextEntry(je);
683 je = new JarEntry(numKeys == 1 ? CERT_SF_NAME :
685 je.setTime(timestamp);
686 outputJar.putNextEntry(je);
693 je = new JarEntry(numKeys == 1 ? CERT_RSA_NAME
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigurationTab.java 968 IJavaElement je = JavaCore.create((IResource) obj); local
    [all...]

Completed in 329 milliseconds

1 2