/external/r8/src/test/java/com/android/tools/r8/ |
RunExamplesAndroidOTest.java | 118 Path out = temp.getRoot().toPath().resolve(testName + ZIP_EXTENSION); local 120 build(inputFile, out); 132 DexInspector inspector = new DexInspector(out); 138 String output = ToolHelper.runArtNoVerificationErrors(out.toString(), qualifiedMainClass); 154 abstract void build(Path inputFile, Path out) throws Throwable;
|
/external/r8/src/test/java/com/android/tools/r8/memberrebinding/ |
MemberRebindingTest.java | 84 String out = temp.getRoot().getCanonicalPath(); local 90 .setOutputPath(Paths.get(out)) 333 String out = temp.getRoot().getCanonicalPath(); local 334 Path processed = Paths.get(out, "classes.dex");
|
/external/r8/src/test/java/com/android/tools/r8/optimize/ |
R8DebugStrippingTest.java | 104 Path out = temp.getRoot().toPath(); local 109 .setOutputPath(out) 133 ToolHelper.runArtNoVerificationErrors(out + "/classes.dex", EXAMPLE_CLASS); 138 DexInspector inspector = new DexInspector(out.resolve("classes.dex"));
|
/external/robolectric/v1/src/main/java/android/net/ |
Uri__FromAndroid.java | 641 * Parses an authority out of the given URI string. 678 * Parses a path out of this given URI string. 1032 // Parse out user info and then port. 1803 ByteArrayOutputStream out = null; local [all...] |
/external/selinux/mcstrans/src/ |
mcstransd.c | 144 char *out = NULL; local 162 result = trans_context(data1, &out); 163 ret = send_response(fd, function, out, result); 166 result = untrans_context(data1, &out); 167 ret = send_response(fd, function, out, result); 170 result = raw_color(data1, &out); 171 ret = send_response(fd, function, out, result); 186 free(out);
|
/external/selinux/policycoreutils/setfiles/ |
setfiles.c | 145 FILE *out; local 149 out = stdout; 151 out = stderr; 153 fprintf(out, "%s: ", r_opts.progname); 156 rc = vfprintf(out, fmt, ap); 187 fprintf(stderr, "%s: Out of memory!\n", argv[0]);
|
/external/skia/src/pdf/ |
SkPDFMetadata.cpp | 206 char* out = output.writable_str(); local 208 strncpy(out, before, beforeLen); 209 out += beforeLen; 215 strncpy(out, kAmp, strlen(kAmp)); 216 out += strlen(kAmp); 218 strncpy(out, kLt, strlen(kLt)); 219 out += strlen(kLt); 221 *out++ = input[i]; 225 strncpy(out, after, afterLen); 226 out += afterLen [all...] |
/external/skia/tools/gpu/ |
GrTest.cpp | 104 void GrContext::dumpCacheStats(SkString* out) const { 106 fResourceCache->dumpStats(out); 118 SkString out; local 119 this->dumpCacheStats(&out); 120 SkDebugf("%s", out.c_str()); 123 void GrContext::dumpGpuStats(SkString* out) const { 125 return fGpu->stats()->dump(out); 137 SkString out; local 138 this->dumpGpuStats(&out); 139 SkDebugf("%s", out.c_str()) [all...] |
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/ |
InterpreterInstaller.java | 244 String out = mInterpreterRoot; local 245 return new UrlDownloaderTask(in, out, mContext); 260 protected AsyncTask<Void, Integer, Long> extract(String in, String out, boolean replaceAll) 262 return new ZipExtractorTask(in, out, mContext, replaceAll); 268 String out = InterpreterUtils.getInterpreterRoot(mContext).getAbsolutePath(); local 269 return extract(in, out, true); 274 String out = mInterpreterRoot + InterpreterConstants.INTERPRETER_EXTRAS_ROOT; local 275 return extract(in, out, true); 280 String out = InterpreterConstants.SCRIPTS_ROOT; local 281 return extract(in, out, false) [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
HeaderItem.java | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 164 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) { 165 int startOffset = out.getCursor(); 173 out.annotate(8, "magic: %s", StringUtils.escapeString(magicBuilder.toString())); 174 out.annotate(4, "checksum"); 175 out.annotate(20, "signature"); 176 out.annotate(4, "file_size: %d", dexFile.readInt(out.getCursor())); 178 headerSize = dexFile.readInt(out.getCursor()); 179 out.annotate(4, "header_size: %d", headerSize) [all...] |
/external/smali/smali/src/main/java/org/jf/smali/ |
Smali.java | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 168 System.out.println(smaliParser.tokenNames[token.getType()] + ": " + token.getText()); 171 System.out.flush(); 191 System.out.println(t.toStringTree());
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/ |
UnicodeEscaper.java | 275 * @param out 277 * @return an {@code Appendable} which passes text to {@code out} after 280 * if {@code out} is null 285 public Appendable escape(final Appendable out) { 286 assert out != null; 328 out.append((char) pendingHighSurrogate); 337 out.append(csq, unescapedChunkStart, index); 386 out.append((char) pendingHighSurrogate); 387 out.append(c); 403 out.append(c) [all...] |
/external/swiftshader/src/Reactor/ |
SubzeroReactor.cpp | 61 Ice::Fdstream *out = nullptr; member in namespace:__anon32239 226 assert(index < symtab_entries && "Symbol Index out of range"); 310 assert(index < symtab_entries && "Symbol Index out of range"); 542 if(false) // Write out to a file 545 ::out = new Ice::Fdstream("out.o", errorCode, llvm::sys::fs::F_None); 546 ::elfFile = new Ice::ELFFileStreamer(*out); 566 delete ::out; [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/ |
ARMAsmBackend.cpp | 223 assert ((Value < 4096) && "Out of range pc-relative fixup value!"); 247 "Out of range pc-relative fixup value!"); 260 uint32_t out = (opc << 21); local 261 out |= (Value & 0x800) << 15; 262 out |= (Value & 0x700) << 4; 263 out |= (Value & 0x0FF); 265 uint64_t swapped = (out & 0xFFFF0000) >> 16; 266 swapped |= (out & 0x0000FFFF) << 16; 279 uint32_t out = 0; local 286 out |= I << 26; // S bi 300 uint64_t out = 0; local [all...] |
/external/swiftshader/third_party/PowerVR_SDK/Shell/OS/Windows/ |
PVRShellOS.cpp | 163 unsigned int out, in;
local 172 for(out = 0; (appName[out] = pszName[out]) != 0; ++out);
173 for(in = 0; (appName[out] = pszSeparator[in]) != 0; ++in, ++out);
174 for(in = 0; (appName[out] = pszVersion[in]) != 0; ++in, ++out);
175 _ASSERT(out == len-1); [all...] |
/external/syslinux/com32/lib/zlib/ |
inflate.c | 48 * - Pull out common wnext == 0 case for speed in inflate_fast() 75 * for the in() and out() functions 96 local int updatewindow OF((z_streamp strm, unsigned out)); 287 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also 302 a.out > inffixed.h 358 local int updatewindow(strm, out) 360 unsigned out; 383 copy = out - strm->avail_out; 599 unsigned in, out; /* save starting available input and output */ local 620 out = left [all...] |
/external/syslinux/efi/ |
console.c | 20 SIMPLE_TEXT_OUTPUT_INTERFACE *out = ST->ConOut; local 21 SIMPLE_TEXT_OUTPUT_MODE *mode = out->Mode; 29 SIMPLE_TEXT_OUTPUT_INTERFACE *out = ST->ConOut; local 31 uefi_call_wrapper(out->SetAttribute, 2, out, console_default_attribute); 32 uefi_call_wrapper(out->EnableCursor, 2, out, console_default_cursor); 107 goto out; 137 goto out; 210 out [all...] |
/external/syslinux/gpxe/src/drivers/net/rtl818x/ |
rtl8185_rtl8225.c | 98 u16 reg80, reg82, reg84, out; local 158 out = 0; 178 out |= 1 << i; 195 return out;
|
/external/syslinux/lzo/ |
prepcore.c | 60 lzo_bytep out, lzo_uintp out_len, 72 lzo_bytep out, lzo_uintp out_len, 158 error("out of memory"); 178 lzo_bytep out; local 236 out = xzalloc(out_bufsize); 257 * Step 6a: compress from `in' to `out' with LZO1X-999 261 r = lzo1x_999_compress_internal(in, in_len, out, &out_len, wrkmem, 287 r = lzo1x_999_compress_internal(in, in_len, out, &out_len, wrkmem, 294 * Step 9: optimize compressed data (compressed data is in `out' buffer) 304 r = lzo1x_optimize(out, out_len, in, &orig_len, NULL) [all...] |
/external/testng/src/main/java/org/testng/reporters/ |
JUnitReportReporter.java | 177 // System.out.println(xsb.toXML()); 178 // System.out.println(""); 234 // out if it's this failure that caused the skip since (maybe by 255 private void addResults(Set<ITestResult> allResults, Map<Class<?>, Set<ITestResult>> out) { 258 Set<ITestResult> l = out.get(cls); 261 out.put(cls, l);
|
/external/toybox/kconfig/ |
confdata.c | 399 FILE *out; local 436 out = fopen(tmpname, "w"); 439 out = fopen(newname, "w"); 441 if (!out) 451 fprintf(out, _("#\n" 463 // Write out all symbols (even in closed sub-menus). 469 // Don't write out symbols in closed menus. 481 fprintf(out, "\n" 501 fprintf(out, "# "CONFIG_PREFIX"%s is not set\n", sym->name); 504 fprintf(out, CONFIG_PREFIX"%s=m\n", sym->name) 693 FILE *out, *out_h; local [all...] |
/external/toybox/toys/other/ |
vmstat.c | 20 cached, kilobytes swapped in and out per second, file disk blocks input and 43 // a big array, then read the elements back out by name 54 // We use vmstuff to fill out vmstat_proc as an array of uint64_t: 138 uint64_t out = ptr[order[i]]; local 142 if (i>5) out -= oldptr[order[i]]; 143 if (order[i]<7) out = ((out*100) + (total_hz/2)) / total_hz; 144 else if (order[i]>17) out = ((out * page_kb)+(units-1))/units; 145 else if (order[i]>15) out = ((out)+(units-1))/units [all...] |
/external/toybox/toys/pending/ |
mke2fs.c | 121 // Fill out index blocks in inode. 233 // Fill out superblock and TT structures. 245 // Fill out blocks_count, r_blocks_count, first_data_block 268 // Fill out the rest of the superblock. 355 int out = len > sizeof(toybuf) ? sizeof(toybuf) : len; local 356 xwrite(TT.fsfd, toybuf, out); 357 len -= out; 362 // Fill out an inode structure from struct stat info in dirtree. 458 // Figure out how much space is used by preset files 462 // Figure out how many total inodes we need [all...] |
/external/tremolo/Tremolo/ |
codebook.c | 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 290 unsigned char *out=(unsigned char *)s->dec_table; local 296 out[top]=(work[i]>>8 & 0x7f)|0x80; 297 out[top+1]=(work[i+1]>>8 & 0x7f)|0x80; 298 out[top+2]=work[i] & 0xff; 299 out[top+3]=work[i+1] & 0xff; 302 out[top]=(work[i]>>8 & 0x7f)|0x80; 303 out[top+1]=work[work[i+1]*2]; 304 out[top+2]=work[i] & 0xff; 309 out[top]=work[work[i]*2] 321 ogg_uint16_t *out=(ogg_uint16_t *)s->dec_table; local [all...] |
/external/webp/src/dsp/ |
alpha_processing.c | 147 uint32_t out = argb & 0xff000000u; local 148 out |= Mult(argb >> 0, scale) << 0; 149 out |= Mult(argb >> 8, scale) << 8; 150 out |= Mult(argb >> 16, scale) << 16; 151 ptr[x] = out;
|