Searched refs:descriptions (Results 1 - 25 of 108) sorted by relevance

12345

/external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
H A Ddefault_map_storage.cc44 void DefaultMapStorage::ReadFromMap(const PrefixDescriptions* descriptions) { argument
45 prefixes_ = descriptions->prefixes;
46 prefixes_size_ = descriptions->prefixes_size;
47 descriptions_ = descriptions->descriptions;
48 possible_lengths_ = descriptions->possible_lengths;
49 possible_lengths_size_ = descriptions->possible_lengths_size;
H A Dgeocoding_data.h40 // Array of phone number prefix descriptions, mapped one to one
42 const char** descriptions; member in struct:i18n::phonenumbers::PrefixDescriptions
H A Ddefault_map_storage.h48 void ReadFromMap(const PrefixDescriptions* descriptions);
64 // Sequence of prefix descriptions, in the same order than prefixes_.
H A Darea_code_map.h57 void ReadAreaCodeMap(const PrefixDescriptions* descriptions);
H A Darea_code_map.cc36 void AreaCodeMap::ReadAreaCodeMap(const PrefixDescriptions* descriptions) { argument
38 storage->ReadFromMap(descriptions);
/external/chromium_org/third_party/webrtc/base/
H A Dmacwindowpicker_unittest.cc29 WindowDescriptionList descriptions; local
32 EXPECT_TRUE(picker.GetWindowList(&descriptions));
33 EXPECT_TRUE(picker2.GetWindowList(&descriptions)); // Init is optional
36 EXPECT_FALSE(picker.GetWindowList(&descriptions));
37 EXPECT_FALSE(picker2.GetWindowList(&descriptions));
H A Dx11windowpicker_unittest.cc26 WindowDescriptionList descriptions; local
28 window_picker.GetWindowList(&descriptions);
34 DesktopDescriptionList descriptions; local
36 EXPECT_TRUE(window_picker.GetDesktopList(&descriptions));
37 EXPECT_TRUE(descriptions.size() > 0);
H A Dwindowpicker_unittest.cc31 rtc::WindowDescriptionList descriptions; local
32 EXPECT_TRUE(picker->GetWindowList(&descriptions));
46 rtc::DesktopDescriptionList descriptions; local
47 EXPECT_TRUE(picker->GetDesktopList(&descriptions));
48 if (descriptions.size() > 0) {
51 EXPECT_TRUE(picker->GetDesktopDimensions(descriptions[0].id(), &width,
58 for (rtc::DesktopDescriptionList::iterator it = descriptions.begin();
59 it != descriptions.end(); ++it) {
H A Dmacwindowpicker.h24 virtual bool GetWindowList(WindowDescriptionList* descriptions);
25 virtual bool GetDesktopList(DesktopDescriptionList* descriptions);
H A Dwin32windowpicker_unittest.cc40 virtual bool GetWindowList(WindowDescriptionList* descriptions) { argument
42 reinterpret_cast<LPARAM>(descriptions))) {
46 reinterpret_cast<LPARAM>(descriptions))) {
67 WindowDescriptionList descriptions; local
68 EXPECT_TRUE(window_picker.GetWindowList(&descriptions));
69 EXPECT_EQ(1, descriptions.size());
70 WindowDescription desc = descriptions.front();
H A Dwin32windowpicker.h24 virtual bool GetWindowList(WindowDescriptionList* descriptions);
25 virtual bool GetDesktopList(DesktopDescriptionList* descriptions);
H A Dwin32windowpicker.cc29 WindowDescriptionList* descriptions = local
66 descriptions->push_back(desc);
98 // TODO: Consider changing enumeration to clear() descriptions
100 bool Win32WindowPicker::GetWindowList(WindowDescriptionList* descriptions) { argument
101 LPARAM desc = reinterpret_cast<LPARAM>(descriptions);
105 bool Win32WindowPicker::GetDesktopList(DesktopDescriptionList* descriptions) { argument
113 // Append the desktop descriptions to the end of the returned descriptions.
114 descriptions->insert(descriptions
[all...]
H A Dx11windowpicker.h36 virtual bool GetWindowList(WindowDescriptionList* descriptions);
37 virtual bool GetDesktopList(DesktopDescriptionList* descriptions);
H A Dwindowpicker.h70 // Gets a list of window description and appends to descriptions.
72 virtual bool GetWindowList(WindowDescriptionList* descriptions) = 0;
73 // Gets a list of desktop descriptions and appends to descriptions.
75 virtual bool GetDesktopList(DesktopDescriptionList* descriptions) = 0;
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
H A DDefaultMapStorage.java36 private String[] descriptions; field in class:DefaultMapStorage
45 return descriptions[index];
52 descriptions = new String[numOfEntries];
58 sortedPhonePrefixMap.values().toArray(descriptions);
67 if (descriptions == null || descriptions.length < numOfEntries) {
68 descriptions = new String[numOfEntries];
72 descriptions[i] = objectInput.readUTF();
86 objectOutput.writeUTF(descriptions[i]);
/external/objenesis/tck/src/org/objenesis/tck/
H A DTCK.java58 private final Map descriptions = new HashMap(); field in class:TCK
68 descriptions.put(candidateClass, description);
79 descriptions.put(objenesis, description);
88 reporter.startTests(describePlatform(), findAllDescriptions(candidates, descriptions),
89 findAllDescriptions(objenesisInstances, descriptions));
93 String candidateDescription = (String) descriptions.get(candidateClass);
98 String objenesisDescription = (String) descriptions.get(objenesis);
122 private Collection findAllDescriptions(List keys, Map descriptions) { argument
125 results.add(descriptions.get(keys.get(i)));
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Ddescription_util.js194 // Specialized math descriptions.
230 * descriptions. This function is here because most (currently all) walkers
235 * @return {!Array.<!cvox.NavDescription>} The descriptions as described above.
238 var descriptions = cvox.DescriptionUtil.getRawDescriptions_(prevSel, sel);
239 cvox.DescriptionUtil.insertCollectionDescription_(descriptions);
240 return descriptions;
245 * Used for getting collection descriptions.
253 * Returns the descriptions that would be gotten by an object walker.
256 * @return {!Array.<!cvox.NavDescription>} The descriptions.
262 var descriptions
[all...]
/external/chromium_org/third_party/lcov/example/
H A DMakefile44 output: example descriptions test_noargs test_2_to_2000 test_overflow
52 --show-details --description-file descriptions $(FRAMES) \
60 descriptions: descriptions.txt
61 $(GENDESC) descriptions.txt -o descriptions
97 descriptions
/external/lldb/test/unittest2/
H A Drunner.py43 def __init__(self, stream, descriptions, verbosity):
48 self.descriptions = descriptions
53 if self.descriptions and doc_first_line:
132 def __init__(self, stream=sys.stderr, descriptions=True, verbosity=1,
135 self.descriptions = descriptions
143 return self.resultclass(self.stream, self.descriptions, self.verbosity)
/external/chromium_org/chrome/test/chromedriver/test/
H A Dunittest_util.py23 def __init__(self, stream, descriptions, verbosity):
24 unittest._TextTestResult.__init__(self, stream, descriptions, verbosity)
68 return _TextTestResult(self.stream, self.descriptions, self.verbosity)
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
H A Dsearch_widget.js358 var descriptions = cvox.ChromeVox.navigationManager.getDescription();
359 for (var i = 0; i < descriptions.length; i++) {
360 var targetStr = this.caseSensitive_ ? descriptions[i].text :
361 descriptions[i].text.toLowerCase();
366 descriptions[i].text =
371 descriptions[i].text =
372 cvox.DomUtil.collapseWhitespace(descriptions[i].text);
375 return descriptions;
514 * since this is mostly used to display the long search result descriptions on
520 var descriptions
[all...]
/external/chromium_org/gin/test/
H A Dexpect.js124 var descriptions = [];
127 descriptions.push(subjects[name]);
129 descriptions.push(name + ": " + JSON.stringify(subjects[name]));
131 return descriptions.join(" ");
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
H A Dlayout_line_walker.js71 var descriptions = [];
80 // No need to accumulate descriptions.
85 // Walk through and collect descriptions for each line.
87 descriptions.push.apply(
88 descriptions, this.subWalker_.getDescription(prev, cur));
93 descriptions.push.apply(
94 descriptions, this.subWalker_.getDescription(prev, cur));
96 return descriptions;
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dfakedevicemanager.h116 std::vector<rtc::WindowDescription>* descriptions) {
117 descriptions->clear();
123 descriptions->push_back(window_description);
133 std::vector<rtc::DesktopDescription>* descriptions) {
134 descriptions->clear();
141 descriptions->push_back(desktop_description);
115 GetWindows( std::vector<rtc::WindowDescription>* descriptions) argument
132 GetDesktops( std::vector<rtc::DesktopDescription>* descriptions) argument
/external/chromium_org/build/util/lib/common/
H A Dunittest_util.py23 def __init__(self, stream, descriptions, verbosity):
24 unittest._TextTestResult.__init__(self, stream, descriptions, verbosity)
68 return _TextTestResult(self.stream, self.descriptions, self.verbosity)

Completed in 5335 milliseconds

12345