Lines Matching refs:ord
310 if len(result) != config_size or ord(result[0]) != JERRY_DEBUGGER_CONFIGURATION:
313 self.little_endian = ord(result[1]) & JERRY_DEBUGGER_LITTLE_ENDIAN
314 self.max_message_size = ord(result[6])
315 self.cp_size = ord(result[7])
687 buffer_type = ord(data[0])
882 buffer_type = ord(data[0])
1133 subtype = ord(data[-1])
1140 buffer_type = ord(data[0])
1194 name_length = ord(self.scope_vars[buff_pos:buff_pos + 1])
1200 value_type = ord(self.scope_vars[buff_pos:buff_pos + 1])
1204 value_length = ord(self.scope_vars[buff_pos:buff_pos + 1])
1235 if ord(level) == JERRY_DEBUGGER_SCOPE_WITH:
1237 elif ord(level) == JERRY_DEBUGGER_SCOPE_GLOBAL:
1239 elif ord(level) == JERRY_DEBUGGER_SCOPE_NON_CLOSURE:
1242 elif ord(level) == JERRY_DEBUGGER_SCOPE_LOCAL:
1244 elif ord(level) == JERRY_DEBUGGER_SCOPE_CLOSURE: