HomeSort by relevance Sort by last modified time
    Searched refs:JSStringRef (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/webkit/JavaScriptCore/ForwardingHeaders/JavaScriptCore/
JSStringRef.h 1 #include <JavaScriptCore/API/JSStringRef.h>
  /external/webkit/WebKitTools/DumpRenderTree/
AccessibilityUIElement.h 84 JSStringRef allAttributes();
85 JSStringRef attributesOfLinkedUIElements();
86 JSStringRef attributesOfDocumentLinks();
87 JSStringRef attributesOfChildren();
88 JSStringRef parameterizedAttributeNames();
94 JSStringRef stringAttributeValue(JSStringRef attribute);
95 bool boolAttributeValue(JSStringRef attribute);
96 bool isAttributeSupported(JSStringRef attribute);
97 bool isAttributeSettable(JSStringRef attribute)
    [all...]
LayoutTestController.h 45 void addDisallowedURL(JSStringRef url);
49 JSStringRef copyDecodedHostName(JSStringRef name);
50 JSStringRef copyEncodedHostName(JSStringRef name);
54 void execCommand(JSStringRef name, JSStringRef value);
55 JSRetainPtr<JSStringRef> counterValueForElementById(JSStringRef id);
56 bool isCommandEnabled(JSStringRef name)
    [all...]
WorkQueueItem.h 43 LoadItem(const JSStringRef url, const JSStringRef target)
52 JSRetainPtr<JSStringRef> m_url;
53 JSRetainPtr<JSStringRef> m_target;
63 ScriptItem(const JSStringRef script)
72 JSRetainPtr<JSStringRef> m_script;
77 LoadingScriptItem(const JSStringRef script)
88 NonLoadingScriptItem(const JSStringRef script)
AccessibilityUIElement.cpp 41 JSRetainPtr<JSStringRef> attributes(Adopt, toAXElement(thisObject)->allAttributes());
47 JSRetainPtr<JSStringRef> linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfLinkedUIElements());
53 JSRetainPtr<JSStringRef> linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfDocumentLinks());
59 JSRetainPtr<JSStringRef> childrenDescription(Adopt, toAXElement(thisObject)->attributesOfChildren());
65 JSRetainPtr<JSStringRef> parameterizedAttributeNames(Adopt, toAXElement(thisObject)->parameterizedAttributeNames());
71 JSRetainPtr<JSStringRef> attributesOfColumnHeaders(Adopt, toAXElement(thisObject)->attributesOfColumnHeaders());
77 JSRetainPtr<JSStringRef> attributesOfRowHeaders(Adopt, toAXElement(thisObject)->attributesOfRowHeaders());
83 JSRetainPtr<JSStringRef> attributesOfColumns(Adopt, toAXElement(thisObject)->attributesOfColumns());
89 JSRetainPtr<JSStringRef> attributesOfRows(Adopt, toAXElement(thisObject)->attributesOfRows());
95 JSRetainPtr<JSStringRef> attributesOfVisibleCells(Adopt, toAXElement(thisObject)->attributesOfVisibleCells())
    [all...]
  /external/webkit/JavaScriptCore/API/
JSStringRef.h 58 JS_EXPORT JSStringRef JSStringCreateWithCharacters(const JSChar* chars, size_t numChars);
65 JS_EXPORT JSStringRef JSStringCreateWithUTF8CString(const char* string);
73 JS_EXPORT JSStringRef JSStringRetain(JSStringRef string);
79 JS_EXPORT void JSStringRelease(JSStringRef string);
87 JS_EXPORT size_t JSStringGetLength(JSStringRef string);
96 JS_EXPORT const JSChar* JSStringGetCharactersPtr(JSStringRef string);
108 JS_EXPORT size_t JSStringGetMaximumUTF8CStringSize(JSStringRef string);
122 JS_EXPORT size_t JSStringGetUTF8CString(JSStringRef string, char* buffer, size_t bufferSize);
131 JS_EXPORT bool JSStringIsEqual(JSStringRef a, JSStringRef b)
    [all...]
