Home
last modified time | relevance | path

Searched refs:descriptions (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/external/webrtc/webrtc/base/
Dwindowpicker_unittest.cc31 rtc::WindowDescriptionList descriptions; in TEST() local
32 EXPECT_TRUE(picker->GetWindowList(&descriptions)); in TEST()
46 rtc::DesktopDescriptionList descriptions; in TEST() local
47 EXPECT_TRUE(picker->GetDesktopList(&descriptions)); in TEST()
48 if (descriptions.size() > 0) { in TEST()
51 EXPECT_TRUE(picker->GetDesktopDimensions(descriptions[0].id(), &width, in TEST()
58 for (rtc::DesktopDescriptionList::iterator it = descriptions.begin(); in TEST()
59 it != descriptions.end(); ++it) { in TEST()
Dwin32windowpicker_unittest.cc41 virtual bool GetWindowList(WindowDescriptionList* descriptions) { in GetWindowList() argument
43 reinterpret_cast<LPARAM>(descriptions))) { in GetWindowList()
47 reinterpret_cast<LPARAM>(descriptions))) { in GetWindowList()
68 WindowDescriptionList descriptions; in TEST() local
69 EXPECT_TRUE(window_picker.GetWindowList(&descriptions)); in TEST()
70 EXPECT_EQ(1, descriptions.size()); in TEST()
71 WindowDescription desc = descriptions.front(); in TEST()
Dx11windowpicker_unittest.cc26 WindowDescriptionList descriptions; in TEST() local
28 window_picker.GetWindowList(&descriptions); in TEST()
34 DesktopDescriptionList descriptions; in TEST() local
36 EXPECT_TRUE(window_picker.GetDesktopList(&descriptions)); in TEST()
37 EXPECT_TRUE(descriptions.size() > 0); in TEST()
Dmacwindowpicker_unittest.cc29 WindowDescriptionList descriptions; in TEST() local
32 EXPECT_TRUE(picker.GetWindowList(&descriptions)); in TEST()
33 EXPECT_TRUE(picker2.GetWindowList(&descriptions)); // Init is optional in TEST()
36 EXPECT_FALSE(picker.GetWindowList(&descriptions)); in TEST()
37 EXPECT_FALSE(picker2.GetWindowList(&descriptions)); in TEST()
Dwin32windowpicker.cc30 WindowDescriptionList* descriptions = in EnumProc() local
67 descriptions->push_back(desc); in EnumProc()
101 bool Win32WindowPicker::GetWindowList(WindowDescriptionList* descriptions) { in GetWindowList() argument
102 LPARAM desc = reinterpret_cast<LPARAM>(descriptions); in GetWindowList()
106 bool Win32WindowPicker::GetDesktopList(DesktopDescriptionList* descriptions) { in GetDesktopList() argument
115 descriptions->insert(descriptions->end(), desktop_desc.begin(), in GetDesktopList()
Dx11windowpicker.cc177 bool EnumerateWindows(WindowDescriptionList* descriptions) { in EnumerateWindows() argument
185 if (EnumerateScreenWindows(descriptions, i)) { in EnumerateWindows()
193 bool EnumerateDesktops(DesktopDescriptionList* descriptions) { in EnumerateDesktops() argument
206 descriptions->push_back(desc); in EnumerateDesktops()
602 bool EnumerateScreenWindows(WindowDescriptionList* descriptions, int screen) { in EnumerateScreenWindows() argument
629 descriptions->push_back(desc); in EnumerateScreenWindows()
772 bool X11WindowPicker::GetWindowList(WindowDescriptionList* descriptions) { in GetWindowList() argument
773 return enumerator_->EnumerateWindows(descriptions); in GetWindowList()
776 bool X11WindowPicker::GetDesktopList(DesktopDescriptionList* descriptions) { in GetDesktopList() argument
777 return enumerator_->EnumerateDesktops(descriptions); in GetDesktopList()
Dmacwindowpicker.h24 bool GetWindowList(WindowDescriptionList* descriptions) override;
25 bool GetDesktopList(DesktopDescriptionList* descriptions) override;
Dmacwindowpicker.cc179 bool MacWindowPicker::GetDesktopList(DesktopDescriptionList* descriptions) { in GetDesktopList() argument
196 descriptions->push_back(desc); in GetDesktopList()
209 bool MacWindowPicker::GetWindowList(WindowDescriptionList* descriptions) { in GetWindowList() argument
247 descriptions->push_back(desc); in GetWindowList()
Dwin32windowpicker.h24 virtual bool GetWindowList(WindowDescriptionList* descriptions);
25 virtual bool GetDesktopList(DesktopDescriptionList* descriptions);
Dx11windowpicker.h36 bool GetWindowList(WindowDescriptionList* descriptions) override;
37 bool GetDesktopList(DesktopDescriptionList* descriptions) override;
Dwindowpicker.h72 virtual bool GetWindowList(WindowDescriptionList* descriptions) = 0;
75 virtual bool GetDesktopList(DesktopDescriptionList* descriptions) = 0;
/external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
DDefaultMapStorage.java36 private String[] descriptions; field in DefaultMapStorage
45 return descriptions[index]; in getDescription()
52 descriptions = new String[numOfEntries]; in readFromSortedMap()
58 sortedPhonePrefixMap.values().toArray(descriptions); in readFromSortedMap()
67 if (descriptions == null || descriptions.length < numOfEntries) { in readExternal()
68 descriptions = new String[numOfEntries]; in readExternal()
72 descriptions[i] = objectInput.readUTF(); in readExternal()
86 objectOutput.writeUTF(descriptions[i]); in writeExternal()
/external/objenesis/tck/src/org/objenesis/tck/
DTCK.java58 private final Map descriptions = new HashMap(); field in TCK
68 descriptions.put(candidateClass, description); in registerCandidate()
79 descriptions.put(objenesis, description); in registerObjenesisInstance()
88 reporter.startTests(describePlatform(), findAllDescriptions(candidates, descriptions), in runTests()
89 findAllDescriptions(objenesisInstances, descriptions)); in runTests()
93 String candidateDescription = (String) descriptions.get(candidateClass); in runTests()
98 String objenesisDescription = (String) descriptions.get(objenesis); in runTests()
122 private Collection findAllDescriptions(List keys, Map descriptions) { in findAllDescriptions() argument
125 results.add(descriptions.get(keys.get(i))); in findAllDescriptions()
DTextReporter.java232 private int lengthOfLongestStringIn(Collection descriptions) { in lengthOfLongestStringIn() argument
234 for(Iterator it = descriptions.iterator(); it.hasNext();) { in lengthOfLongestStringIn()
/external/webrtc/talk/media/devices/
Dfakedevicemanager.h116 std::vector<rtc::WindowDescription>* descriptions) { in GetWindows() argument
117 descriptions->clear(); in GetWindows()
123 descriptions->push_back(window_description); in GetWindows()
133 std::vector<rtc::DesktopDescription>* descriptions) { in GetDesktops() argument
134 descriptions->clear(); in GetDesktops()
141 descriptions->push_back(desktop_description); in GetDesktops()
Ddevicemanager.h100 std::vector<rtc::WindowDescription>* descriptions) = 0;
102 std::vector<rtc::DesktopDescription>* descriptions) = 0;
167 std::vector<rtc::WindowDescription>* descriptions);
169 std::vector<rtc::DesktopDescription>* descriptions);
Ddevicemanager_unittest.cc392 std::vector<rtc::WindowDescription> descriptions; in TEST() local
394 if (!dm->GetWindows(&descriptions) || descriptions.empty()) { in TEST()
400 cricket::ScreencastId(descriptions.front().id()))); in TEST()
416 std::vector<rtc::DesktopDescription> descriptions; in TEST() local
418 if (!dm->GetDesktops(&descriptions) || descriptions.empty()) { in TEST()
424 cricket::ScreencastId(descriptions.front().id()))); in TEST()
Ddevicemanager.cc240 std::vector<rtc::WindowDescription>* descriptions) { in GetWindows() argument
244 return window_picker_->GetWindowList(descriptions); in GetWindows()
248 std::vector<rtc::DesktopDescription>* descriptions) { in GetDesktops() argument
252 return window_picker_->GetDesktopList(descriptions); in GetDesktops()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
DPerformanceResultsElement.java120 String[] descriptions = DB_Results.getConfigDescriptions(); in getConfigDescriptions() local
121 int length = descriptions.length; in getConfigDescriptions()
124 descriptions = DB_Results.getConfigDescriptions(); in getConfigDescriptions()
126 return descriptions; in getConfigDescriptions()
/external/llvm/lib/Target/Mips/
DMipsEVAInstrInfo.td49 // Instruction descriptions
53 // Memory Load/Store EVA descriptions
84 // Load/Store Left/Right EVA descriptions
109 // Load-linked EVA, Store-conditional EVA descriptions
/external/autotest/server/cros/ap_configurators/
Dpyauto_utils.py237 def __init__(self, stream, descriptions, verbosity): argument
238 unittest._TextTestResult.__init__(self, stream, descriptions, verbosity)
277 return _GTestTextTestResult(self.stream, self.descriptions, self.verbosity)
/external/autotest/test_suites/
Dcontrol.test_that_wrapper58 sub_predicates, descriptions = zip(*parsed_test_arguments)
61 for desc in descriptions:
/external/libxml2/test/relaxng/
Dcomps.rng50 <ref name="descriptions"/>
163 <define name="descriptions"> namedPattern
/external/autotest/client/common_lib/test_utils/
Dunittest.py1334 def __init__(self, stream, descriptions, verbosity): argument
1339 self.descriptions = descriptions
1342 if self.descriptions:
1422 def __init__(self, stream=sys.stderr, descriptions=1, verbosity=1): argument
1424 self.descriptions = descriptions
1428 return _TextTestResult(self.stream, self.descriptions, self.verbosity)
/external/clang/docs/CommandGuide/
Dindex.rst4 The following documents are command descriptions for all of the Clang tools.

12345678910>>...13