Home | History | Annotate | Download | only in src

Lines Matching refs:out

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