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

1 2

  /external/webkit/WebCore/rendering/style/
StyleMarqueeData.cpp 33 , behavior(RenderStyle::initialMarqueeBehavior())
43 , behavior(o.behavior)
51 behavior == o.behavior && loops == o.loops;
StyleMarqueeData.h 51 unsigned behavior : 2; // EMarqueeBehavior
  /external/webkit/WebKit/wx/
WebSettings.cpp 133 void wxWebSettings::SetEditableLinkBehavior(wxEditableLinkBehavior behavior)
137 switch (behavior) {
159 wxEditableLinkBehavior behavior = wxEditableLinkDefaultBehavior; local
164 behavior = wxEditableLinkAlwaysLive;
167 behavior = wxEditableLinkOnlyLiveWithShiftKey;
170 behavior = wxEditableLinkLiveWhenNotFocused;
173 behavior = wxEditableLinkNeverLive;
176 behavior = wxEditableLinkDefaultBehavior;
179 return behavior;
WebSettings.h 144 void SetEditableLinkBehavior(wxEditableLinkBehavior behavior);
  /external/easymock/src/org/easymock/internal/
ReplayState.java 28 private final IMocksBehavior behavior; field in class:ReplayState
32 public ReplayState(IMocksBehavior behavior) {
33 this.behavior = behavior;
38 behavior.checkThreadSafety();
40 if (behavior.isThreadSafe()) {
57 Result result = behavior.addActual(invocation);
72 behavior.verify();
RecordState.java 37 private final IMocksBehavior behavior; field in class:RecordState
66 public RecordState(IMocksBehavior behavior) {
67 this.behavior = behavior;
137 behavior.addStub(lastInvocation, Result.createReturnResult(value));
149 behavior.addStub(
156 requireMethodCall("stub behavior");
158 behavior.addStub(lastInvocation, Result.createReturnResult(null));
166 behavior.addStub(
178 behavior.addStub(lastInvocation, Result.createThrowResult(throwable));
    [all...]
MocksControl.java 30 private IMocksBehavior behavior; field in class:MocksControl
74 behavior = new MocksBehavior(type == MockType.NICE);
75 behavior.checkOrder(type == MockType.STRICT);
76 state = new RecordState(behavior);
98 state = new ReplayState(behavior);
  /external/webkit/WebCore/platform/mac/
ThreadCheck.mm 65 void setDefaultThreadViolationBehavior(ThreadViolationBehavior behavior, ThreadViolationRound round)
73 threadViolationBehavior[round] = behavior;
  /external/webkit/WebCore/rendering/
RenderTreeAsText.cpp 73 static void writeLayers(TextStream&, const RenderLayer* rootLayer, RenderLayer*, const IntRect& paintDirtyRect, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal);
460 LayerPaintPhase paintPhase = LayerPaintPhaseAll, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal)
492 if (behavior & RenderAsTextShowCompositedLayers) {
497 UNUSED_PARAM(behavior);
507 const IntRect& paintDirtyRect, int indent, RenderAsTextBehavior behavior)
517 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : l->intersectsDamageRect(layerBounds, damageRect, rootLayer);
521 write(ts, *l, layerBounds, damageRect, clipRectToApply, outlineRect, LayerPaintPhaseBackground, indent, behavior);
525 if (behavior & RenderAsTextShowLayerNesting) {
531 writeLayers(ts, rootLayer, negList->at(i), paintDirtyRect, currIndent, behavior);
535 write(ts, *l, layerBounds, damageRect, clipRectToApply, outlineRect, paintsBackgroundSeparately ? LayerPaintPhaseForeground : LayerPaintPhaseAll, indent, behavior);
    [all...]
RenderMarquee.cpp 202 EMarqueeBehavior behavior = m_layer->renderer()->style()->marqueeBehavior(); local
203 m_start = computePosition(direction(), behavior == MALTERNATE);
204 m_end = computePosition(reverseDirection(), behavior == MALTERNATE || behavior == MSLIDE);
228 // WinIE's behavior. Someone using CSS3 can use white-space: nowrap on their own to get this effect.
  /development/simulator/wrapsim/
Android.mk 31 # library or system calls they make could lead to recursive behavior.
  /external/webkit/WebKit/mac/WebView/
WebPreferencesPrivate.h 124 - (void)setEditableLinkBehavior:(WebKitEditableLinkBehavior)behavior;
127 - (void)setTextDirectionSubmenuInclusionBehavior:(WebTextDirectionSubmenuInclusionBehavior)behavior;
WebViewPrivate.h 333 - (void)_setDashboardBehavior:(WebDashboardBehavior)behavior to:(BOOL)flag;
334 - (BOOL)_dashboardBehavior:(WebDashboardBehavior)behavior;
WebPreferences.mm 969 - (void)setEditableLinkBehavior:(WebKitEditableLinkBehavior)behavior
971 [self _setIntegerValue:behavior forKey:WebKitEditableLinkBehaviorPreferenceKey];
986 - (void)setTextDirectionSubmenuInclusionBehavior:(WebTextDirectionSubmenuInclusionBehavior)behavior
988 [self _setIntegerValue:behavior forKey:WebKitTextDirectionSubmenuInclusionBehaviorPreferenceKey];
    [all...]
  /frameworks/base/opengl/libagl/
Android.mk 43 # behavior from the bionic Android.mk file
  /external/v8/test/mjsunit/
with-prototype.js 28 // Test the behavior of an assignment in a with statement where the
array-functions-prototype.js 31 // The behavior of SpiderMonkey is slightly different for arrays (see
32 // below). Our behavior is consistent and matches the bahavior of
regexp.js 87 // Some tests from the Mozilla tests, where our behavior differs from
228 // Test that we match the KJS behavior with regard to undefined constructor
231 // KJS actually shows this as '//'. Here we match the Firefox behavior (ie,
  /external/webkit/WebCore/page/
Settings.h 318 void setEditingBehavior(EditingBehavior behavior) { m_editingBehavior = behavior; }
Settings.cpp 129 // they can't use by. Leaving enabled for now to not change existing behavior.
342 void Settings::setTextDirectionSubmenuInclusionBehavior(TextDirectionSubmenuInclusionBehavior behavior)
344 m_textDirectionSubmenuInclusionBehavior = behavior;
  /external/v8/src/
regexp.js 121 // behavior.
129 // behavior.
267 // We match the SpiderMonkey behavior: return the substring defined by the
362 // boolean. We mimic that behavior with a slight difference: in SpiderMonkey
  /external/webkit/WebKit/win/
WebPreferences.h 236 /* [retval][out] */ WebKitEditableLinkBehavior* behavior);
239 /* [in] */ WebKitEditableLinkBehavior behavior);
WebPreferences.cpp 1097 setIntegerValue(CFSTR(WebKitEditableLinkBehaviorPreferenceKey), behavior); local
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebPreferences.idl 163 HRESULT setEditableLinkBehavior([in] WebKitEditableLinkBehavior behavior);
  /external/webkit/LayoutTests/fast/js/resources/
select-options-remove.js 1 description("This test checks the behavior of the remove() method on the select.options object.");

Completed in 656 milliseconds

1 2