850851852853854855856
/** * Converts to a key. */ public Value toKey() { throw new QuercusRuntimeException(L.l("{0} is not a valid key", this)); }
27192720272127222723272427252726
public void print(Env env, WriteStream out) { try { out.print(toString(env)); } catch (IOException e) { throw new QuercusRuntimeException(e); } }
648649650651652653654655
return sublen; } else return -1; } catch (IOException e) { throw new QuercusRuntimeException(e); } }
694695696697698699700701
reader.close(); } return sb; } catch (IOException e) { throw new QuercusRuntimeException(e); } }
736737738739740741742743
sublen = SIZE; out.write(_bufferList[chunk], 0, sublen); } } catch (IOException e) { throw new QuercusRuntimeException(e); } }
225222532254225522562257225822592260
try { //XXX: refactor so that env is passed in return toInputStream(Env.getInstance().getRuntimeEncoding()); } catch (UnsupportedEncodingException e) { throw new QuercusRuntimeException(e); } //return new StringValueInputStream(); }
8182838485868788
else return null; } catch (RuntimeException e) { throw e; } catch (Throwable e) { throw new QuercusRuntimeException(e); } }
1335133613371338133913401341134213431344
try { _jsonEncode.invoke(obj, env, sb); return true; } catch (InvocationTargetException e) { throw new QuercusRuntimeException(e); } catch (IllegalAccessException e) { throw new QuercusRuntimeException(e); } }
1363136413651366136713681369137013711372
} _printRImpl.invoke(obj, env, out, depth, valueSet); return true; } catch (InvocationTargetException e) { throw new QuercusRuntimeException(e); } catch (IllegalAccessException e) { throw new QuercusRuntimeException(e); } }
1384138513861387138813891390139113921393
return false; _varDumpImpl.invoke(javaObj, env, obj, out, depth, valueSet); return true; } catch (InvocationTargetException e) { throw new QuercusRuntimeException(e); } catch (IllegalAccessException e) { throw new QuercusRuntimeException(e); } }