/external/owasp/sanitizer/src/main/org/owasp/html/ |
ElementPolicy.java | 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 71 ElementPolicy out = null; field in class:ElementPolicy.Util.PolicyJoiner 75 out = p; 76 } else if (out != REJECT_ALL_ELEMENT_POLICY) { 83 if (out == null || out == IDENTITY_ELEMENT_POLICY) { 84 out = p; 86 out = new JoinedElementPolicy(out, p); 98 return pu.out != null ? pu.out : IDENTITY_ELEMENT_POLICY [all...] |
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
EncodingTest.java | 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 218 StringBuilder out = new StringBuilder(); local 219 Encoding.encodeHtmlOnto(cps.toString(), out); local 223 out.toString());
|
HtmlChangeReporterTest.java | 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 45 StringBuilder out = new StringBuilder(); local 48 out, Handler.DO_NOTHING); 75 assertEquals("Hello,<b>World</b>!", out.toString());
|
/external/proguard/src/proguard/ |
GPL.java | 27 * This class checks and prints out information about the GPL. 34 * Prints out a note about the GPL if ProGuard is linked against unknown 39 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 40 new Exception().printStackTrace(new PrintStream(out)); 43 new ByteArrayInputStream(out.toByteArray()))); 51 System.out.println("ProGuard is released under the GNU General Public License. You therefore"); 52 System.out.println("must ensure that programs that link to it ("+uniquePackageNames+"...)"); 53 System.out.println("carry the GNU General Public License as well. Alternatively, you can"); 54 System.out.println("apply for an exception with the author of ProGuard."); 193 System.out.println(uniquePackageNames) [all...] |
/external/protobuf/src/google/protobuf/util/ |
field_mask_util.h | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 51 static void FromString(StringPiece str, FieldMask* out); 57 static bool ToJsonString(const FieldMask& mask, string* out); 58 static bool FromJsonString(StringPiece str, FieldMask* out); 86 static void GetFieldMaskForAllFields(FieldMask* out) { 87 InternalGetFieldMaskForAllFields(T::descriptor(), out); local 95 static void ToCanonicalForm(const FieldMask& mask, FieldMask* out); 99 FieldMask* out); 103 FieldMask* out); 148 FieldMask* out); [all...] |
/external/r8/src/test/java/com/android/tools/r8/debuginfo/ |
DebugInfoTestBase.java | 52 Path out = temp.getRoot().toPath().resolve("out.zip"); local 53 app.writeToZip(out, OutputMode.Indexed); 54 return ToolHelper.runArtNoVerificationErrors(ImmutableList.of(out.toString()), main, null); 60 System.out.println("Std out:"); 61 System.out.println(result.stdout); 62 System.out.println("Std err:"); 63 System.out.println(result.stderr);
|
/external/selinux/policycoreutils/hll/pp/ |
pp.c | 75 FILE *out = NULL; local 109 out = fopen(ofile, "w"); 110 if (out == NULL) { 116 out = stdout; 150 rc = sepol_module_package_to_cil(out, mod_pkg); 159 if (out != NULL) { 160 fclose(out);
|
/external/selinux/semodule-utils/semodule_expand/ |
semodule_expand.c | 44 sepol_policydb_t *out, *p; local 114 fprintf(stderr, "%s: Out of memory\n", argv[0]); 120 fprintf(stderr, "%s: Out of memory\n", argv[0]); 147 if (sepol_policydb_create(&out)) { 148 fprintf(stderr, "%s: Out of memory\n", argv[0]); 154 if (sepol_expand_module(handle, p, out, verbose, check_assertions)) { 160 if (sepol_policydb_set_vers(out, policyvers)) { 176 ret = sepol_policydb_write(out, pf); 185 sepol_policydb_free(out);
|
/external/skia/bench/ |
RTreeBench.cpp | 99 SkRect out; local 100 out.fLeft = SkIntToScalar(index % GRID_WIDTH); 101 out.fTop = SkIntToScalar(index / GRID_WIDTH); 102 out.fRight = out.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3); 103 out.fBottom = out.fTop + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3); 104 return out; 107 SkRect out; local 108 out.fLeft = SkIntToScalar(index / GRID_WIDTH) 116 SkRect out; local [all...] |
/external/skia/tests/ |
PathOpsSimplifyDegenerateThreadedTest.cpp | 34 SkPath path, out; local 55 testSimplify(path, false, out, state, pathStr.c_str()); 60 testSimplify(path, true, out, state, pathStr.c_str());
|
PathOpsSimplifyTrianglesThreadedTest.cpp | 37 SkPath path, out; local 59 testSimplify(path, false, out, state, pathStr.c_str()); 65 testSimplify(path, true, out, state, pathStr.c_str());
|
/external/smali/util/src/main/java/org/jf/util/ |
TwoColumnOutput.java | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 47 private final Writer out; field in class:TwoColumnOutput 59 * @param out non-null; writer to send final output to 64 public TwoColumnOutput(@Nonnull Writer out, int leftWidth, int rightWidth, 75 this.out = out; 84 * @param out non-null; stream to send final output to 89 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 91 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer); 123 out.write(leftLine) [all...] |
/external/swiftshader/src/OpenGL/compiler/ |
intermOut.cpp | 24 // 2. Print out a text based description of the tree. 97 TInfoSinkBase& out = sink; local 99 OutputTreeText(out, node, mDepth); 102 case EOpAssign: out << "move second child to first child"; break; 103 case EOpInitialize: out << "initialize first child with second child"; break; 104 case EOpAddAssign: out << "add second child into first child"; break; 105 case EOpSubAssign: out << "subtract second child into first child"; break; 106 case EOpMulAssign: out << "multiply second child into first child"; break; 107 case EOpVectorTimesMatrixAssign: out << "matrix mult second child into first child"; break; 108 case EOpVectorTimesScalarAssign: out << "vector scale second child into first child"; break 161 TInfoSinkBase& out = sink; local 247 TInfoSinkBase& out = sink; local 337 TInfoSinkBase& out = sink; local 370 TInfoSinkBase& out = sink; local 407 TInfoSinkBase& out = sink; local 445 TInfoSinkBase& out = sink; local [all...] |
/external/swiftshader/third_party/LLVM/examples/BrainF/ |
BrainFDriver.cpp | 100 raw_ostream *out = &outs(); local 111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo, 139 //Write it out 149 WriteBitcodeToFile(mod, *out); 153 if (out != &outs()) 154 delete out;
|
/external/swiftshader/third_party/LLVM/tools/llvm-diff/ |
DiffConsumer.h | 68 raw_ostream &out; member in class:llvm::DiffConsumer 81 : out(errs()), LModule(L), RModule(R), Differences(false), Indent(0) {}
|
/external/syslinux/gpxe/src/crypto/ |
sha1extra.c | 49 u8 out[SHA1_SIZE]; /* HMAC-SHA1 result */ local 68 hmac_final ( &sha1_algorithm, sha1_ctx, keym, &key_len, out ); 71 memcpy ( prf, out, prf_len ); 75 memcpy ( prf, out, SHA1_SIZE );
|
/external/testng/src/test/java/test/parameters/ |
ParamInheritanceTest.java | 29 PrintStream out = System.out; local 48 System.setOut(out);
|
/external/valgrind/memcheck/tests/ |
leak-segv-jmp.c | 149 UWord out; local 160 : /*out*/ "=r" (out) 164 return out;
|
origin6-fp.c | 38 double** out; local 40 out = alloc_square_array(nArr - 2); 41 assert(out); 47 out[i-1][j-1] = s / 9.0; 50 return out; 66 void setup_arr ( /*OUT*/double** arr, int nArr )
|
/external/webrtc/webrtc/common_audio/signal_processing/include/ |
spl_inl_armv7.h | 129 int32_t out = 0; local 131 __asm __volatile ("ssat %0, #16, %1" : "=r"(out) : "r"(value32)); 133 return (int16_t)out;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
filterbanks_unittest.cc | 81 int32_t out[kSamples] = {-1040, -1035, -22875, -1397, -27604, 20018, 7917, local 85 int32_t out[kSamples] = {-1040, -1035, -22875, -1397, -27604, 20017, 7915, local 105 EXPECT_EQ(out[i], in[i]);
|
/frameworks/av/media/libeffects/testlibs/ |
EffectsMath.c | 116 int32_t out = 0; local 125 out = 0x4000; 135 tmp = (out << i) + (1 << ((i - 1)*2)); 138 out += 1 << (i-1); 143 return out;
|
/frameworks/av/media/libstagefright/foundation/ |
base64.cpp | 49 uint8_t *out = buffer->data(); local 50 if (out == NULL || buffer->size() < outLen) { 81 if (j < outLen) { out[j++] = (accum >> 16); } 82 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; } 83 if (j < outLen) { out[j++] = accum & 0xff; } 107 const void *_data, size_t size, AString *out) { 108 out->clear(); 118 out->append(encode6Bit(x1 >> 2)); 119 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f)); 120 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 0x3f)) [all...] |
/frameworks/base/core/java/android/ddm/ |
DdmHandleAppName.java | 93 ByteBuffer out = ByteBuffer.allocate( local 97 out.order(ChunkHandler.CHUNK_ORDER); 98 out.putInt(appName.length()); 99 putString(out, appName); 100 out.putInt(userId); 102 Chunk chunk = new Chunk(CHUNK_APNM, out);
|
/frameworks/base/core/tests/coretests/src/android/util/ |
ArrayMapTest.java | 44 System.out.println("Starting ArrayMap concurrency test"); 57 System.out.println("[successfully caught CME at put #" + i 61 System.out.print("."); 69 System.out.print("X"); 78 System.out.println( 84 System.out.println(); 96 System.out.print("."); 100 System.out.print("X");
|