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

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
jmp64-1.asm 4 jc l3 label
jmp64-2.asm 4 jc short l3 label
jmp64-3.asm 4 jc short l3 label
jmp64-4.asm 4 jc l3 label
jmp64-5.asm 4 jc l3 label
jmp64-6.asm 5 jc short l3 label
genopcode.asm 154 jc short label label
155 jc label label
  /external/javassist/src/main/javassist/expr/
MethodCall.java 203 Javac jc = new Javac(thisClass); local
210 jc.recordParams(classname, params,
212 int retVar = jc.recordReturnType(retType, true);
214 jc.recordStaticProceed(classname, methodname);
216 jc.recordSpecialProceed(Javac.param0Name, classname,
219 jc.recordProceed(Javac.param0Name, methodname);
225 Bytecode bytecode = jc.getBytecode();
227 jc.recordLocalVariables(ca, pos);
234 jc.compileStmnt(statement);
Cast.java 95 Javac jc = new Javac(thisClass); local
105 jc.recordParams(javaLangObject, params, true, paramVar,
107 int retVar = jc.recordReturnType(retType, true);
108 jc.recordProceed(new ProceedForCast(index, retType));
114 Bytecode bytecode = jc.getBytecode();
116 jc.recordLocalVariables(ca, pos);
121 jc.compileStmnt(statement);
Instanceof.java 98 Javac jc = new Javac(thisClass); local
108 jc.recordParams(javaLangObject, params, true, paramVar,
110 int retVar = jc.recordReturnType(retType, true);
111 jc.recordProceed(new ProceedForInstanceof(index));
114 jc.recordType(getType());
120 Bytecode bytecode = jc.getBytecode();
122 jc.recordLocalVariables(ca, pos);
127 jc.compileStmnt(statement);
NewArray.java 208 Javac jc = new Javac(thisClass); local
216 jc.recordParams(javaLangObject, params,
222 int retVar = jc.recordReturnType(retType, true);
223 jc.recordProceed(new ProceedForArray(retType, opcode, index, dim));
225 Bytecode bytecode = jc.getBytecode();
227 jc.recordLocalVariables(ca, pos);
232 jc.compileStmnt(statement);
NewExpr.java 182 Javac jc = new Javac(thisClass); local
189 jc.recordParams(newTypeName, params,
191 int retVar = jc.recordReturnType(newType, true);
192 jc.recordProceed(new ProceedForNew(newType, newIndex,
199 Bytecode bytecode = jc.getBytecode();
201 jc.recordLocalVariables(ca, pos);
206 jc.compileStmnt(statement);
FieldAccess.java 155 Javac jc = new Javac(thisClass); local
175 jc.recordParams(constPool.getFieldrefClassName(index), params,
184 int retVar = jc.recordReturnType(retType, included);
186 jc.recordProceed(new ProceedForRead(retType, opcode,
190 jc.recordType(fieldType);
191 jc.recordProceed(new ProceedForWrite(params[0], opcode,
195 Bytecode bytecode = jc.getBytecode();
197 jc.recordLocalVariables(ca, pos);
209 jc.compileStmnt(statement);
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
reverse_copy.pass.cpp 44 int jc[sc] = {-1}; local
45 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
46 assert(base(r) == jc+sc);
47 assert(jc[0] == 2);
48 assert(jc[1] == 1);
49 assert(jc[2] == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
reverse_copy.pass.cpp 44 int jc[sc] = {-1}; local
45 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
46 assert(base(r) == jc+sc);
47 assert(jc[0] == 2);
48 assert(jc[1] == 1);
49 assert(jc[2] == 0);
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 46 int jc[sc] = {-1}; local
47 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
48 assert(base(r) == jc + 1);
49 assert(jc[0] == 0);
unique_copy_pred.pass.cpp 61 int jc[sc] = {-1}; local
63 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc), count_equal());
64 assert(base(r) == jc + 1);
65 assert(jc[0] == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 46 int jc[sc] = {-1}; local
47 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
48 assert(base(r) == jc + 1);
49 assert(jc[0] == 0);
unique_copy_pred.pass.cpp 61 int jc[sc] = {-1}; local
63 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc), count_equal());
64 assert(base(r) == jc + 1);
65 assert(jc[0] == 0);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadUtils.java 34 public static boolean requestDownload(JobContext jc, URL url, File file) {
38 return download(jc, url, fos);
46 public static void dump(JobContext jc, InputStream is, OutputStream os)
51 jc.setCancelListener(new CancelListener() {
58 if (jc.isCancelled()) throw new InterruptedIOException();
62 jc.setCancelListener(null);
66 public static boolean download(JobContext jc, URL url, OutputStream output) {
70 dump(jc, input, output);
DecodeUtils.java 61 public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) {
63 jc.setCancelListener(new DecodeCanceller(options));
69 public static void decodeBounds(JobContext jc, FileDescriptor fd,
73 jc.setCancelListener(new DecodeCanceller(options));
78 public static Bitmap decode(JobContext jc, byte[] bytes, Options options) {
79 return decode(jc, bytes, 0, bytes.length, options);
82 public static Bitmap decode(JobContext jc, byte[] bytes, int offset,
85 jc.setCancelListener(new DecodeCanceller(options));
91 public static void decodeBounds(JobContext jc, byte[] bytes, int offset,
95 jc.setCancelListener(new DecodeCanceller(options))
    [all...]
  /external/javassist/src/main/javassist/tools/reflect/
Metaobject.java 159 Class jc = getClassMetaobject().getJavaClass(); local
161 return jc.getField(name).get(getObject());
179 Class jc = getClassMetaobject().getJavaClass(); local
181 jc.getField(name).set(getObject(), value);
ClassMetaobject.java 164 Class jc = getJavaClass(); local
166 return jc.getField(name).get(null);
184 Class jc = getJavaClass(); local
186 jc.getField(name).set(null, value);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
fft.c 276 int j, jc, jf, jj, k, k1, k2, k3, k4, kk, kt, nn, ns, nt; local
362 jc = ns / (int)nPass;
363 radf = pi2 * (double) jc;
450 } while (kk < jc);
477 kk += jc;
480 kk = (k1 - kspan + 1) / 2 + jc - 1;
481 } while (kk < (jc + jc));
548 kk = kk - nt + jc;
551 } while (kk < jc);
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
fft.c 276 int j, jc, jf, jj, k, k1, k2, k3, k4, kk, kt, nn, ns, nt; local
366 jc = ns / (int)nPass;
367 radf = pi2 * (double) jc;
454 } while (kk < jc);
481 kk += jc;
484 kk = (k1 - kspan + 1) / 2 + jc - 1;
485 } while (kk < (jc + jc));
552 kk = kk - nt + jc;
555 } while (kk < jc);
    [all...]

Completed in 675 milliseconds

1 2