/external/chromium_org/ash/ |
screen_ash_unittest.cc | 35 views::Widget* secondary = views::Widget::CreateWindowWithContextAndBounds( local 37 secondary->Show(); 45 secondary->GetNativeView()).ToString()); 53 secondary->GetNativeView()).ToString()); 61 secondary->GetNativeView()).ToString()); 64 // Test verifies a stable handling of secondary screen widget changes 71 views::Widget* secondary = views::Widget::CreateWindowWithContextAndBounds( local 74 secondary->GetNativeView()->GetRootWindow()); 75 secondary->Show(); 76 secondary->Maximize() 92 views::Widget* secondary = views::Widget::CreateWindowWithContextAndBounds( local [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
TwoButtonInfoBar.java | 39 Button secondary = (Button) wrapper.findViewById(R.id.button_secondary); local 41 if (secondary != null) secondary.setEnabled(state);
|
/external/chromium_org/chrome/browser/ui/app_list/search/ |
history_data.h | 25 // search result id. There are two types of association: primary and secondary. 26 // Primary is a 1-to-1 mapping between the query and result id. Secondary 30 // secondary. However, if a secondary association is added twice in a row, it 32 // secondary. 45 // Secondary results associated with the query from oldest to latest. 46 SecondaryDeque secondary; member in struct:app_list::HistoryData::Data 55 // to keep. |max_secondary| is the maximum number of secondary associations to
|
history_data.cc | 72 SecondaryDeque& secondary = data.secondary; local 73 if (!secondary.empty() && secondary.back() == result_id) { 74 // Nothing to do if the last secondary is the current primary. 78 // If |result_id| is the last (the most recent) secondary and it's not the 80 secondary.pop_back(); 81 secondary.push_back(data.primary); 85 store_->SetSecondary(query, secondary); 89 // Otherwise, append to secondary list 123 const HistoryData::SecondaryDeque& secondary = assoc_it->second.secondary; local [all...] |
history_data_store.cc | 33 HistoryData::SecondaryDeque* secondary) { 44 secondary->swap(results); 54 // "result id of 1st (oldest) secondary association", 56 // "result id of the newest secondary association" 94 HistoryData::SecondaryDeque secondary; local 96 GetSecondary(secondary_list, &secondary); 101 association_data.secondary.swap(secondary);
|
history_data_store_unittest.cc | 25 for (HistoryData::SecondaryDeque::const_iterator it = data.secondary.begin(); 26 it != data.secondary.end(); ++it) { 158 EXPECT_EQ(0u, it->second.secondary.size()); 161 HistoryData::SecondaryDeque secondary; local 162 secondary.push_back("s1"); 163 secondary.push_back("s2"); 164 store()->SetSecondary(kQuery, secondary);
|
/external/chromium_org/chrome/browser/extensions/api/system_display/ |
display_info_provider_chromeos_unittest.cc | 315 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 322 CallSetDisplayUnitInfo(base::Int64ToString(secondary.id()), info, 328 EXPECT_EQ("-520,50 520x400", secondary.bounds().ToString()); 334 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 341 CallSetDisplayUnitInfo(base::Int64ToString(secondary.id()), info, 347 EXPECT_EQ("1200,100 520x400", secondary.bounds().ToString()); 353 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 360 CallSetDisplayUnitInfo(base::Int64ToString(secondary.id()), info, 366 EXPECT_EQ("1100,-400 520x400", secondary.bounds().ToString()); 372 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay() local 391 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 410 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 429 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 449 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 469 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 489 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 509 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 528 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 547 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 566 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 585 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 604 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 623 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 645 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 666 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 719 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 735 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 798 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 820 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local 842 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local [all...] |
/external/chromium_org/chrome/browser/chromeos/login/ |
multi_profile_user_controller_unittest.cc | 35 const char* secondary; member in struct:chromeos::__anon4359::BehaviorTestCase 253 SetCachedBehavior(1, kBehaviorTestCases[i].secondary); 270 SetPrefBehavior(1, kBehaviorTestCases[i].secondary); 276 // Tests that owner could not be a secondary user.
|
/external/smack/src/org/jivesoftware/smackx/filetransfer/ |
FaultTolerantNegotiator.java | 39 * The fault tolerant negotiator takes two stream negotiators, the primary and the secondary 52 StreamNegotiator secondary) { 54 this.secondaryNegotiator = secondary; 156 String[] secondary = secondaryNegotiator.getNamespaces(); local 158 String[] namespaces = new String[primary.length + secondary.length]; 160 System.arraycopy(secondary, 0, namespaces, primary.length, secondary.length);
|
/ndk/sources/host-tools/make-3.81/ |
filedef.h | 88 unsigned int secondary:1; /* Nonzero means remove_intermediates should member in struct:file
|
/packages/apps/Settings/src/com/android/settings/widget/ |
ChartGridView.java | 96 final Drawable secondary = mSecondary; local 102 secondary.setBounds(0, (int) y, width, bottom); 103 secondary.draw(canvas);
|
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/ |
CharEscapers.java | 1084 private final CharEscaper secondary; field in class:CharEscapers.FallThroughCharEscaper [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
CharEscapers.java | 1084 private final CharEscaper secondary; field in class:CharEscapers.FallThroughCharEscaper [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
ucoleitr.cpp | 248 uint64_t primary = 0, secondary = 0, tertiary = 0, quaternary = 0; local 259 secondary = ucol_secondaryOrder(ce); 285 primary = secondary = tertiary = 0; 295 return primary << 48 | secondary << 32 | tertiary << 16 | quaternary; 513 // int64_t primary = 0, secondary = 0, tertiary = 0, quaternary = 0;
|
/external/icu4c/i18n/ |
ucoleitr.cpp | 248 uint64_t primary = 0, secondary = 0, tertiary = 0, quaternary = 0; local 259 secondary = ucol_secondaryOrder(ce); 285 primary = secondary = tertiary = 0; 295 return primary << 48 | secondary << 32 | tertiary << 16 | quaternary; 513 // int64_t primary = 0, secondary = 0, tertiary = 0, quaternary = 0;
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
ContactsSource.java | 196 public boolean secondary; field in class:ContactsSource.DataKind 249 public boolean secondary; field in class:ContactsSource.EditType 259 public EditType setSecondary(boolean secondary) { 260 this.secondary = secondary;
|
/cts/hostsidetests/appsecurity/src/com/android/cts/appsecurity/ |
AppSecurityTests.java | 415 int secondary = -1; local 417 // Create secondary user 418 secondary = createUserOnDevice(getDevice()); 430 doRunTestsAsUser(PACKAGE, CLAZZ, "cleanIsolatedStorage", secondary)); 436 doRunTestsAsUser(PACKAGE, CLAZZ, "writeIsolatedStorage", secondary)); 442 doRunTestsAsUser(PACKAGE, CLAZZ, "readIsolatedStorage", secondary)); 445 if (secondary != -1) { 446 removeUserOnDevice(getDevice(), secondary); local
|
/external/chromium_org/ash/display/ |
display_controller_unittest.cc | 286 aura::Window** secondary) { 289 *secondary = root_windows[0] == *primary ? root_windows[1] : root_windows[0]; 338 // Layout the secondary display to the bottom of the primary. 349 // Layout the secondary display to the left of the primary. 360 // Layout the secondary display to the top of the primary. 635 // Switch primary and secondary 729 // Switch primary and secondary 813 // Switch primary and secondary by display ID. 1275 aura::Window* primary, *secondary; local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
regcoll.cpp | 209 c->setStrength(Collator::SECONDARY); 349 String[] secondary = { 354 static const UChar secondary[][CollationRegressionTest::MAX_TOKEN_LEN] = local 361 compareArray(*c, secondary, ARRAY_LENGTH(secondary)); 368 // Secondary/Tertiary comparison incorrect in French Secondary 385 c->setStrength(Collator::SECONDARY); 449 // French secondary collation checking at the end of compare iteration fails 465 c->setStrength(Collator::SECONDARY); [all...] |
/external/icu4c/test/intltest/ |
regcoll.cpp | 209 c->setStrength(Collator::SECONDARY); 349 String[] secondary = { 354 static const UChar secondary[][CollationRegressionTest::MAX_TOKEN_LEN] = local 361 compareArray(*c, secondary, ARRAY_LENGTH(secondary)); 368 // Secondary/Tertiary comparison incorrect in French Secondary 385 c->setStrength(Collator::SECONDARY); 449 // French secondary collation checking at the end of compare iteration fails 465 c->setStrength(Collator::SECONDARY); [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
AccountType.java | 360 public boolean secondary; field in class:AccountType.EditType 374 public EditType setSecondary(boolean secondary) { 375 this.secondary = secondary; 408 + " secondary=" + secondary
|
/packages/apps/InCallUI/src/com/android/incallui/ |
CallCardPresenter.java | 134 Call secondary = null; local 142 // highest priority call to display as the secondary call. 143 secondary = getCallToDisplay(callList, null, true); 146 secondary = getCallToDisplay(callList, primary, true); 150 Log.d(this, "Secondary call: " + secondary); 153 final boolean secondaryChanged = !areCallsSame(mSecondary, secondary); 154 mSecondary = secondary; 166 // Secondary call may have ended. Update the ui. 170 // secondary call has change [all...] |
/packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/ |
HoloSpiralRS.java | 228 Float4 secondary = convertColor(secondaryColor); local 238 color.x = primary.x + ((secondary.x - primary.x) * r); 239 color.y = primary.y + ((secondary.y - primary.y) * r); 240 color.z = primary.z + ((secondary.z - primary.z) * r); 241 color.w = primary.w + ((secondary.w - primary.w) * r);
|
/external/v8/src/ |
stub-cache.cc | 83 // secondary cache before overwriting it. 89 Entry* secondary = entry(secondary_, secondary_offset); local 90 *secondary = *primary; [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
citertst.c | 1166 char secondary[100]; local 1543 uint32_t primary, p1, p2, secondary, tertiary; local [all...] |