/sdk/testapps/customPropAnimTest/src/com/android/custompropertyanimation/ |
MyView.java | 15 System.out.println("foo = " + foo); 20 System.out.println("getFoo() returning " + mFoo);
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
OutputHLSL.cpp | 101 TInfoSinkBase &out = mHeader; local 105 out << *structDeclaration; 110 out << *constructor; 161 out << "// Varyings\n"; 162 out << varyings; 163 out << "\n" 168 out << "static float4 gl_FragCoord = float4(0, 0, 0, 0);\n"; 173 out << "static float2 gl_PointCoord = float2(0.5, 0.5);\n"; 178 out << "static bool gl_FrontFacing = false;\n"; 181 out << "\n" 593 TInfoSinkBase &out = mBody; local 653 TInfoSinkBase &out = mBody; local 905 TInfoSinkBase &out = mBody; local 984 TInfoSinkBase &out = mBody; local 1377 TInfoSinkBase &out = mBody; local 1427 TInfoSinkBase &out = mBody; local 1499 TInfoSinkBase &out = mBody; local 1559 TInfoSinkBase &out = mBody; local 1724 TInfoSinkBase &out = mBody; local [all...] |
/bootable/recovery/tools/ota/ |
check-lost+found.c | 50 FILE *out = fopen(kOutputFile, "a"); local 51 if (out == NULL) { 58 fprintf(out, "*** check-lost+found ***\nStarted: %s", ctime(&start)); 68 fprintf(out, "Wrote %s, rebooting\n", kMarkerFile); 69 fflush(out); 87 fprintf(out, "Reboot failed?!\n"); 90 fprintf(out, "Can't write %s: %s\n", kMarkerFile, strerror(errno)); 93 fprintf(out, "Found %s\n", kMarkerFile); 102 fprintf(out, "Can't open %s: %s\n", fn, strerror(errno)); 112 fprintf(out, "OMGZ FOUND %d FILES IN %s\n", count, fn) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/network/ |
TestSerialization.java | 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 126 System.out.println(cm.z); 127 System.out.println(cm.b); 128 System.out.println(cm.c); 129 System.out.println(cm.s); 130 System.out.println(cm.i); 131 System.out.println(cm.f); 132 System.out.println(cm.l); 133 System.out.println(cm.d); 134 System.out.println(Arrays.toString(cm.ia)) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/post/ |
BloomUI.java | 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 48 System.out.println("----------------- Bloom UI Debugger --------------------"); 49 System.out.println("-- blur Scale : press Y to increase, H to decrease"); 50 System.out.println("-- exposure Power : press U to increase, J to decrease"); 51 System.out.println("-- exposure CutOff : press I to increase, K to decrease"); 52 System.out.println("-- bloom Intensity : press O to increase, P to decrease"); 53 System.out.println("-------------------------------------------------------"); 70 System.out.println("blurScale : " + filter.getBlurScale()); 74 System.out.println("blurScale : " + filter.getBlurScale()); 78 System.out.println("exposurePower : " + filter.getExposurePower()) [all...] |
SSAOUI.java | 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 55 System.out.println("----------------- Water UI Debugger --------------------"); 56 System.out.println("-- Sample Radius : press Y to increase, H to decrease"); 57 System.out.println("-- AO Intensity : press U to increase, J to decrease"); 58 System.out.println("-- AO scale : press I to increase, K to decrease"); 59 System.out.println("-- AO bias : press O to increase, P to decrease"); 60 System.out.println("-- Toggle AO on/off : press space bar"); 61 System.out.println("-- Use only AO : press Num pad 0"); 62 System.out.println("-- Output config declaration : press P"); 63 System.out.println("-------------------------------------------------------") [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
HtmlWhiteSpaceStripper.java | 33 * It also strips out empty lines and leading whitespace inside HTML tags (i.e. 49 private final Appendable out; field in class:HtmlWhiteSpaceStripper 87 * @param out The Appendable object to dump the stripped output to. 89 public HtmlWhiteSpaceStripper(Appendable out) { 90 this(out, 1); 97 * @param out The Appendable object to dump the stripped output to. 100 public HtmlWhiteSpaceStripper(Appendable out, int level) { 101 this.out = out; 107 return out.toString() [all...] |
/external/smack/src/org/xbill/DNS/ |
EDNSOption.java | 98 DNSOutput out = new DNSOutput(); local 99 optionToWire(out); 100 return out.toByteArray(); 114 * @param out The input stream. 156 * @param out The output stream. 159 optionToWire(DNSOutput out); 163 * @param out The output stream. 166 toWire(DNSOutput out) { 167 out.writeU16(code); 168 int lengthPosition = out.current() 181 DNSOutput out = new DNSOutput(); local [all...] |
/dalvik/tests/046-reflect/src/ |
Main.java | 22 System.out.println("Method name is " + meth.getName()); 23 System.out.println(" Declaring class is " 27 System.out.println(" Arg " + i + ": " + params[i].getName()); 30 System.out.println(" Exc " + i + ": " + exceptions[i].getName()); 31 System.out.println(" Return type is " + meth.getReturnType().getName()); 32 System.out.println(" Access flags are 0x" 34 //System.out.println(" GenericStr is " + meth.toGenericString()); 38 System.out.println("Field name is " + field.getName()); 39 System.out.println(" Declaring class is " 41 System.out.println(" Field type is " + field.getType().getName()) [all...] |
/external/dropbear/libtomcrypt/src/misc/base64/ |
base64_decode.c | 49 @param out [out] The destination of the binary decoded data 50 @param outlen [in/out] The max size and resulting size of the decoded data 54 unsigned char *out, unsigned long *outlen) 61 LTC_ARGCHK(out != NULL); 86 out[z++] = (unsigned char)((t>>16)&255); 87 if (g > 1) out[z++] = (unsigned char)((t>>8)&255); 88 if (g > 2) out[z++] = (unsigned char)(t&255);
|
/external/dropbear/libtomcrypt/src/pk/ecc/ |
ecc_ansi_x963_export.c | 28 @param out [out] destination of export 29 @param outlen [in/out] Length of destination and final output size 32 int ecc_ansi_x963_export(ecc_key *key, unsigned char *out, unsigned long *outlen) 38 LTC_ARGCHK(out != NULL); 52 out[0] = 0x04; 57 XMEMCPY(out+1, buf, numlen); 62 XMEMCPY(out+1+numlen, buf, numlen);
|
/external/dropbear/libtomcrypt/src/pk/katja/ |
katja_encrypt_key.c | 24 @param out [out] The ciphertext 25 @param outlen [in/out] The max size and resulting size of the ciphertext 35 unsigned char *out, unsigned long *outlen, 43 LTC_ARGCHK(out != NULL); 75 out, &x)) != CRYPT_OK) { 80 return katja_exptmod(out, x, out, outlen, PK_PUBLIC, key);
|
/external/guava/guava-gwt/src/com/google/common/collect/ |
TreeMultimap_CustomFieldSerializer.java | 33 TreeMultimap<?, ?> out) { 47 public static void serialize(SerializationStreamWriter out, 49 out.writeObject(multimap.keyComparator()); 50 out.writeObject(multimap.valueComparator()); 51 Multimap_CustomFieldSerializerBase.serialize(out, multimap);
|
/external/guava/guava-tests/test/com/google/common/io/ |
LittleEndianDataInputStreamTest.java | 44 DataOutputStream out = new DataOutputStream(baos); local 46 initializeData(out); 51 private void initializeData(DataOutputStream out) throws IOException { 52 /* Write out various test values NORMALLY */ 53 out.write(new byte[] { -100, 100 }); 54 out.writeBoolean(true); 55 out.writeBoolean(false); 56 out.writeByte(100); 57 out.writeByte(-100); 58 out.writeByte((byte) 200) 129 DataOutputStream out = new DataOutputStream(baos); local [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
Hex.java | 37 char[] out = new char[(l << 1) + (group > 0 ? (l / group) : 0)]; local 41 out[j++] = '-'; 44 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4]; 45 out[j++] = DIGITS[0x0F & data[i]]; 47 return new String(out);
|
/external/openssh/regress/ |
banner.sh | 7 rm -f $OBJ/banner.out $OBJ/banner.in $OBJ/empty.in 12 ( ${SSH} -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \ 13 cmp $OBJ/empty.in $OBJ/banner.out ) || \ 25 cp $OBJ/banner.in $OBJ/banner.out 27 cat $OBJ/banner.out >> $OBJ/banner.in 33 ( ${SSH} -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \ 34 cmp $OBJ/banner.in $OBJ/banner.out ) || \ 40 ( ${SSH} -q -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \ 41 cmp $OBJ/empty.in $OBJ/banner.out ) || \ 44 rm -f $OBJ/banner.out $OBJ/banner.in $OBJ/empty.i [all...] |
/external/openssl/crypto/asn1/ |
t_bitst.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 64 int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, 69 BIO_printf(out, "%*s", indent, ""); 72 if(!first) BIO_puts(out, ", "); 73 BIO_puts(out, bnam->lname); 77 BIO_puts(out, "\n");
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/ |
AnnotationEncodedValue.java | 25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 60 public void writeValue(AnnotatedOutput out) { 61 if (out.annotates()) { 62 out.annotate("value_type=" + ValueType.VALUE_ANNOTATION.name() + ",value_arg=0"); 64 out.writeByte(ValueType.VALUE_ANNOTATION.value); 65 super.writeValue(out);
|
/external/webkit/Source/WebKit/win/Interfaces/ |
DOMRange.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 72 HRESULT startContainer([out, retval] IDOMNode** node); 77 HRESULT startOffset([out, retval] int* offset); 82 HRESULT endContainer([out, retval] IDOMNode** node); 87 HRESULT endOffset([out, retval] int* offset); 92 HRESULT collapsed([out, retval] BOOL* result); 97 HRESULT commonAncestorContainer([out, retval] IDOMNode** container); 157 HRESULT extractContents([out, retval] IDOMDocumentFragment** fragment); 162 HRESULT cloneContents([out, retval] IDOMDocumentFragment** fragment); 177 HRESULT cloneRange([out, retval] IDOMRange** range) [all...] |
IWebError.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 137 HRESULT code([out, retval] int* result); 142 HRESULT domain([out, retval] BSTR* result); 147 HRESULT localizedDescription([out, retval] BSTR* result); 152 HRESULT localizedFailureReason([out, retval] BSTR* result); 157 HRESULT localizedRecoveryOptions([out, retval] IEnumVARIANT** enumOptions); 162 HRESULT localizedRecoverySuggestion([out, retval] BSTR* result); 167 HRESULT recoverAttempter([out, retval] IUnknown** result); 172 HRESULT userInfo([out, retval] IPropertyBag** result); 174 HRESULT failingURL([out, retval] BSTR* result) [all...] |
IWebHistory.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 74 HRESULT optionalSharedHistory([out, retval] IWebHistory** history); 91 HRESULT loadFromURL([in] BSTR url, [out] IWebError** error, [out, retval] BOOL* succeeded); 101 HRESULT saveToURL([in] BSTR url, [out] IWebError** error, [out, retval] BOOL* succeeded); 132 HRESULT orderedLastVisitedDays([in, out] int* count, [in] DATE* calendarDates); 144 HRESULT orderedItemsLastVisitedOnDay([in, out] int* count, [in] IWebHistoryItem** items, [in] DATE calendarDate); 153 HRESULT itemForURL([in] BSTR url, [out, retval] IWebHistoryItem** item); 168 HRESULT historyItemLimit([out, retval] int* limit) [all...] |
IWebPreferences.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 78 HRESULT standardPreferences([out, retval] IWebPreferences** standardPreferences); 80 HRESULT initWithIdentifier([in] BSTR anIdentifier, [out, retval] IWebPreferences** preferences); 81 HRESULT identifier([out, retval] BSTR* ident); 83 HRESULT standardFontFamily([out, retval] BSTR* family); 86 HRESULT fixedFontFamily([out, retval] BSTR* family); 89 HRESULT serifFontFamily([out, retval] BSTR* fontFamily); 92 HRESULT sansSerifFontFamily([out, retval] BSTR* family); 95 HRESULT cursiveFontFamily([out, retval] BSTR* family); 98 HRESULT fantasyFontFamily([out, retval] BSTR* family) [all...] |
/external/webkit/Tools/Scripts/ |
SpacingHeuristics.pm | 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 67 my ($out, $line) = @_; 69 printPendingEmptyLines($out, $line); 71 print $out $line; 82 my $out = shift; 91 print $out $pendingEmptyLines;
|
/frameworks/base/core/java/android/appwidget/ |
AppWidgetProviderInfo.java | 226 public void writeToParcel(android.os.Parcel out, int flags) { 228 out.writeInt(1); 229 this.provider.writeToParcel(out, flags); 231 out.writeInt(0); 233 out.writeInt(this.minWidth); 234 out.writeInt(this.minHeight); 235 out.writeInt(this.minResizeWidth); 236 out.writeInt(this.minResizeHeight); 237 out.writeInt(this.updatePeriodMillis); 238 out.writeInt(this.initialLayout) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Enumerated.java | 81 public void encodeContent(BerOutputStream out) { 82 out.encodeInteger(); 85 public void setEncodingContent(BerOutputStream out) { 86 out.length = ((byte[]) out.content).length;
|