Searched defs:behavior (Results 1 - 25 of 62) sorted by relevance

123

/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/browser/sync/
H A Dprofile_sync_service_factory.cc132 browser_sync::ProfileSyncServiceStartBehavior behavior = local
146 behavior);
H A Dstartup_controller_unittest.cc64 ProfileSyncServiceStartBehavior behavior = variable
68 controller_.reset(new StartupController(behavior, token_service(),
H A Dprofile_sync_service_unittest.cc212 void CreateService(ProfileSyncServiceStartBehavior behavior) { argument
225 behavior));
H A Dtest_profile_sync_service.cc111 browser_sync::ProfileSyncServiceStartBehavior behavior)
118 behavior) {
106 TestProfileSyncService( scoped_ptr<ProfileSyncComponentsFactory> factory, Profile* profile, SigninManagerBase* signin, ProfileOAuth2TokenService* oauth2_token_service, browser_sync::ProfileSyncServiceStartBehavior behavior) argument
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DDirectiveHandler.cpp90 const std::string& behavior)
94 TBehavior behaviorVal = getBehavior(behavior);
98 "behavior", name, "invalid");
108 "cannot have 'require' behavior");
114 "cannot have 'enable' behavior");
88 handleExtension(const pp::SourceLocation& loc, const std::string& name, const std::string& behavior) argument
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_gasp.h32 union behavior { union in struct:SkOTTableGridAndScanProcedure::GaspRange
/external/skia/src/sfnt/
H A DSkOTTable_gasp.h32 union behavior { union in struct:SkOTTableGridAndScanProcedure::GaspRange
/external/chromium_org/third_party/d3/src/
H A Dd3.js388 d3.behavior = {};
1113 d3.behavior.drag = function() {
1211 d3.behavior.zoom = function() {
6312 if (!drag) drag = d3.behavior.drag().origin(d3_identity).on("dragstart.force", d3_layout_forceDragstart).on("drag.force", dragmove).on("dragend.force", d3_layout_forceDragend);
/external/chromium_org/chrome/browser/chromeos/login/users/
H A Dmulti_profile_user_controller.cc121 const std::string behavior = profile->GetPrefs()->GetString( local
123 if (behavior == kBehaviorNotAllowed)
159 const std::string behavior = GetCachedValue(user_email); local
162 behavior == kBehaviorUnrestricted ? ALLOWED : NOT_ALLOWED_POLICY_FORBIDS);
203 const std::string& behavior) {
207 SanitizeBehaviorValue(behavior));
232 // Migration code to clear cached default behavior.
238 const std::string behavior = local
240 SetCachedValue(user_email, behavior);
201 SetCachedValue( const std::string& user_email, const std::string& behavior) argument
H A Dmulti_profile_user_controller_unittest.cc173 void SetPrefBehavior(size_t user_index, const std::string& behavior) { argument
175 behavior);
183 const std::string& behavior) {
184 controller_->SetCachedValue(kUsers[user_index], behavior);
245 // Tests that cached behavior value changes with user pref after login.
300 // Tests user behavior changes within a two-user session.
182 SetCachedBehavior(size_t user_index, const std::string& behavior) argument
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_navigation_observer.cc189 SupervisedUserURLFilter::FilteringBehavior behavior = local
192 if (behavior == SupervisedUserURLFilter::WARN && !warn_infobar_) {
195 } else if (behavior != SupervisedUserURLFilter::WARN && warn_infobar_) {
H A Dsupervised_user_url_filter.cc293 // If there's no blacklist and the default behavior is to allow, we don't need
312 // Fall back to the default behavior.
343 FilteringBehavior behavior) {
345 default_behavior_ = behavior;
342 SetDefaultFilteringBehavior( FilteringBehavior behavior) argument
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DWindowProxy.cpp90 void WindowProxy::disposeContext(GlobalDetachmentBehavior behavior) argument
99 if (behavior == DetachGlobal)
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMarquee.cpp193 EMarqueeBehavior behavior = style()->marqueeBehavior(); local
194 m_start = computePosition(direction(), behavior == MALTERNATE);
195 m_end = computePosition(reverseDirection(), behavior == MALTERNATE || behavior == MSLIDE);
237 // WinIE's behavior. Someone using CSS3 can use white-space: nowrap on their own to get this effect.
/external/chromium_org/third_party/skia/src/gpu/
H A DGrResourceCache.cpp140 BudgetBehaviors behavior) {
144 if (kIgnore_BudgetBehavior == behavior) {
158 SkASSERT(kAccountFor_BudgetBehavior == behavior);
166 BudgetBehaviors behavior) {
170 if (kIgnore_BudgetBehavior == behavior) {
174 SkASSERT(kAccountFor_BudgetBehavior == behavior);
139 internalDetach(GrResourceCacheEntry* entry, BudgetBehaviors behavior) argument
165 attachToHead(GrResourceCacheEntry* entry, BudgetBehaviors behavior) argument
/external/easymock/src/org/easymock/internal/
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);
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 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();
/external/skia/src/gpu/
H A DGrResourceCache.cpp140 BudgetBehaviors behavior) {
144 if (kIgnore_BudgetBehavior == behavior) {
158 SkASSERT(kAccountFor_BudgetBehavior == behavior);
166 BudgetBehaviors behavior) {
170 if (kIgnore_BudgetBehavior == behavior) {
174 SkASSERT(kAccountFor_BudgetBehavior == behavior);
139 internalDetach(GrResourceCacheEntry* entry, BudgetBehaviors behavior) argument
165 attachToHead(GrResourceCacheEntry* entry, BudgetBehaviors behavior) argument
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Duser_selection_screen.cc151 std::string behavior; local
154 behavior = MultiProfileUserController::kBehaviorOwnerPrimaryOnly;
157 behavior = multi_profile_user_controller->GetCachedValue(user_id);
159 user_dict->SetString(kKeyMultiProfilesPolicy, behavior);
/external/chromium_org/chromeos/dbus/
H A Dfake_shill_service_client.cc502 const base::Closure& behavior) {
503 connect_behavior_[service_path] = behavior;
606 VLOG(1) << "Running custom connect behavior for " << service_path;
611 // No custom connect behavior set, continue with the default connect behavior.
501 SetConnectBehavior(const std::string& service_path, const base::Closure& behavior) argument
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollableArea.cpp224 bool ScrollableArea::scrollBehaviorFromString(const String& behaviorString, ScrollBehavior& behavior) argument
227 behavior = ScrollBehaviorAuto;
229 behavior = ScrollBehaviorInstant;
231 behavior = ScrollBehaviorSmooth;
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DDirectiveParser.cpp646 std::string name, behavior; local
678 if (valid) behavior = token->text;
698 mDirectiveHandler->handleExtension(token->location, name, behavior);
/external/chromium_org/ash/wm/panels/
H A Dpanel_layout_manager_unittest.cc241 ShelfAutoHideBehavior behavior) {
245 shelf->SetAutoHideBehavior(behavior);
240 SetShelfAutoHideBehavior(aura::Window* window, ShelfAutoHideBehavior behavior) argument

Completed in 1229 milliseconds

123