Searched refs:scriptName (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/
H A Doptions.js32 { scriptCode: advancedFonts.COMMON_SCRIPT, scriptName: 'Default'},
33 { scriptCode: 'Afak', scriptName: 'Afaka'},
34 { scriptCode: 'Arab', scriptName: 'Arabic'},
35 { scriptCode: 'Armi', scriptName: 'Imperial Aramaic'},
36 { scriptCode: 'Armn', scriptName: 'Armenian'},
37 { scriptCode: 'Avst', scriptName: 'Avestan'},
38 { scriptCode: 'Bali', scriptName: 'Balinese'},
39 { scriptCode: 'Bamu', scriptName: 'Bamum'},
40 { scriptCode: 'Bass', scriptName: 'Bassa Vah'},
41 { scriptCode: 'Batk', scriptName
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptCallFrame.cpp45 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column) argument
48 , m_scriptName(scriptName)
H A DScriptCallFrame.h43 ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column = 0);
H A DJavaScriptCallFrame.h61 String scriptName() const;
H A DInspectorTraceEvents.h159 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContext*, int scriptId, const String& scriptName, int scriptLine);
H A DTimelineRecordFactory.h55 static PassRefPtr<JSONObject> createFunctionCallData(int scriptId, const String& scriptName, int scriptLine);
H A DTimelineRecordFactory.cpp80 PassRefPtr<JSONObject> TimelineRecordFactory::createFunctionCallData(int scriptId, const String& scriptName, int scriptLine) argument
84 data->setString("scriptName", scriptName);
H A DInspectorTraceEvents.cpp343 PassRefPtr<TraceEvent::ConvertableToTraceFormat> InspectorFunctionCallEvent::data(ExecutionContext* context, int scriptId, const String& scriptName, int scriptLine) argument
347 value->setString("scriptName", scriptName);
H A DInspectorTimelineAgent.h140 bool willCallFunction(ExecutionContext*, int scriptId, const String& scriptName, int scriptLine);
H A DJavaScriptCallFrame.cpp102 String JavaScriptCallFrame::scriptName() const function in class:blink::JavaScriptCallFrame
104 return callV8FunctionReturnString("scriptName");
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DHeapSnapshotCommon.js56 * @param {string} scriptName
67 WebInspector.HeapSnapshotCommon.SerializedAllocationNode = function(nodeId, functionName, scriptName, scriptId, line, column, count, size, liveCount, liveSize, hasChildren)
74 this.scriptName = scriptName;
95 * @param {string} scriptName
101 WebInspector.HeapSnapshotCommon.AllocationStackFrame = function(functionName, scriptName, scriptId, line, column)
106 this.scriptName = scriptName;
/external/chromium_org/third_party/icu/source/samples/layout/
H A DFontMap.cpp40 char *c, *scriptName, *fontName, *line, buffer[BUFFER_SIZE]; local
65 scriptName = strip(line);
67 if (strcmp(scriptName, "DEFAULT") == 0) {
73 le_int32 fillCount = uscript_getCode(scriptName, &scriptCode, 1, &scriptStatus);
/external/icu/icu4c/source/samples/layout/
H A DFontMap.cpp40 char *c, *scriptName, *fontName, *line, buffer[BUFFER_SIZE]; local
65 scriptName = strip(line);
67 if (strcmp(scriptName, "DEFAULT") == 0) {
73 le_int32 fillCount = uscript_getCode(scriptName, &scriptCode, 1, &scriptStatus);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
H A DAllocationProfile.js185 functionInfo.scriptName,
253 functionInfo.scriptName,
350 * @param {string} scriptName
355 WebInspector.FunctionAllocationInfo = function(functionName, scriptName, scriptId, line, column)
358 this.scriptName = scriptName;
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DLocaleToScriptMapping.cpp40 UScriptCode scriptNameToCode(const String& scriptName) argument
167 HashMap<String, UScriptCode>::iterator it = scriptNameCodeMap.find(scriptName.lower());
/external/chromium_org/third_party/icu/source/i18n/
H A Dscriptset.cpp202 const char *scriptName = uscript_getShortName((UScriptCode(i))); local
203 dest.append(UnicodeString(scriptName, -1, US_INV));
H A Dtransreg.cpp230 UnicodeString scriptName; member in class:TransliteratorSpec
265 scriptName = UnicodeString(uscript_getName(script[0]), -1, US_INV);
276 } else if (scriptName.length() != 0) {
278 top = scriptName;
307 // to the scriptName.
312 nextSpec = scriptName; // scriptName may be empty
/external/icu/icu4c/source/i18n/
H A Dscriptset.cpp202 const char *scriptName = uscript_getShortName((UScriptCode(i))); local
203 dest.append(UnicodeString(scriptName, -1, US_INV));
H A Dcoll.cpp374 char *scriptName = value; local
380 char *limit = scriptName;
385 if ((limit - scriptName) == 4) {
387 code = u_getPropertyValueEnum(UCHAR_SCRIPT, scriptName);
389 code = getReorderCode(scriptName);
397 scriptName = limit + 1;
H A Dtransreg.cpp230 UnicodeString scriptName; member in class:TransliteratorSpec
265 scriptName = UnicodeString(uscript_getName(script[0]), -1, US_INV);
276 } else if (scriptName.length() != 0) {
278 top = scriptName;
307 // to the scriptName.
312 nextSpec = scriptName; // scriptName may be empty
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DRuntime.js88 * @param {string} scriptName
90 function loadScript(scriptName)
92 var sourceURL = self._importScriptPathPrefix + scriptName;
104 self._importScriptPathPrefix += scriptName.substring(0, scriptName.lastIndexOf("/") + 1);
H A DTests.js366 var scriptName = uiSourceCodes[i].url;
368 test.assertTrue(scriptName !== uiSourceCodes[j].url, "Found script duplicates: " + test.uiSourceCodesToString_(uiSourceCodes));
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DPageScriptDebugServer.cpp259 String scriptName = toCoreStringWithUndefinedOrNullCheck(callDebuggerMethod("getScriptName", WTF_ARRAY_LENGTH(argvEventData), argvEventData));
262 String preprocessedSource = m_scriptPreprocessor->preprocessSourceCode(script, scriptName);
H A DDebuggerScript.js430 function scriptName()
489 "scriptName": scriptName,
/external/chromium_org/chrome/browser/ui/prefs/
H A Dprefs_tab_helper.cc236 const char* scriptName = &pref_name[len - kScriptNameLength]; local
237 int32 code = u_getPropertyValueEnum(UCHAR_SCRIPT, scriptName);

Completed in 514 milliseconds

12