HomeSort by relevance Sort by last modified time
    Searched refs:script (Results 326 - 350 of 747) sorted by null

<<11121314151617181920>>

  /external/v8/src/
handles.h 281 // Get the JS object corresponding to the given script; create it
283 Handle<JSValue> GetScriptWrapper(Handle<Script> script);
285 // Script line number computations.
286 void InitScriptLineEnds(Handle<Script> script);
292 int GetScriptLineNumber(Handle<Script> script, int code_position);
294 int GetScriptLineNumberSafe(Handle<Script> script, int code_position)
    [all...]
liveedit.h 34 // User should be able to change script on already running VM. This feature
41 // script.source[positions, positions+length] = new_string;
43 // change area. Then both old and new versions of script are fully compiled
48 // to them in a new script version. However, new version of code will
58 // in a particular script. It gets called from compiler all the time, but
86 static JSArray* GatherCompileInfo(Handle<Script> script,
97 // Updates script field in FunctionSharedInfo.
104 // For a script updates its source field. If old_script_name is provided
105 // (i.e. is a String), also creates a copy of the script with its origina
    [all...]
mirror-debugger.js 158 const SCRIPT_TYPE = 'script';
370 * Check whether the mirror reflects a script.
371 * @returns {boolean} True if the mirror reflects a script
831 * Returns the script object for the function.
832 * @return {ScriptMirror or undefined} Script object for the function or
833 * undefined if the function has no script
835 FunctionMirror.prototype.script = function() {
836 // Return script if function is resolved. Otherwise just fall through
839 var script = %FunctionGetScript(this.value_);
840 if (script) {
    [all...]
  /external/v8/test/mjsunit/
function-source.js 32 // Check that the script source for all functions in a script is the same.
  /external/webkit/Source/JavaScriptCore/bytecode/
SamplingTool.cpp 212 void SamplingTool::notifyOfScope(ScriptExecutable* script)
216 m_scopeSampleMap->set(script, new ScriptSampleRecord(script));
218 UNUSED_PARAM(script);
  /external/webkit/Source/WebCore/html/parser/
HTMLDocumentParser.h 141 ScriptController* script() const;
  /external/webkit/Source/WebCore/loader/cache/
CachedScript.cpp 44 : CachedResource(url, Script)
82 const String& CachedScript::script() function in class:WebCore::CachedScript
  /external/webkit/Source/WebKit/chromium/src/
WebBindings.cpp 76 bool WebBindings::evaluate(NPP npp, NPObject* object, NPString* script, NPVariant* result)
78 return _NPN_Evaluate(npp, object, script, result);
81 bool WebBindings::evaluateHelper(NPP npp, bool popupsAllowed, NPObject* object, NPString* script, NPVariant* result)
83 return _NPN_EvaluateHelper(npp, popupsAllowed, object, script, result);
  /external/webkit/Tools/Scripts/
make-script-test-wrappers 29 # Script to generate HTML wrappers for JavaScript tests from templates
67 if ($tpath =~ s:/(script-tests)/TEMPLATE.html$::) {
  /external/wpa_supplicant_8/wpa_supplicant/examples/
p2p-action-udhcp.sh 34 -s /etc/udhcpc.script
  /sdk/ddms/app/etc/
ddms.bat 19 rem Set up prog to be the path of this script, including following symlinks,
23 rem Change current directory and drive to where the script is, to avoid
  /sdk/hierarchyviewer2/app/etc/
hierarchyviewer.bat 19 rem Set up prog to be the path of this script, including following symlinks,
23 rem Change current directory and drive to where the script is, to avoid
  /sdk/lint/cli/etc/
lint.bat 19 rem Set up prog to be the path of this script, including following symlinks,
23 rem Change current directory and drive to where the script is, to avoid
  /sdk/monkeyrunner/etc/
monkeyrunner.bat 19 rem Set up prog to be the path of this script, including following symlinks,
23 rem Change current directory and drive to where the script is, to avoid
  /sdk/traceview/etc/
traceview.bat 19 rem Set up prog to be the path of this script, including following symlinks,
23 rem Change current directory and drive to where the script is, to avoid
  /external/harfbuzz/src/
harfbuzz-tibetan.c 217 assert(item->item.script == HB_Script_Tibetan);
250 void HB_TibetanAttributes(HB_Script script, const HB_UChar16 *text, hb_uint32 from, hb_uint32 len, HB_CharAttributes *attributes)
255 HB_UNUSED(script);
  /external/harfbuzz/tests/linebreaking/
main.cpp 35 static QVector<HB_CharAttributes> getCharAttributes(const QString &str, HB_Script script = HB_Script_Common)
41 item.script = script;
  /external/icu4c/layoutex/
ParagraphLayout.cpp 355 // now intersect the font, direction and script runs...
387 fStyleRunInfo[run].script = (UScriptCode)0;
403 fStyleRunInfo[run].script = (UScriptCode) fScriptRuns->getValue(styleIndices[2]);
409 fStyleRunInfo[run].script, getLanguageCode(fStyleRunInfo[run].locale), layoutStatus);
753 UScriptCode script; local
755 while (uscript_nextRun(sr, NULL, &limit, &script)) {
756 scriptRuns->add(script, limit);
798 le_int32 script = fScriptRuns->getValue(si[1]); local
801 const LEFontInstance *subFont = runFont->getSubFont(fChars, &offset, styleRunLimits[run], script, status);
970 le_bool ParagraphLayout::isComplex(UScriptCode script)
    [all...]
  /external/mesa3d/src/pixelflinger2/
shader.cpp 111 struct BCCOpaqueScript * script; member in struct:Instance
115 if (script)
116 bccDisposeScript(script);
394 BCCScriptRef & script = instance->script; local
395 script = bccCreateScript();
396 result = bccReadModule(script, "glsl", (LLVMModuleRef)instance->module, 0);
398 result = bccRegisterSymbolCallback(script, SymbolLookup, &ctx);
400 result = bccPrepareExecutable(script, NULL, NULL, 0);
402 result = bccGetError(script);
    [all...]
  /external/skia/src/animator/
SkScript.h 85 bool evaluateScript(const char** script, SkScriptValue* value);
209 bool evaluateDot(const char*& script, bool suppressed);
210 bool evaluateDotParam(const char*& script, bool suppressed, const char* field, size_t fieldLength);
SkScript2.h 35 bool evaluateScript(const char** script, SkScriptValue2* value);
226 bool evaluateDot(const char*& script);
227 bool evaluateDotParam(const char*& script, const char* field, size_t fieldLength);
  /external/v8/src/extensions/experimental/
i18n-extension.cc 98 const char* script = icu_locale.getScript(); local
99 if (strlen(script)) {
100 locale->Set(v8::String::New("script"), v8::String::New(script));
183 } else if (item == "script") {
208 return GetDisplayItem(args, "script");
  /frameworks/base/graphics/java/android/renderscript/
RenderScript.java 137 native void rsnContextBindRootScript(int con, int script);
138 synchronized void nContextBindRootScript(int script) {
140 rsnContextBindRootScript(mContext, script);
439 native void rsnScriptBindAllocation(int con, int script, int alloc, int slot);
440 synchronized void nScriptBindAllocation(int script, int alloc, int slot) {
442 rsnScriptBindAllocation(mContext, script, alloc, slot);
444 native void rsnScriptSetTimeZone(int con, int script, byte[] timeZone);
445 synchronized void nScriptSetTimeZone(int script, byte[] timeZone) {
447 rsnScriptSetTimeZone(mContext, script, timeZone);
501 byte[] script, int length)
    [all...]
  /external/icu4c/tools/dumpce/
dumpce.cpp 750 // compare the 2 script element sort key
783 * Output serialized script elements
900 * @param script list
905 UBool checkInScripts(UScriptCode script[], int scriptcount,
910 if (script[i] == USCRIPT_HAN && options[10].doesOccur) {
917 else if (uscript_getScript(codepoint, &error) == script[i]) {
929 * Checks if the set of codepoints belongs to the script
930 * @param script list
933 * @return TRUE if all codepoints belongs to the script
935 inline UBool checkInScripts(UScriptCode script[], int scriptcount
    [all...]
  /external/v8/test/cctest/
test-compiler.cc 317 // Regression 236. Calling InitLineEnds on a Script with undefined
323 Handle<Script> script = FACTORY->NewScript(FACTORY->empty_string()); local
324 script->set_source(HEAP->undefined_value());
325 CHECK_EQ(-1, GetScriptLineNumber(script, 0));
326 CHECK_EQ(-1, GetScriptLineNumber(script, 100));
327 CHECK_EQ(-1, GetScriptLineNumber(script, -1));
347 v8::Script::Compile(script_body, &origin)->Run();

Completed in 1155 milliseconds

<<11121314151617181920>>