Searched refs:auxData (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/skia/src/gpu/
H A DGrTextContext.cpp65 void* auxData; local
68 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
69 scaler = (GrFontScaler*)auxData;
/external/skia/src/gpu/
H A DGrTextContext.cpp65 void* auxData; local
68 if (cache->getAuxProcData(GlyphCacheAuxProc, &auxData)) {
69 scaler = (GrFontScaler*)auxData;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DDOMBreakpointsSidebarPane.js130 var auxData = /** @type {!Object} */ (details.auxData);
132 if (auxData.type === this._breakpointTypes.SubtreeModified) {
133 var targetNodeObject = details.target().runtimeModel.createRemoteObject(auxData["targetNode"]);
136 this._doCreateBreakpointHitStatusMessage(auxData, domModel.nodeForId(auxData.nodeId), null, callback);
147 this._doCreateBreakpointHitStatusMessage(auxData, domModel.nodeForId(auxData.nodeId), targetNode, callback);
152 * @param {!Object} auxData
157 _doCreateBreakpointHitStatusMessage: function(auxData, nod
[all...]
/external/icu/icu4c/source/layout/
H A DLEGlyphStorage.h259 * @param auxData the auxillary data array will be copied to this address
264 void getAuxData(le_uint32 auxData[], LEErrorCode &success) const;
356 * all of the relevant glyph information ( glyph, indices, positions, and auxData ),
358 * to be set in the target glyph's auxData so that it won't be reprocessed later in the
433 * @param auxData the new auxillary data
438 void setAuxData(le_int32 glyphIndex, le_uint32 auxData, LEErrorCode &success);
H A DLEGlyphStorage.cpp330 void LEGlyphStorage::getAuxData(le_uint32 auxData[], LEErrorCode &success) const argument
336 if (auxData == NULL) {
346 LE_ARRAY_COPY(auxData, fAuxData, fGlyphCount);
368 void LEGlyphStorage::setAuxData(le_int32 glyphIndex, le_uint32 auxData, LEErrorCode &success) argument
384 fAuxData[glyphIndex] = auxData;
H A DIndicReordering.cpp292 void insertCharacter( LEUnicode ch, le_int32 toPosition, le_int32 charIndex, le_uint32 auxData ) {
305 fGlyphStorage.setAuxData(toPosition,auxData,success);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DDebuggerModel.js424 this._pausedScript(callFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData, this._debuggerPausedDetails.breakpointIds, asyncStackTrace);
466 * @param {!Object|undefined} auxData
470 _pausedScript: function(callFrames, reason, auxData, breakpointIds, asyncStackTrace)
472 this._setDebuggerPausedDetails(new WebInspector.DebuggerPausedDetails(this.target(), callFrames, reason, auxData, breakpointIds, asyncStackTrace));
705 this._pausedScript(newCallFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData, this._debuggerPausedDetails.breakpointIds, asyncStackTrace);
783 * @param {!Object=} auxData
787 paused: function(callFrames, reason, auxData, breakpointIds, asyncStackTrace)
789 this._debuggerModel._pausedScript(callFrames, reason, auxData, breakpointIds || [], asyncStackTrace);
1152 * @param {!Object|undefined} auxData
1156 WebInspector.DebuggerPausedDetails = function(target, callFrames, reason, auxData, breakpointId
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkGlyphCache.h128 void setAuxProc(void (*auxProc)(void*), void* auxData);
/external/skia/src/core/
H A DSkGlyphCache.h128 void setAuxProc(void (*auxProc)(void*), void* auxData);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DSourcesPanel.js311 WebInspector.domBreakpointsSidebarPane.highlightBreakpoint(details.auxData);
314 var eventName = details.auxData["eventName"];
315 var targetName = details.auxData["targetName"];
317 var eventNameForUI = WebInspector.EventListenerBreakpointsSidebarPane.eventNameForUI(eventName, details.auxData);
320 this.sidebarPanes.xhrBreakpoints.highlightBreakpoint(details.auxData["breakpointURL"]);
323 this.sidebarPanes.callstack.setStatus(WebInspector.UIString("Paused on exception: '%s'.", details.auxData["description"]));
327 this.sidebarPanes.callstack.setStatus(WebInspector.UIString("Paused on a script blocked due to Content Security Policy directive: \"%s\".", details.auxData["directiveText"]));
H A DBreakpointsSidebarPane.js551 * @param {!Object=} auxData
554 WebInspector.EventListenerBreakpointsSidebarPane.eventNameForUI = function(eventName, auxData)
568 if (auxData) {
569 if (eventName === "instrumentation:webglErrorFired" && auxData["webglErrorName"]) {
570 var errorName = auxData["webglErrorName"];

Completed in 199 milliseconds