Searched refs:behavior (Results 1 - 25 of 139) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleMarqueeData.cpp33 , behavior(RenderStyle::initialMarqueeBehavior())
43 , behavior(o.behavior)
51 behavior == o.behavior && loops == o.loops;
H A DStyleMarqueeData.h51 unsigned behavior : 2; // EMarqueeBehavior
/external/easymock/src/org/easymock/internal/
H A DReplayState.java28 private final IMocksBehavior behavior; field in class:ReplayState
32 public ReplayState(IMocksBehavior behavior) { argument
33 this.behavior = behavior;
38 behavior.checkThreadSafety();
40 if (behavior.isThreadSafe()) {
57 Result result = behavior.addActual(invocation);
72 behavior.verify();
H A DRecordState.java37 private final IMocksBehavior behavior; field in class:RecordState
66 public RecordState(IMocksBehavior behavior) { argument
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
[all...]
H A DMocksControl.java30 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/chromium_org/third_party/ots/src/
H A Dgasp.cc43 uint16_t behavior = 0; local
45 !table.ReadU16(&behavior)) {
63 if (behavior >> 8) {
64 OTS_WARNING("undefined bits are used: %x", behavior);
66 behavior &= 0x000fu;
69 if (gasp->version == 0 && (behavior >> 2) != 0) {
74 gasp->gasp_ranges.push_back(std::make_pair(max_ppem, behavior));
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/
H A Drule_list.css13 .rule-behavior {
18 select.rule-behavior {
/external/chromium/chrome/browser/instant/
H A Dinstant_delegate.h42 InstantCompleteBehavior behavior) = 0;
H A Dinstant_loader_delegate.h30 InstantCompleteBehavior behavior) = 0;
/external/chromium_org/chrome/browser/ui/startup/
H A Dsession_crashed_infobar_delegate.cc74 uint32 behavior = 0; local
83 behavior = SessionRestore::CLOBBER_CURRENT_TAB;
87 browser->host_desktop_type(), behavior,
/external/chromium_org/tools/gen_keyboard_overlay_data/
H A Dgen_keyboard_overlay_data.py179 def SplitBehavior(behavior):
180 """Splits the behavior to compose a message or i18n-content value.
186 return [x for x in re.split('[ ()"-.,]', behavior) if len(x) > 0]
189 def ToMessageName(behavior):
196 segments = [segment.upper() for segment in SplitBehavior(behavior)]
210 def Toi18nContent(behavior):
217 segments = [segment.lower() for segment in SplitBehavior(behavior)]
392 hotkey_cols = ['behavior', 'context', 'kind', 'actionctrlctrlcmdonmac',
398 # (behavior, action)
406 behavior
[all...]
/external/chromium_org/chrome/test/functional/
H A Dprefs.py111 behavior = self._driver.execute_async_script(
114 behavior, Behaviors.BLOCK,
115 msg='Behavior is "%s" when it should be BLOCKED.' % behavior)
118 """Verify hostname pattern and behavior for allowed tracking."""
156 behavior = self._driver.execute_async_script(
159 behavior, Behaviors.BLOCK,
160 msg='Behavior is "%s" when it should be BLOCKED.' % behavior)
199 pattern, behavior = (url, Behaviors.BLOCK)
201 page.AddNewException(pattern, behavior)
211 pattern, behavior
[all...]
H A Dprefs_ui.py37 """Get the Content Settings behavior for Geolocation.
40 The exceptions behavior for the specified content type.
48 msg=('Invalid default behavior key "%s" for "geolocation" content' %
52 def _VerifyContentExceptionUI(self, content_type, hostname_pattern, behavior,
54 """Find hostname pattern and behavior within UI on content exceptions page.
58 hostname_pattern: The URL or pattern associated with the behavior.
59 behavior: The exception to allow or block the hostname.
68 self.assertEqual(behavior, page.GetExceptions(incognito)[hostname_pattern],
69 msg=('Displayed behavior "%s" does not match behavior "
[all...]
/external/chromium_org/chrome/browser/chromeos/login/
H A Dmulti_profile_user_controller.cc132 const std::string behavior = GetCachedValue(user_email); local
133 return behavior == kBehaviorUnrestricted;
174 const std::string& behavior) {
178 SanitizeBehaviorValue(behavior));
200 // Migration code to clear cached default behavior.
206 const std::string behavior = local
208 SetCachedValue(user_email, behavior);
172 SetCachedValue( const std::string& user_email, const std::string& behavior) argument
H A Dmulti_profile_user_controller.h28 // multi-profiles session. It caches the multiprofile user behavior pref backed
43 // Starts to observe the multiprofile user behavior pref of the given profile.
49 // Possible behavior values.
60 const std::string& behavior);
65 // Invoked when user behavior pref value changes.
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DDirectiveHandlerBase.h36 const std::string& behavior) = 0;
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A DMockDirectiveHandler.h27 const std::string& behavior));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTreeAsText.cpp162 void RenderTreeAsText::writeRenderObject(TextStream& ts, const RenderObject& o, RenderAsTextBehavior behavior) argument
166 if (behavior & RenderAsTextShowAddresses)
351 if (behavior & RenderAsTextShowIDAndClass) {
369 if (behavior & RenderAsTextShowLayoutState) {
430 void write(TextStream& ts, const RenderObject& o, int indent, RenderAsTextBehavior behavior) argument
467 RenderTreeAsText::writeRenderObject(ts, o, behavior);
481 write(ts, *child, indent + 1, behavior);
493 RenderTreeAsText::writeLayers(ts, l, l, l->rect(), indent + 1, behavior);
507 LayerPaintPhase paintPhase = LayerPaintPhaseAll, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal)
521 if (behavior
619 writeRenderNamedFlowThreads(TextStream& ts, RenderView* renderView, const RenderLayer* rootLayer, const LayoutRect& paintRect, int indent, RenderAsTextBehavior behavior) argument
656 writeLayers(TextStream& ts, const RenderLayer* rootLayer, RenderLayer* layer, const LayoutRect& paintRect, int indent, RenderAsTextBehavior behavior) argument
782 externalRepresentation(RenderBox* renderer, RenderAsTextBehavior behavior) argument
794 externalRepresentation(Frame* frame, RenderAsTextBehavior behavior) argument
810 externalRepresentation(Element* element, RenderAsTextBehavior behavior) argument
[all...]
H A DRenderTreeAsText.h64 static void writeRenderObject(TextStream& ts, const RenderObject& o, RenderAsTextBehavior behavior);
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_service_factory.cc88 ProfileSyncService::StartBehavior behavior = local
110 behavior);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMarqueeElement.idl24 [Reflect] attribute DOMString behavior;
/external/chromium_org/chrome/browser/sessions/
H A Dsession_restore.h41 // Restores the last session. |behavior| is a bitmask of Behaviors, see it
52 uint32 behavior,
/external/chromium_org/third_party/angle/src/compiler/
H A DDirectiveHandler.h35 const std::string& behavior);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dglsl_parser_extras.cpp252 * when the shader requests "warn" behavior for this extension.
261 void set_flags(_mesa_glsl_parse_state *state, ext_behavior behavior) const;
349 * given behavior for this extension.
352 ext_behavior behavior) const
358 state->*(this->enable_flag) = (behavior != extension_disable);
359 state->*(this->warn_flag) = (behavior == extension_warn);
382 ext_behavior behavior; local
384 behavior = extension_warn;
386 behavior = extension_require;
388 behavior
[all...]
/external/mesa3d/src/glsl/
H A Dglsl_parser_extras.cpp252 * when the shader requests "warn" behavior for this extension.
261 void set_flags(_mesa_glsl_parse_state *state, ext_behavior behavior) const;
349 * given behavior for this extension.
352 ext_behavior behavior) const
358 state->*(this->enable_flag) = (behavior != extension_disable);
359 state->*(this->warn_flag) = (behavior == extension_warn);
382 ext_behavior behavior; local
384 behavior = extension_warn;
386 behavior = extension_require;
388 behavior
[all...]

Completed in 512 milliseconds

123456