HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 901 - 925 of 5424) sorted by null

<<31323334353637383940>>

  /external/owasp/sanitizer/src/main/org/owasp/html/
PolicyFactory.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
69 /** Produces a sanitizer that emits tokens to {@code out}. */
70 public HtmlSanitizer.Policy apply(@Nonnull HtmlStreamEventReceiver out) {
72 out, policies, textContainers);
76 * Produces a sanitizer that emits tokens to {@code out} and that notifies
78 * @param out a renderer that receives approved tokens only.
87 HtmlStreamEventReceiver out, @Nullable HtmlChangeListener<CTX> listener,
90 return apply(out);
93 out, listener, context);
120 StringBuilder out = new StringBuilder(html.length()) local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftgloadr.c 376 FT_Outline* out = &target->base.outline; local
380 FT_ARRAY_COPY( out->points, in->points,
382 FT_ARRAY_COPY( out->tags, in->tags,
384 FT_ARRAY_COPY( out->contours, in->contours,
396 out->n_points = (short)num_points;
397 out->n_contours = (short)num_contours;
  /external/pdfium/third_party/libpng16/
pngwtran.c 231 unsigned int v, out; local
234 out = 0;
239 out |= v << j;
242 out |= (v >> (-j)) & mask;
245 *bp = (png_byte)(out & 0xff);
260 unsigned int v, out; local
263 out = 0;
268 out |= v << j;
271 out |= v >> (-j);
274 *bp = (png_byte)(out & 0xff)
    [all...]
  /external/pdfium/third_party/zlib_v128/
inffast.c 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out) = 0
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 197 System.out.println();
198 System.out.println("Liveness analysis: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
315 // Print out the liveness of all variables before the instruction.
319 System.out.print((aliveBefore & variableMask) == 0L ? '.' :
324 // Print out the instruction itself.
325 System.out.println(" "+ InstructionFactory.create(codeAttribute.code, offset).toString(offset));
327 // Print out the liveness of all variables after the instruction.
331 System.out.print((aliveAfter & variableMask) == 0L ? '.' :
336 System.out.println();
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
BoundedByteStringTest.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
89 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
90 ObjectOutputStream oos = new ObjectOutputStream(out);
93 byte[] pickled = out.toByteArray();
  /external/protobuf/src/google/protobuf/util/
field_mask_util_test.cc 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
243 FieldMask in, out; local
246 FieldMaskUtil::ToCanonicalForm(in, &out);
247 EXPECT_EQ("bar,baz.quz,foo", FieldMaskUtil::ToString(out));
250 FieldMaskUtil::ToCanonicalForm(in, &out);
251 EXPECT_EQ("bar,foo", FieldMaskUtil::ToString(out));
254 FieldMaskUtil::ToCanonicalForm(in, &out);
255 EXPECT_EQ("bar,foo.b1,foo.b2", FieldMaskUtil::ToString(out));
263 FieldMaskUtil::ToCanonicalForm(in, &out);
264 EXPECT_EQ("foo.bar.baz1,foo.bar.baz2", FieldMaskUtil::ToString(out));
291 FieldMask mask1, mask2, out; local
310 FieldMask mask1, mask2, out; local
    [all...]
  /external/python/cpython2/Modules/zlib/
inffast.c 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out) = 0
    [all...]
  /external/r8/src/test/examples/classmerging/
Test.java 15 System.out.println(new SubClassThatReferencesSuperMethod().referencedMethod());
16 System.out.println(new Outer().getInstance().method());
17 System.out.println(new SubClass(42));
21 System.out.println(iface.method());
25 System.out.println(clazz.method());
26 System.out.println(clazz.otherMethod());
30 System.out.println(iface.method());
31 System.out.println(ClassWithConflictingMethod.conflict(null));
32 System.out.println(OtherClassWithConflictingMethod.conflict(null));
  /external/r8/src/test/java/com/android/tools/r8/
R8EntryPointTests.java 42 Path out = temp.newFolder("outdex").toPath(); local
43 R8.run(getCommand(out));
44 Assert.assertTrue(Files.isRegularFile(out.resolve(FileUtils.DEFAULT_DEX_FILENAME)));
51 Path out = temp.newFolder("outdex").toPath().resolve("dex.zip"); local
52 R8.run(getCommand(out));
53 Assert.assertTrue(Files.isRegularFile(out));
60 Path out = temp.newFolder("outdex").toPath(); local
63 R8.run(getCommand(out), executor);
67 Assert.assertTrue(Files.isRegularFile(out.resolve(FileUtils.DEFAULT_DEX_FILENAME)));
74 Path out = temp.newFolder("outdex").toPath().resolve("dex.zip") local
88 Path out = temp.newFolder("outdex").toPath(); local
103 Path out = temp.newFolder("outdex").toPath().resolve("dex.zip"); local
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/dex/
ExtraFileTest.java 42 Path out = temp.getRoot().toPath(); local
49 .setOutputPath(out)
58 out.resolve("classes.dex").toString(),
59 out.resolve("classes2.dex").toString(),
  /external/r8/src/test/java/com/android/tools/r8/shaking/
TreeShakingSpecificTest.java 43 Path out = temp.getRoot().toPath(); local
51 .setOutputPath(out)
60 Path out = temp.getRoot().toPath(); local
69 .setOutputPath(out)
79 Path out = temp.getRoot().toPath(); local
85 Path printMapping = out.resolve("printmapping.flags");
93 .setOutputPath(out)
96 Path outputmapping = out.resolve("mapping.txt");
  /external/selinux/semodule-utils/semodule_package/
semodule_package.c 46 fprintf(stderr, "%s: Out of memory\n", progname);
97 struct sepol_policy_file *mod, *out; local
216 fprintf(stderr, "%s: Out of memory\n", argv[0]);
240 if (file_to_policy_file(outfile, &out, "w"))
243 if (sepol_module_package_write(pkg, out)) {
255 sepol_policy_file_free(out);
  /external/skia/src/core/
SkMaskGamma.cpp 115 float out = dstConvert.fromLuma(dstGamma, linOut); local
118 float result = (out - dst) / (src - dst);
SkRTree.cpp 56 Node* out = fNodes.push(); local
58 out->fNumChildren = 0;
59 out->fLevel = level;
60 return out;
  /external/skia/tests/
PathOpsSimplifyQuadThreadedTest.cpp 38 SkPath path, out; local
66 testSimplify(path, false, out, state, pathStr.c_str());
71 testSimplify(path, true, out, state, pathStr.c_str());
PathOpsSimplifyQuadralateralsThreadedTest.cpp 38 SkPath path, out; local
68 testSimplify(path, false, out, state, pathStr.c_str());
73 testSimplify(path, true, out, state, pathStr.c_str());
  /external/skia/third_party/libpng/
pngwtran.c 231 unsigned int v, out; local
234 out = 0;
239 out |= v << j;
242 out |= (v >> (-j)) & mask;
245 *bp = (png_byte)(out & 0xff);
260 unsigned int v, out; local
263 out = 0;
268 out |= v << j;
271 out |= v >> (-j);
274 *bp = (png_byte)(out & 0xff)
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
ListFieldOffsetsCommand.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
86 System.out.write(className.getBytes());
89 System.out.write(field.getBytes());
91 System.out.write("\n".getBytes());
93 System.out.close();
  /external/smali/util/src/main/java/org/jf/util/
Utf8Utils.java 95 char out; local
105 out = (char) v0;
127 out = (char) value;
154 out = (char) value;
163 chars[outAt] = out;
203 char out; local
212 out = (char) v0;
230 out = (char) value;
253 out = (char) value;
262 chars[outAt] = out;
    [all...]
  /external/swiftshader/src/Reactor/
Main.cpp 121 Pointer<Byte> out = function.Arg<1>(); local
123 *Pointer<Int4>(out + 16 * 0) = *Pointer<Int4>(in + 16 * 0);
124 *Pointer<Short4>(out + 16 * 1) = *Pointer<Short4>(in + 16 * 1);
125 *Pointer<Byte8>(out + 16 * 2) = *Pointer<Byte8>(in + 16 * 2);
126 *Pointer<Byte4>(out + 16 * 3) = *Pointer<Byte4>(in + 16 * 3);
127 *Pointer<Short2>(out + 16 * 4) = *Pointer<Short2>(in + 16 * 4);
142 int8_t out[16 * 5] = {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, local
149 callable(in, out);
159 EXPECT_EQ(out[i], -1) << "Row " << row << " column " << col << " not left untouched.";
163 EXPECT_EQ(out[i], in[i]) << "Row " << row << " column " << col << " not equal to input."
180 Pointer<Byte> out = function.Arg<0>(); local
194 int8_t out[16 * 4] = {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, local
229 Pointer<Byte> out = function.Arg<0>(); local
244 int8_t out[16 * 5] = {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, local
272 Pointer<Byte> out = function.Arg<0>(); local
302 } out; local
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTVector.cpp 57 PVRTVec3 out; local
59 out.x = VERTTYPEMUL(x,rhs.f[0])+VERTTYPEMUL(y,rhs.f[1])+VERTTYPEMUL(z,rhs.f[2]);
60 out.y = VERTTYPEMUL(x,rhs.f[3])+VERTTYPEMUL(y,rhs.f[4])+VERTTYPEMUL(z,rhs.f[5]);
61 out.z = VERTTYPEMUL(x,rhs.f[6])+VERTTYPEMUL(y,rhs.f[7])+VERTTYPEMUL(z,rhs.f[8]);
63 return out;
95 PVRTVec4 out; local
96 out.x = VERTTYPEMUL(x,rhs.f[0])+VERTTYPEMUL(y,rhs.f[1])+VERTTYPEMUL(z,rhs.f[2])+VERTTYPEMUL(w,rhs.f[3]);
97 out.y = VERTTYPEMUL(x,rhs.f[4])+VERTTYPEMUL(y,rhs.f[5])+VERTTYPEMUL(z,rhs.f[6])+VERTTYPEMUL(w,rhs.f[7]);
98 out.z = VERTTYPEMUL(x,rhs.f[8])+VERTTYPEMUL(y,rhs.f[9])+VERTTYPEMUL(z,rhs.f[10])+VERTTYPEMUL(w,rhs.f[11]);
99 out.w = VERTTYPEMUL(x,rhs.f[12])+VERTTYPEMUL(y,rhs.f[13])+VERTTYPEMUL(z,rhs.f[14])+VERTTYPEMUL(w,rhs.f (…)
150 PVRTMat4 out; local
162 PVRTMat4 out; local
174 PVRTMat4 out; local
191 PVRTMat4 out; local
203 PVRTMat4 out; local
215 PVRTMat4 out; local
228 PVRTMat4 out; local
267 PVRTMat4 out; local
    [all...]
  /external/syslinux/com32/lib/zlib/
inffast.c 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out) = 0
    [all...]
  /external/toybox/scripts/
mkflags.c 30 // replace chopped out USE_BLAH() sections with low-ascii characters
138 char *out, *outbuf = malloc(1024*1024); local
142 if (!(out = outbuf)) return 1;
194 sprintf(out, "#ifdef FOR_%s\n#ifndef TT\n#define TT this.%s\n#endif\n",
196 out += strlen(out);
206 sprintf(out, "#define FLAG_%s (1%s<<%d)\n", flist->lopt->command,
209 } else sprintf(out, "#define FLAG_%s (FORCED_FLAG%s<<%d)\n",
221 sprintf(out, "#define FLAG_%c (1%s<<%d)\n", *aflist->command,
224 } else sprintf(out, "#define FLAG_%c (FORCED_FLAG%s<<%d)\n"
    [all...]
  /external/toybox/toys/other/
stat.c 55 static void out(char c, long long val) function
81 if (type == 'a') out('o', stat->st_mode&~S_IFMT);
87 } else if (type == 'b') out('u', stat->st_blocks);
88 else if (type == 'B') out('d', 512);
89 else if (type == 'd') out('d', stat->st_dev);
90 else if (type == 'D') out('x', stat->st_dev);
91 else if (type == 'f') out('x', stat->st_mode);
100 } else if (type == 'g') out('u', stat->st_gid);
102 else if (type == 'h') out('u', stat->st_nlink);
103 else if (type == 'i') out('u', stat->st_ino)
    [all...]

Completed in 708 milliseconds

<<31323334353637383940>>