Lines Matching defs:source
2 // Use of this source code is governed by a BSD-style license that can be
137 // * source is the string passed into eval(). For dynamic functions, this is
138 // the effective source for the function, some of which is implicitly
142 // * When positive, position is the position in the source where eval is
144 // dynamic function's effective source where the ')' ends the parameters.
145 StringSharedKey(Handle<String> source, Handle<SharedFunctionInfo> shared,
148 *source, *shared, language_mode, position)),
149 source_(source),
155 StringSharedKey(Handle<String> source, LanguageMode language_mode)
157 CompilationCacheShape::StringSharedHash(*source, language_mode)),
158 source_(source),
184 String source = String::cast(other_array.get(1));
185 return source.Equals(*source_);
210 // RegExpKey carries the source and flags of a regular expression as key.