• Home
  • Raw
  • Download

Lines Matching refs:out

35 void LookupResult::Print(FILE* out) {  in Print()  argument
37 PrintF(out, "Not Found\n"); in Print()
41 PrintF(out, "LookupResult:\n"); in Print()
42 PrintF(out, " -cacheable = %s\n", IsCacheable() ? "true" : "false"); in Print()
43 PrintF(out, " -attributes = %x\n", GetAttributes()); in Print()
46 PrintF(out, " -type = normal\n"); in Print()
47 PrintF(out, " -entry = %d", GetDictionaryEntry()); in Print()
50 PrintF(out, " -type = map transition\n"); in Print()
51 PrintF(out, " -map:\n"); in Print()
52 GetTransitionMap()->Print(out); in Print()
53 PrintF(out, "\n"); in Print()
56 PrintF(out, " -type = external array transition\n"); in Print()
57 PrintF(out, " -map:\n"); in Print()
58 GetTransitionMap()->Print(out); in Print()
59 PrintF(out, "\n"); in Print()
62 PrintF(out, " -type = constant function\n"); in Print()
63 PrintF(out, " -function:\n"); in Print()
64 GetConstantFunction()->Print(out); in Print()
65 PrintF(out, "\n"); in Print()
68 PrintF(out, " -type = field\n"); in Print()
69 PrintF(out, " -index = %d", GetFieldIndex()); in Print()
70 PrintF(out, "\n"); in Print()
73 PrintF(out, " -type = call backs\n"); in Print()
74 PrintF(out, " -callback object:\n"); in Print()
75 GetCallbackObject()->Print(out); in Print()
78 PrintF(out, " -type = lookup interceptor\n"); in Print()
81 PrintF(out, " -type = constant property transition\n"); in Print()
84 PrintF(out, " =type = null descriptor\n"); in Print()
90 void Descriptor::Print(FILE* out) { in Print() argument
91 PrintF(out, "Descriptor "); in Print()
92 GetKey()->ShortPrint(out); in Print()
93 PrintF(out, " @ "); in Print()
94 GetValue()->ShortPrint(out); in Print()
95 PrintF(out, " %d\n", GetDetails().index()); in Print()