Home
last modified time | relevance | path

Searched refs:Custom (Results 1 – 25 of 238) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInjectedScriptHost.idl38 [Custom] void inspect(any objectId, any hints);
39 [Custom] any inspectedObject(long num);
40 [Custom] any internalConstructorName(any obj);
41 [Custom] boolean isHTMLAllCollection(any obj);
42 [Custom] DOMString type(any obj);
43 [Custom] any functionDetails(any obj);
44 [Custom] Array getInternalProperties(any obj);
45 [Custom] Array getEventListeners(Node node);
46 [Custom] any evaluate(DOMString text);
47 [Custom] DOMString databaseId(any database);
[all …]
DJavaScriptCallFrame.idl38 [Custom] void evaluate(DOMString script);
39 [Custom] any restart();
48 [Custom=Getter] readonly attribute object scopeChain;
49 [Custom] unsigned short scopeType(long scopeIndex);
50 [Custom=Getter] readonly attribute object thisObject;
53 [Custom=Getter] readonly attribute DOMString type;
55 [Custom=Getter] readonly attribute any returnValue;
DInspectorFrontendHost.idl43 [Custom] DOMString platform();
44 [Custom] DOMString port();
45 [Custom] void showContextMenu(MouseEvent event, any items);
49 [Custom] void recordActionTaken(unsigned long actionCode);
50 [Custom] void recordPanelShown(unsigned long panelCode);
51 [Custom] void recordSettingChanged(unsigned long settingChanged);
/external/chromium_org/third_party/WebKit/Source/core/dom/
DPromise.idl37 [Custom] Promise then(optional AnyCallback fulfillCallback, optional AnyCallback rejectCallback);
38 [Custom] Promise catch(optional AnyCallback rejectCallback);
40 [Custom] static Promise resolve(any value);
41 [Custom] static Promise reject(any value);
43 [Custom] static Promise cast(any value);
44 [Custom] static Promise race(any iterable);
45 [Custom] static Promise all(any iterable);
DNode.idl22 Custom=Wrap,
52 …[Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesExcept…
53 …[Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesExcept…
54 …[Custom, CustomElementCallbacks, PerWorldBindings, RaisesException] Node removeChild(Node oldChild…
55 …[Custom, CustomElementCallbacks, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesExcept…
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
DTestCustomAccessors.idl31 [Custom, NotEnumerable] getter boolean (unsigned long index);
32 [Custom] setter boolean (unsigned long index, Node value);
33 [Custom] deleter boolean (unsigned long index);
34 [Custom, CustomEnumerateProperty] getter Node (DOMString name);
35 [Custom] setter Node (DOMString name, Node value);
36 [Custom] deleter boolean (DOMString name);
DTestObjectPython.idl88 // Custom type conversions
137 [Custom] attribute object customObjectAttribute;
138 [Custom=Getter] attribute long customGetterLongAttribute;
139 [Custom=Getter] readonly attribute object customGetterReadonlyObjectAttribute;
140 [Custom=Setter] attribute long customSetterLongAttribute;
141 [Conditional=CONDITION, Custom] attribute long customLongAttribute;
148 …[Custom, ImplementedAs=implementedAsNameWithCustom] attribute long customImplementedAsLongAttribut…
149 …[Custom=Getter, ImplementedAs=implementedAsNameWithCustomGetter] attribute long customGetterImplem…
150 …[Custom=Setter, ImplementedAs=implementedAsNameWithCustomGetter] attribute long customSetterImplem…
230 // Custom type conversions
[all …]
DTestInterfacePython2.idl36Custom=VisitDOMWrapper|Wrap, // Conflict with [GenerateVisitDOMWrapper] and [Custom=ToV8], respec…
38 SpecialWrapFor=Interface1|Interface2, // Conflicts with [Custom=ToV8]
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLEmbedElement.idl22 Custom=LegacyCallAsFunction,
30 [Custom, NotEnumerable] getter boolean (unsigned long index);
31 [Custom] setter boolean (unsigned long index, Node value);
32 [Custom, NotEnumerable] getter Node (DOMString name);
33 [Custom] setter Node (DOMString name, Node value);
DHTMLAppletElement.idl22 Custom=LegacyCallAsFunction,
35 [Custom, NotEnumerable] getter boolean (unsigned long index);
36 [Custom] setter boolean (unsigned long index, Node value);
37 [Custom, NotEnumerable] getter Node (DOMString name);
38 [Custom] setter Node (DOMString name, Node value);
DHTMLObjectElement.idl22 Custom=LegacyCallAsFunction,
49 [Custom, NotEnumerable] getter boolean (unsigned long index);
50 [Custom] setter boolean (unsigned long index, Node value);
51 [Custom, NotEnumerable] getter Node (DOMString name);
52 [Custom] setter Node (DOMString name, Node value);
DHTMLOptionsCollection.idl27 [Custom=Setter, RaisesException=Setter] attribute unsigned long length;
32 [Custom] Node namedItem([Default=Undefined] optional DOMString name);
34 [Custom, RaisesException] void add([Default=Undefined] optional HTMLOptionElement option,
DHTMLAllCollection.idl27 Custom=LegacyCallAsFunction,
33 [Custom] Node item([Default=Undefined] optional unsigned long index);
35 [Custom] Node namedItem(DOMString name);
/external/flac/libFLAC/
DlibFLAC_static.dsp96 # Begin Custom Build
102 # End Custom Build
107 # Begin Custom Build
113 # End Custom Build
125 # Begin Custom Build
131 # End Custom Build
136 # Begin Custom Build
142 # End Custom Build
154 # Begin Custom Build
160 # End Custom Build
[all …]
DlibFLAC_dynamic.dsp103 # Begin Custom Build
109 # End Custom Build
114 # Begin Custom Build
120 # End Custom Build
132 # Begin Custom Build
138 # End Custom Build
143 # Begin Custom Build
149 # End Custom Build
161 # Begin Custom Build
167 # End Custom Build
[all …]
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
DTimingFunctionTestHelper.cpp117 case CubicBezierTimingFunction::Custom: in PrintTo()
140 case StepsTimingFunction::Custom: in PrintTo()
197 …(lhs.subType() == CubicBezierTimingFunction::Custom) && (ctf.subType() == CubicBezierTimingFunctio… in operator ==()
209 …if ((lhs.subType() == StepsTimingFunction::Custom) && (stf.subType() == StepsTimingFunction::Custo… in operator ==()
DTimingFunction.h101 Custom enumerator
106 return adoptRef(new CubicBezierTimingFunction(Custom, x1, y1, x2, y2)); in create()
180 Custom enumerator
185 return adoptRef(new StepsTimingFunction(Custom, steps, stepAtStart)); in create()
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DWebGLRenderingContext.idl534 [StrictTypeChecking, Custom] void getAttachedShaders(WebGLProgram program);
538 [StrictTypeChecking, Custom] any getBufferParameter(GLenum target, GLenum pname);
545 [StrictTypeChecking, Custom] any getExtension(DOMString name);
547 …[StrictTypeChecking, Custom] any getFramebufferAttachmentParameter(GLenum target, GLenum attachmen…
548 [StrictTypeChecking, Custom] any getParameter(GLenum pname);
549 [StrictTypeChecking, Custom] any getProgramParameter(WebGLProgram program, GLenum pname);
551 [StrictTypeChecking, Custom] any getRenderbufferParameter(GLenum target, GLenum pname);
552 [StrictTypeChecking, Custom] any getShaderParameter(WebGLShader shader, GLenum pname);
560 [StrictTypeChecking, Custom] sequence<DOMString> getSupportedExtensions();
562 [StrictTypeChecking, Custom] any getTexParameter(GLenum target, GLenum pname);
[all …]
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp92 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom); in AArch64TargetLowering()
93 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom); in AArch64TargetLowering()
97 setOperationAction(ISD::BR_CC, MVT::i32, Custom); in AArch64TargetLowering()
98 setOperationAction(ISD::BR_CC, MVT::i64, Custom); in AArch64TargetLowering()
99 setOperationAction(ISD::BR_CC, MVT::f32, Custom); in AArch64TargetLowering()
100 setOperationAction(ISD::BR_CC, MVT::f64, Custom); in AArch64TargetLowering()
102 setOperationAction(ISD::SELECT, MVT::i32, Custom); in AArch64TargetLowering()
103 setOperationAction(ISD::SELECT, MVT::i64, Custom); in AArch64TargetLowering()
104 setOperationAction(ISD::SELECT, MVT::f32, Custom); in AArch64TargetLowering()
105 setOperationAction(ISD::SELECT, MVT::f64, Custom); in AArch64TargetLowering()
[all …]
/external/llvm/lib/Target/Mips/
DMipsSEISelLowering.cpp92 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Custom); in MipsSETargetLowering()
93 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Custom); in MipsSETargetLowering()
94 setOperationAction(ISD::MULHS, MVT::i32, Custom); in MipsSETargetLowering()
95 setOperationAction(ISD::MULHU, MVT::i32, Custom); in MipsSETargetLowering()
98 setOperationAction(ISD::MULHS, MVT::i64, Custom); in MipsSETargetLowering()
99 setOperationAction(ISD::MULHU, MVT::i64, Custom); in MipsSETargetLowering()
100 setOperationAction(ISD::MUL, MVT::i64, Custom); in MipsSETargetLowering()
103 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::i64, Custom); in MipsSETargetLowering()
104 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom); in MipsSETargetLowering()
106 setOperationAction(ISD::SDIVREM, MVT::i32, Custom); in MipsSETargetLowering()
[all …]
/external/llvm/lib/Target/R600/
DAMDILInstrInfo.td14 // Custom Operands
19 // Custom Selection DAG Type Profiles
44 // Custom Selection DAG Nodes
70 // Custom Pattern DAG Nodes
DR600ISelLowering.cpp50 setOperationAction(ISD::FCOS, MVT::f32, Custom); in R600TargetLowering()
51 setOperationAction(ISD::FSIN, MVT::f32, Custom); in R600TargetLowering()
61 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom); in R600TargetLowering()
62 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); in R600TargetLowering()
63 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::i1, Custom); in R600TargetLowering()
65 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); in R600TargetLowering()
66 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); in R600TargetLowering()
70 setOperationAction(ISD::FP_TO_UINT, MVT::i1, Custom); in R600TargetLowering()
72 setOperationAction(ISD::SELECT, MVT::i32, Custom); in R600TargetLowering()
73 setOperationAction(ISD::SELECT, MVT::f32, Custom); in R600TargetLowering()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXMLHttpRequest.idl59 …[Custom, ActivityLogging=ForAllWorlds, RaisesException] void open(DOMString method, DOMString url,…
63 [Custom, RaisesException] void send();
72 …[Custom=Getter, RaisesException=Getter] readonly attribute DOMString responseText; // The custom g…
76 [Custom=Getter, RaisesException=Getter] readonly attribute object response;
/external/chromium_org/third_party/WebKit/Source/core/frame/
DHistory.idl28 [Custom=Getter] readonly attribute SerializedScriptValue state;
34 …[Custom, PerContextEnabled=PushState, RaisesException] void pushState(any data, DOMString title, o…
35 …[Custom, PerContextEnabled=PushState, RaisesException] void replaceState(any data, DOMString title…
DWindow.idl32 Custom=ToV8,
47 [Custom, MeasureAs=WindowEvent, NotEnumerable] attribute Event event;
51 [CheckSecurity=Node, Custom=Getter] readonly attribute Element frameElement;
60 [Custom] Window open(DOMString url,
64 [Custom] any showModalDialog(DOMString url,
120 [DoNotCheckSecurity, Custom=Setter] attribute Window opener;
161 …[DoNotCheckSecurity, Custom, RaisesException] void postMessage(SerializedScriptValue message, DOMS…
233 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString toString();
236 [Custom, NotEnumerable] getter Window (DOMString name);

12345678910