JSStringRefBSTR.cpp 32 #include "JSStringRef.h"
34 JSStringRef JSStringCreateWithBSTR(BSTR string)
39 BSTR JSStringCopyBSTR(const JSStringRef string)
JSStringRefBSTR.h 48 JS_EXPORT JSStringRef JSStringCreateWithBSTR(const BSTR string);
56 JS_EXPORT BSTR JSStringCopyBSTR(const JSStringRef string);
JSStringRefCF.h 46 JS_EXPORT JSStringRef JSStringCreateWithCFString(CFStringRef string);
54 JS_EXPORT CFStringRef JSStringCopyCFString(CFAllocatorRef alloc, JSStringRef string);
JSStringRef.cpp 27 #include "JSStringRef.h"
36 JSStringRef JSStringCreateWithCharacters(const JSChar* chars, size_t numChars)
42 JSStringRef JSStringCreateWithUTF8CString(const char* string)
57 JSStringRef JSStringRetain(JSStringRef string)
63 void JSStringRelease(JSStringRef string)
68 size_t JSStringGetLength(JSStringRef string)
73 const JSChar* JSStringGetCharactersPtr(JSStringRef string)
78 size_t JSStringGetMaximumUTF8CStringSize(JSStringRef string)
84 size_t JSStringGetUTF8CString(JSStringRef string, char* buffer, size_t bufferSize
    [all...]
JSProfilerPrivate.cpp 35 void JSStartProfiling(JSContextRef ctx, JSStringRef title)
40 void JSEndProfiling(JSContextRef ctx, JSStringRef title)
JSProfilerPrivate.h 46 JS_EXPORT void JSStartProfiling(JSContextRef ctx, JSStringRef title);
57 JS_EXPORT void JSEndProfiling(JSContextRef ctx, JSStringRef title);
JSBase.h 44 /*! @typedef JSStringRef A UTF16 character buffer. The fundamental string representation in JavaScript. */
45 typedef struct OpaqueJSString* JSStringRef;
99 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
111 JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
JavaScript.h 32 #include <JavaScriptCore/JSStringRef.h>
JSObjectRef.h 121 bool HasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
130 (*JSObjectHasPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
142 JSValueRef GetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
147 (*JSObjectGetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
160 bool SetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception);
165 (*JSObjectSetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception);
177 bool DeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
182 (*JSObjectDeletePropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
420 JS_EXPORT JSObjectRef JSObjectMakeFunctionWithCallback(JSContextRef ctx, JSStringRef name, JSObjectCallAsFunctionCallback callAsFunction);
493 JS_EXPORT JSObjectRef JSObjectMakeFunction(JSContextRef ctx, JSStringRef name, unsigned parameterCount, const JSStringRef parameterNames[], JSStringRef body, JSStringRef s (…)
    [all...]
JSStringRefCF.cpp 31 #include "JSStringRef.h"
37 JSStringRef JSStringCreateWithCFString(CFStringRef string)
54 CFStringRef JSStringCopyCFString(CFAllocatorRef alloc, JSStringRef string)
  /external/webkit/WebKitTools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 36 #include <JavaScriptCore/JSStringRef.h>
45 void LayoutTestController::addDisallowedURL(JSStringRef url)
54 JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name)
60 JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name)
87 JSStringRef LayoutTestController::pathToLocalResource(JSContextRef context, JSStringRef url)
93 void LayoutTestController::queueLoad(JSStringRef url, JSStringRef target
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
AccessibilityUIElementGtk.cpp 30 #include <JavaScriptCore/JSStringRef.h>
111 JSStringRef AccessibilityUIElement::allAttributes()
117 JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements()
123 JSStringRef AccessibilityUIElement::attributesOfDocumentLinks()
143 JSStringRef AccessibilityUIElement::attributesOfChildren()
149 JSStringRef AccessibilityUIElement::parameterizedAttributeNames()
155 JSStringRef AccessibilityUIElement::role()
165 JSStringRef AccessibilityUIElement::subrole()
170 JSStringRef AccessibilityUIElement::roleDescription()
175 JSStringRef AccessibilityUIElement::title(
    [all...]
LayoutTestControllerGtk.cpp 40 #include <JavaScriptCore/JSStringRef.h>
84 void LayoutTestController::addDisallowedURL(JSStringRef url)
106 JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name)
112 JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name)
128 JSRetainPtr<JSStringRef> LayoutTestController::counterValueForElementById(JSStringRef id)
135 JSRetainPtr<JSStringRef> counterValue(Adopt, JSStringCreateWithUTF8CString(counterValueGChar));
144 int LayoutTestController::pageNumberForElementById(JSStringRef id, float pageWidth, float pageHeight
    [all...]
DumpRenderTreeGtk.h 43 gchar* JSStringCopyUTF8CString(JSStringRef jsString);
  /external/webkit/JavaScriptCore/qt/api/
qscriptconverter_p.h 36 static QString toString(const JSStringRef str)
40 static JSStringRef toString(const QString& str)
44 static JSStringRef toString(const char* str)
qscriptengine_p.cpp 47 JSStringRef script = QScriptConverter::toString(program);
48 JSStringRef file = QScriptConverter::toString(fileName);
  /external/webkit/WebKitTools/DumpRenderTree/win/
AccessibilityUIElementWin.cpp 32 #include <JavaScriptCore/JSStringRef.h>
110 JSStringRef AccessibilityUIElement::allAttributes()
115 JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements()
120 JSStringRef AccessibilityUIElement::attributesOfDocumentLinks()
139 JSStringRef AccessibilityUIElement::attributesOfChildren()
144 JSStringRef AccessibilityUIElement::parameterizedAttributeNames()
162 JSStringRef AccessibilityUIElement::role()
187 JSStringRef AccessibilityUIElement::subrole()
192 JSStringRef AccessibilityUIElement::roleDescription()
197 JSStringRef AccessibilityUIElement::title(
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 39 #import <JavaScriptCore/JSStringRef.h>
104 void LayoutTestController::addDisallowedURL(JSStringRef url)
138 JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name)
145 JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name)
157 JSRetainPtr<JSStringRef> LayoutTestController::counterValueForElementById(JSStringRef id)
166 JSRetainPtr<JSStringRef> counterValue(Adopt, JSStringCreateWithCFString((CFStringRef)[mainFrame counterValueForElement:element]));
179 int LayoutTestController::pageNumberForElementById(JSStringRef id, float pageWidthInPixels, float pageHeightInPixels
    [all...]
  /external/webkit/WebCore/inspector/
JavaScriptProfileNode.cpp 37 #include <JavaScriptCore/JSStringRef.h>
56 static JSValueRef getFunctionName(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
62 JSRetainPtr<JSStringRef> functionNameString(Adopt, JSStringCreateWithCharacters(profileNode->functionName().data(), profileNode->functionName().size()));
66 static JSValueRef getURL(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
72 JSRetainPtr<JSStringRef> urlString(Adopt, JSStringCreateWithCharacters(profileNode->url().data(), profileNode->url().size()));
76 static JSValueRef getLineNumber(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
85 static JSValueRef getTotalTime(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
96 static JSValueRef getSelfTime(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
107 static JSValueRef getNumberOfCalls(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef*)
118 static JSValueRef getChildren(JSContextRef ctx, JSObjectRef thisObject, JSStringRef, JSValueRef* exception
    [all...]

Completed in 203 milliseconds

1 2 3