Home | History | Annotate | Download | only in bcc

Lines Matching refs:Source

2  * Copyright 2010-2012, The Android Open Source Project
22 class Source;
26 // This is the source associated with this object and is going to be
28 Source *mSource;
36 Script(Source &pSource) : mSource(&pSource) { }
40 // Reset this object with the new source supplied. Return false if this
41 // object remains unchanged after the call (e.g., the supplied source is
43 // false, the current containing source will be destroyed after successfully
45 bool reset(Source &pSource, bool pPreserveCurrent = false);
47 // Merge (or link) another source into the current source associated with
51 bool mergeSource(Source &pSource, bool pPreserveSource = false);
53 inline Source &getSource()
55 inline const Source &getSource() const