Searched defs:secondary (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/ash/
H A Dscreen_ash_unittest.cc35 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
92 views::Widget* secondary = views::Widget::CreateWindowWithContextAndBounds( local
[all...]
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dhistory_data.h25 // search result id. There are two types of association: primary and secondary.
30 // secondary. However, if a secondary association is added twice in a row, it
32 // secondary.
46 SecondaryDeque secondary; member in struct:app_list::HistoryData::Data
55 // to keep. |max_secondary| is the maximum number of secondary associations to
H A Dhistory_data.cc72 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 lis
123 const HistoryData::SecondaryDeque& secondary = assoc_it->second.secondary; local
[all...]
H A Dhistory_data_store_unittest.cc25 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);
H A Dhistory_data_store.cc33 HistoryData::SecondaryDeque* secondary) {
44 secondary->swap(results);
54 // "result id of 1st (oldest) secondary association",
56 // "result id of the newest secondary association"
92 HistoryData::SecondaryDeque secondary; local
94 GetSecondary(secondary_list, &secondary);
99 association_data.secondary.swap(secondary);
32 GetSecondary(const base::ListValue* list, HistoryData::SecondaryDeque* secondary) argument
/external/guava/guava/src/com/google/common/collect/
H A DCompoundOrdering.java31 Comparator<? super T> secondary) {
33 = ImmutableList.<Comparator<? super T>>of(primary, secondary);
30 CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) argument
/external/chromium_org/ash/wm/workspace/
H A Dmagnetism_matcher.cc24 SecondaryMagnetismEdge secondary,
26 // Convert |secondary| to a MagnetismEdge so we can compare it to |edges|.
31 if (secondary == SECONDARY_MAGNETISM_EDGE_LEADING)
33 else if (secondary == SECONDARY_MAGNETISM_EDGE_TRAILING)
40 if (secondary == SECONDARY_MAGNETISM_EDGE_LEADING)
42 else if (secondary == SECONDARY_MAGNETISM_EDGE_TRAILING)
23 CanMatchSecondaryEdge(MagnetismEdge primary, SecondaryMagnetismEdge secondary, uint32 edges) argument
/external/chromium_org/chrome/browser/extensions/api/system_display/
H A Ddisplay_info_provider_chromeos_unittest.cc335 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
342 CallSetDisplayUnitInfo(base::Int64ToString(secondary.id()), info,
348 EXPECT_EQ("-520,50 520x400", secondary.bounds().ToString());
354 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
361 CallSetDisplayUnitInfo(base::Int64ToString(secondary.id()), info,
367 EXPECT_EQ("1200,100 520x400", secondary.bounds().ToString());
373 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
380 CallSetDisplayUnitInfo(base::Int64ToString(secondary.id()), info,
386 EXPECT_EQ("1100,-400 520x400", secondary.bounds().ToString());
392 const gfx::Display& secondary local
411 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
430 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
529 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
548 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
567 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
586 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
605 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
624 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
643 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
665 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
686 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
739 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
755 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
818 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
840 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
862 const gfx::Display& secondary = ash::ScreenAsh::GetSecondaryDisplay(); local
[all...]
/external/smack/src/org/jivesoftware/smackx/filetransfer/
H A DFaultTolerantNegotiator.java39 * 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();
158 String[] namespaces = new String[primary.length + secondary.length];
160 System.arraycopy(secondary, 0, namespaces, primary.length, secondary.length);
51 FaultTolerantNegotiator(Connection connection, StreamNegotiator primary, StreamNegotiator secondary) argument
/external/chromium_org/ash/display/
H A Ddisplay_controller_unittest.cc229 aura::RootWindow** secondary) {
232 *secondary = root_windows[0] == *primary ? root_windows[1] : root_windows[0];
273 // Layout the secondary display to the bottom of the primary.
282 // Layout the secondary display to the left of the primary.
291 // Layout the secondary display to the top of the primary.
511 // Switch primary and secondary
593 // Switch primary and secondary by display ID.
640 // since secondary id is still stored as desirable_primary_id.
715 // Switch primary and secondary
719 // primary and secondary
228 GetPrimaryAndSeconary(aura::RootWindow** primary, aura::RootWindow** secondary) argument
1041 aura::RootWindow* primary, *secondary; local
[all...]
H A Ddisplay_controller.cc408 // on the secondary.
439 const gfx::Display& secondary = ScreenAsh::GetSecondaryDisplay(); local
442 return std::make_pair(primary.id(), secondary.id());
445 return std::make_pair(secondary.id(), primary.id());
/external/chromium_org/third_party/icu/source/i18n/
H A Ducoleitr.cpp248 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;
H A Ducol.cpp4341 uint8_t secondary = 0; local
4373 secondary = (uint8_t)((order >>= 8) & UCOL_BYTE_SIZE_MASK);
4436 if(secondary > compareSec) { /* I think that != 0 test should be != IGNORABLE */
4438 if (secondary == UCOL_COMMON2 && notIsContinuation) {
4442 if (secondary > UCOL_COMMON2) { // not necessary for 4th level.
4452 fSecs[fSecsLen++] = secondary;
4548 secondary = *(fSecs+fSecsLen-i-1);
4550 if (secondary == UCOL_COMMON2) {
4554 if (secondary > UCOL_COMMON2) { // not necessary for 4th level.
4604 // Packs the secondary buffe
4607 uint8_t secondary; local
4768 uint8_t secondary = 0; local
5364 uint8_t secondary = 0; local
6609 uint8_t primary1 = 0, primary2 = 0, secondary = 0, tertiary = 0; local
[all...]
/external/icu4c/i18n/
H A Ducoleitr.cpp248 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;
H A Ducol.cpp4588 // Packs the secondary buffer when processing French locale.
4591 secondaries += secsize; // We read the secondary-level bytes back to front.
4592 uint8_t secondary; local
4597 secondary = *(secondaries-i-1);
4599 if (secondary == UCOL_COMMON2) {
4603 if (secondary > UCOL_COMMON2) { // not necessary for 4th level.
4618 result.Append(secondary);
4712 uint8_t secondary = 0; local
4746 secondary = (uint8_t)((order >>= 8) & UCOL_BYTE_SIZE_MASK);
4817 if(secondary > compareSe
5082 uint8_t secondary = 0; local
6216 uint8_t primary1 = 0, primary2 = 0, secondary = 0, tertiary = 0; local
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dregcoll.cpp349 String[] secondary = {
354 static const UChar secondary[][CollationRegressionTest::MAX_TOKEN_LEN] = local
361 compareArray(*c, secondary, ARRAY_LENGTH(secondary));
449 // French secondary collation checking at the end of compare iteration fails
/external/icu4c/test/intltest/
H A Dregcoll.cpp349 String[] secondary = {
354 static const UChar secondary[][CollationRegressionTest::MAX_TOKEN_LEN] = local
361 compareArray(*c, secondary, ARRAY_LENGTH(secondary));
449 // French secondary collation checking at the end of compare iteration fails
/external/v8/src/
H A Dstub-cache.cc83 // secondary cache before overwriting it.
89 Entry* secondary = entry(secondary_, secondary_offset); local
90 *secondary = *primary;
924 // Lookup in secondary table and add matches.
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcitertst.c1098 getSingleCEValue(char *primary, char *secondary, char *tertiary, argument
1107 char *secend = secondary+2;
1118 if (uprv_strlen(secondary) > 2) {
1129 secvalue = (*secondary!='\0')?uprv_strtoul(secondary, &secend, 16):0;
1166 char secondary[100]; local
1181 secondarycount = readElement(&pStartCP, secondary, ',', status);
1185 ces[count ++] = getSingleCEValue(primary, secondary, tertiary, status);
1204 value |= ((hex2num(*(secondary + 2 * CEi)) & 0xF) << 12);
1205 value |= ((hex2num(*(secondary
1543 uint32_t primary, p1, p2, secondary, tertiary; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dff_fragment_shader.cpp1256 ir_rvalue *secondary; local
1261 secondary = swizzle_xyz(var);
1263 secondary = swizzle_xyz(get_current_attrib(p, VERT_ATTRIB_COLOR1));
1266 p->emit(assign(spec_result, add(swizzle_xyz(spec_result), secondary),
/external/chromium_org/v8/src/
H A Dstub-cache.cc85 // secondary cache before overwriting it.
91 Entry* secondary = entry(secondary_, secondary_offset); local
92 *secondary = *primary;
1160 // Lookup in secondary table and add matches.
/external/icu4c/test/cintltst/
H A Dcitertst.c1098 getSingleCEValue(char *primary, char *secondary, char *tertiary, argument
1107 char *secend = secondary+2;
1118 if (uprv_strlen(secondary) > 2) {
1129 secvalue = (*secondary!='\0')?uprv_strtoul(secondary, &secend, 16):0;
1166 char secondary[100]; local
1181 secondarycount = readElement(&pStartCP, secondary, ',', status);
1185 ces[count ++] = getSingleCEValue(primary, secondary, tertiary, status);
1204 value |= ((hex2num(*(secondary + 2 * CEi)) & 0xF) << 12);
1205 value |= ((hex2num(*(secondary
1543 uint32_t primary, p1, p2, secondary, tertiary; local
[all...]
/external/mesa3d/src/mesa/main/
H A Dff_fragment_shader.cpp1256 ir_rvalue *secondary; local
1261 secondary = swizzle_xyz(var);
1263 secondary = swizzle_xyz(get_current_attrib(p, VERT_ATTRIB_COLOR1));
1266 p->emit(assign(spec_result, add(swizzle_xyz(spec_result), secondary),
/external/kernel-headers/original/linux/
H A Dpci.h239 unsigned char secondary; /* number of secondary bridge */ member in struct:pci_bus
/external/smack/asmack-master/lib/
H A Djstun.jarMETA-INF/ META-INF/MANIFEST.MF de/ de/javawi/ de/javawi/jstun/ de/javawi/jstun/attribute/ ...

Completed in 1844 milliseconds

12