/external/clang/test/CodeGen/ |
2007-05-11-str-const.c | 3 static unsigned char out[]={0,1}; variable
|
mmx-inline-asm-error.c | 5 vec256 out; local 8 asm("something %0" : "=y"(out)); // expected-error {{invalid type 'vec256' in asm input for constraint 'y'}} 9 asm("something %0, %0" : "+y"(out)); // expected-error {{invalid type 'vec256' in asm input for constraint 'y'}} 11 return out;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/ |
freeze.pass.cpp | 22 std::ostrstream out; local 23 out.freeze(); 24 assert(!out.fail()); 25 out << 'a'; 26 assert(out.fail()); 27 out.clear(); 28 out.freeze(false); 29 out << 'a'; 30 out << char(0); 31 assert(out.str() == std::string("a")) [all...] |
pcount.pass.cpp | 22 std::ostrstream out; local 23 assert(out.pcount() == 0); 24 out << 123 << ' ' << 4.5 << ' ' << "dog"; 25 assert(out.pcount() == 11);
|
str.pass.cpp | 22 std::ostrstream out; local 23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends; 24 assert(out.str() == std::string("123 4.5 dog"));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/ |
freeze.pass.cpp | 22 std::strstream out; local 23 out.freeze(); 24 assert(!out.fail()); 25 out << 'a'; 26 assert(out.fail()); 27 out.clear(); 28 out.freeze(false); 29 out << 'a'; 30 out << char(0); 31 assert(out.str() == std::string("a")) [all...] |
pcount.pass.cpp | 22 std::strstream out; local 23 assert(out.pcount() == 0); 24 out << 123 << ' ' << 4.5 << ' ' << "dog"; 25 assert(out.pcount() == 11);
|
str.pass.cpp | 22 std::strstream out; local 23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends; 24 assert(out.str() == std::string("123 4.5 dog"));
|
/build/core/ |
help.mk | 23 @echo "clean (aka clobber) equivalent to rm -rf out/" 32 .PHONY: out 33 out:
|
/external/chromium_org/third_party/angle/src/compiler/ |
intermOut.cpp | 15 // 2. Print out a text based description of the tree. 88 TInfoSinkBase& out = sink; local 90 OutputTreeText(out, node, depth); 93 case EOpAssign: out << "move second child to first child"; break; 94 case EOpInitialize: out << "initialize first child with second child"; break; 95 case EOpAddAssign: out << "add second child into first child"; break; 96 case EOpSubAssign: out << "subtract second child into first child"; break; 97 case EOpMulAssign: out << "multiply second child into first child"; break; 98 case EOpVectorTimesMatrixAssign: out << "matrix mult second child into first child"; break; 99 case EOpVectorTimesScalarAssign: out << "vector scale second child into first child"; break 140 TInfoSinkBase& out = sink; local 206 TInfoSinkBase& out = sink; local 284 TInfoSinkBase& out = sink; local 317 TInfoSinkBase& out = sink; local 350 TInfoSinkBase& out = sink; local 388 TInfoSinkBase& out = sink; local [all...] |
/external/javassist/sample/hotswap/logging/ |
HelloWorld.java | 3 System.out.println("** HelloWorld.print()"); 4 System.out.println("hello world");
|
/external/v8/src/ |
property.cc | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 44 void LookupResult::Print(FILE* out) { 46 PrintF(out, "Not Found\n"); 50 PrintF(out, "LookupResult:\n"); 51 PrintF(out, " -cacheable = %s\n", IsCacheable() ? "true" : "false"); 52 PrintF(out, " -attributes = %x\n", GetAttributes()); 55 PrintF(out, " -type = normal\n"); 56 PrintF(out, " -entry = %d", GetDictionaryEntry()); 59 PrintF(out, " -type = map transition\n"); 60 PrintF(out, " -map:\n") [all...] |
objects-printer.cc | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 43 void MaybeObject::Print(FILE* out) { 47 Smi::cast(this_as_object)->SmiPrint(out); 49 HeapObject::cast(this_as_object)->HeapObjectPrint(out); 52 Failure::cast(this)->FailurePrint(out); 54 Flush(out); 58 void MaybeObject::PrintLn(FILE* out) { 59 Print(out); 60 PrintF(out, "\n"); 64 void HeapObject::PrintHeader(FILE* out, const char* id) [all...] |
/external/chromium_org/v8/src/ |
objects-printer.cc | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 45 void MaybeObject::Print(FILE* out) { 49 Smi::cast(this_as_object)->SmiPrint(out); 51 HeapObject::cast(this_as_object)->HeapObjectPrint(out); 54 Failure::cast(this)->FailurePrint(out); 56 Flush(out); 65 void MaybeObject::PrintLn(FILE* out) { 66 Print(out); 67 PrintF(out, "\n"); 71 void HeapObject::PrintHeader(FILE* out, const char* id) [all...] |
property.cc | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 45 void LookupResult::Print(FILE* out) { 47 PrintF(out, "Not Found\n"); 51 PrintF(out, "LookupResult:\n"); 52 PrintF(out, " -cacheable = %s\n", IsCacheable() ? "true" : "false"); 53 PrintF(out, " -attributes = %x\n", GetAttributes()); 56 PrintF(out, " -type = normal\n"); 57 PrintF(out, " -entry = %d", GetDictionaryEntry()); 60 PrintF(out, " -type = constant\n"); 61 PrintF(out, " -value:\n") [all...] |
/art/test/015-switch/src/ |
Main.java | 25 case -1: System.out.print("neg one\n"); break; 26 case 0: System.out.print("zero\n"); break; 27 case 1: System.out.print("CORRECT (one)\n"); break; 28 case 2: System.out.print("two\n"); break; 29 case 3: System.out.print("three\n"); break; 30 case 4: System.out.print("four\n"); break; 31 default: System.out.print("???\n"); break; 34 case 3: System.out.print("three\n"); break; 35 case 4: System.out.print("four\n"); break; 36 default: System.out.print("CORRECT (not found)\n"); break [all...] |
/dalvik/tests/015-switch/src/ |
Main.java | 25 case -1: System.out.print("neg one\n"); break; 26 case 0: System.out.print("zero\n"); break; 27 case 1: System.out.print("CORRECT (one)\n"); break; 28 case 2: System.out.print("two\n"); break; 29 case 3: System.out.print("three\n"); break; 30 case 4: System.out.print("four\n"); break; 31 default: System.out.print("???\n"); break; 34 case 3: System.out.print("three\n"); break; 35 case 4: System.out.print("four\n"); break; 36 default: System.out.print("CORRECT (not found)\n"); break [all...] |
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/ |
mat2d.js | 20 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 50 var out = new GLMAT_ARRAY_TYPE(6); 51 out[0] = 1; 52 out[1] = 0; 53 out[2] = 0; 54 out[3] = 1; 55 out[4] = 0; 56 out[5] = 0; 57 return out; 67 var out = new GLMAT_ARRAY_TYPE(6) [all...] |
/external/chromium_org/third_party/opus/src/silk/ |
log2lin.c | 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 40 opus_int32 out, frac_Q7; local 46 out = silk_LSHIFT( 1, silk_RSHIFT( inLog_Q7, 7 ) ); 50 out = silk_ADD_RSHIFT32( out, silk_MUL( out, silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) ), 7 ); 53 out = silk_MLA( out, silk_RSHIFT( out, 7 ), silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) ); 55 return out; [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
PrintStream.cpp | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 50 void printInternal(PrintStream& out, const char* string) 52 out.printf("%s", string); 55 void printInternal(PrintStream& out, const CString& string) 57 out.print(string.data()); 60 void printInternal(PrintStream& out, const String& string) 62 out.print(string.utf8()); 65 void printInternal(PrintStream& out, bool value) 68 out.print("true"); 70 out.print("false") [all...] |
/external/dropbear/libtomcrypt/src/misc/ |
zeromem.c | 20 @param out The destination of the area to zero 23 void zeromem(void *out, size_t outlen) 25 unsigned char *mem = out; 26 LTC_ARGCHKVD(out != NULL);
|
/external/e2fsprogs/lib/uuid/ |
pack.c | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 41 unsigned char *out = ptr; local 44 out[3] = (unsigned char) tmp; 46 out[2] = (unsigned char) tmp; 48 out[1] = (unsigned char) tmp; 50 out[0] = (unsigned char) tmp; 53 out[5] = (unsigned char) tmp; 55 out[4] = (unsigned char) tmp; 58 out[7] = (unsigned char) tmp; 60 out[6] = (unsigned char) tmp [all...] |
/external/grub/stage2/ |
terminfo.c | 59 char *out; local 61 out = out_buffer; 70 *out = (*in) - 'A'; 75 *out = '^'; 91 *out++ = (char)(n & 0xff); 103 *out++ = '\e'; 106 *out++ = '\n'; 109 *out++ = '\r'; 112 *out++ = '\t'; 115 *out++ = '\b' 164 char *out; local [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/testing/ |
WTFTestHelpers.cpp | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 40 std::ostream& operator<<(std::ostream& out, const String& string) 43 return out << "<null>"; 45 out << '"'; 51 out << "\\t"; 54 out << "\\n"; 57 out << "\\r"; 60 out << "\\\""; 63 out << "\\\\"; 67 out << static_cast<char>(character) [all...] |
/external/javassist/sample/hotswap/ |
HelloWorld.java | 3 System.out.println("hello world");
|