Home | History | Annotate | Download | only in src

Lines Matching refs:out

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");
61 GetTransitionMap()->Print(out);
62 PrintF(out, "\n");
65 PrintF(out, " -type = elements transition\n");
66 PrintF(out, " -map:\n");
67 GetTransitionMap()->Print(out);
68 PrintF(out, "\n");
71 PrintF(out, " -type = constant function\n");
72 PrintF(out, " -function:\n");
73 GetConstantFunction()->Print(out);
74 PrintF(out, "\n");
77 PrintF(out, " -type = field\n");
78 PrintF(out, " -index = %d", GetFieldIndex());
79 PrintF(out, "\n");
82 PrintF(out, " -type = call backs\n");
83 PrintF(out, " -callback object:\n");
84 GetCallbackObject()->Print(out);
87 PrintF(out, " -type = lookup proxy\n");
90 PrintF(out, " -type = lookup interceptor\n");
93 PrintF(out, " -type = constant property transition\n");
94 PrintF(out, " -map:\n");
95 GetTransitionMap()->Print(out);
96 PrintF(out, "\n");
99 PrintF(out, " =type = null descriptor\n");
105 void Descriptor::Print(FILE* out) {
106 PrintF(out, "Descriptor ");
107 GetKey()->ShortPrint(out);
108 PrintF(out, " @ ");
109 GetValue()->ShortPrint(out);
110 PrintF(out, " %d\n", GetDetails().index());