/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderGrid.h | 53 const Vector<LayoutUnit>& columnPositions() const { return m_columnPositions; } 54 const Vector<LayoutUnit>& rowPositions() const { return m_rowPositions; } 85 void placeSpecifiedMajorAxisItemsOnGrid(const Vector<RenderBox*>&); 86 void placeAutoMajorAxisItemsOnGrid(const Vector<RenderBox*>&); 94 typedef LayoutUnit (RenderGrid::* SizingFunction)(RenderBox*, GridTrackSizingDirection, Vector<GridTrack>&); 99 void distributeSpaceToTracks(Vector<GridTrack*>&, Vector<GridTrack*>* tracksForGrowthAboveMaxBreadth, AccumulatorGetter, AccumulatorGrowFunction, GridSizingData&, LayoutUnit& availableLogicalSpace); 101 double computeNormalizedFractionBreadth(Vector<GridTrack>&, const GridSpan& tracksSpan, GridTrackSizingDirection, LayoutUnit availableLogicalSpace) const; 105 LayoutUnit logicalHeightForChild(RenderBox*, Vector<GridTrack>&); 106 LayoutUnit minContentForChild(RenderBox*, GridTrackSizingDirection, Vector<GridTrack>& columnTracks) [all...] |
/external/chromium_org/third_party/freetype/include/freetype/ |
fttrigon.h | 177 * Return the arc-tangent corresponding to a given vector (x,y) in 182 * The horizontal vector coordinate. 185 * The vertical vector coordinate. 227 * Return the unit vector corresponding to a given angle. After the 236 * The address of target vector. 254 * Rotate a vector by a given angle. 258 * The address of target vector. 276 * Return the length of a given vector. 280 * The address of target vector. 283 * The vector length, expressed in the same units that the origina [all...] |
/external/chromium_org/third_party/webrtc/system_wrappers/interface/ |
scoped_vector.h | 18 #include <vector> 25 // ScopedVector wraps a vector deleting the elements from its 32 typedef typename std::vector<T*>::allocator_type allocator_type; 33 typedef typename std::vector<T*>::size_type size_type; 34 typedef typename std::vector<T*>::difference_type difference_type; 35 typedef typename std::vector<T*>::pointer pointer; 36 typedef typename std::vector<T*>::const_pointer const_pointer; 37 typedef typename std::vector<T*>::reference reference; 38 typedef typename std::vector<T*>::const_reference const_reference; 39 typedef typename std::vector<T*>::value_type value_type [all...] |
/external/freetype/include/ |
fttrigon.h | 177 * Return the arc-tangent corresponding to a given vector (x,y) in 182 * The horizontal vector coordinate. 185 * The vertical vector coordinate. 227 * Return the unit vector corresponding to a given angle. After the 236 * The address of target vector. 254 * Rotate a vector by a given angle. 258 * The address of target vector. 276 * Return the length of a given vector. 280 * The address of target vector. 283 * The vector length, expressed in the same units that the origina [all...] |
/external/pdfium/core/include/thirdparties/freetype/freetype/ |
fttrigon.h | 177 * Return the arc-tangent corresponding to a given vector (x,y) in 182 * The horizontal vector coordinate. 185 * The vertical vector coordinate. 227 * Return the unit vector corresponding to a given angle. After the 236 * The address of target vector. 254 * Rotate a vector by a given angle. 258 * The address of target vector. 276 * Return the length of a given vector. 280 * The address of target vector. 283 * The vector length, expressed in the same units that the origina [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/ |
fttrigon.h | 177 * Return the arc-tangent corresponding to a given vector (x,y) in 182 * The horizontal vector coordinate. 185 * The vertical vector coordinate. 227 * Return the unit vector corresponding to a given angle. After the 236 * The address of target vector. 254 * Rotate a vector by a given angle. 258 * The address of target vector. 276 * Return the length of a given vector. 280 * The address of target vector. 283 * The vector length, expressed in the same units that the origina [all...] |
/external/libhevc/common/arm/ |
ihevc_inter_pred_chroma_horz_w16out.s | 178 vld1.u32 {q0},[r12],r11 @vector load pu1_src 181 vld1.u32 {q1},[r12],r11 @vector load pu1_src 184 vld1.u32 {q2},[r12],r11 @vector load pu1_src 187 vld1.u32 {q3},[r12],r9 @vector load pu1_src 191 vld1.u32 {q4},[r4],r11 @vector load pu1_src 193 vld1.u32 {q5},[r4],r11 @vector load pu1_src 195 vld1.u32 {q6},[r4],r11 @vector load pu1_src 197 vld1.u32 {q7},[r4],r9 @vector load pu1_src 238 vld1.u32 {q0},[r12],r11 @vector load pu1_src 244 vld1.u32 {q1},[r12],r11 @vector load pu1_sr [all...] |
/external/chromium_org/ash/first_run/ |
desktop_cleaner.h | 8 #include <vector> 31 static std::vector<int> GetContainersToHideForTest(); 33 std::vector<linked_ptr<ContainerHider> > container_hiders_;
|
/external/chromium_org/base/win/ |
i18n.h | 9 #include <vector> 22 std::vector<std::wstring>* languages); 28 std::vector<std::wstring>* languages);
|
/external/chromium_org/cc/resources/ |
prioritized_tile_set.h | 8 #include <vector> 44 std::vector<Tile*>::iterator iterator_; 53 std::vector<Tile*> tiles_[NUM_BINS];
|
transferable_resource.h | 8 #include <vector> 19 typedef std::vector<ReturnedResource> ReturnedResourceArray; 21 typedef std::vector<TransferableResource> TransferableResourceArray;
|
/external/chromium_org/chrome/browser/extensions/ |
favicon_downloader.cc | 16 const std::vector<GURL>& extra_favicon_urls, 32 std::vector<content::FaviconURL> favicon_tab_helper_urls = 49 std::vector<content::FaviconURL> 56 : std::vector<content::FaviconURL>(); 60 const std::vector<content::FaviconURL>& favicon_urls) { 61 std::vector<GURL> urls; 62 for (std::vector<content::FaviconURL>::const_iterator it = 71 void FaviconDownloader::FetchIcons(const std::vector<GURL>& urls) { 74 for (std::vector<GURL>::const_iterator it = urls.begin(); 91 const std::vector<SkBitmap>& bitmaps [all...] |
/external/chromium_org/chrome/browser/net/ |
service_providers_win.h | 8 #include <vector> 16 typedef std::vector<WinsockNamespaceProvider> WinsockNamespaceProviderList; 26 typedef std::vector<WinsockLayeredServiceProvider>
|
/external/chromium_org/chrome/common/extensions/api/identity/ |
oauth2_manifest_handler.h | 10 #include <vector> 23 std::vector<std::string> scopes; 41 virtual const std::vector<std::string> Keys() const OVERRIDE;
|
/external/chromium_org/chrome/common/extensions/api/speech/ |
tts_engine_manifest_handler.h | 10 #include <vector> 27 static const std::vector<TtsVoice>* GetTtsVoices(const Extension* extension); 39 virtual const std::vector<std::string> Keys() const OVERRIDE;
|
/external/chromium_org/chrome/common/media_galleries/ |
picasa_test_util.cc | 16 const std::vector<uint32>& category_vector, 17 const std::vector<double>& date_vector, 18 const std::vector<std::string>& filename_vector, 19 const std::vector<std::string>& name_vector, 20 const std::vector<std::string>& token_vector, 21 const std::vector<std::string>& uid_vector) { 48 std::vector<uint32> category_vector; 55 std::vector<double> date_vector; 62 std::vector<std::string> filename_vector; 69 std::vector<std::string> name_vector [all...] |
/external/chromium_org/chrome/test/chromedriver/chrome/ |
chrome_finder.h | 8 #include <vector> 23 const std::vector<base::FilePath>& rel_paths, 24 const std::vector<base::FilePath>& locations,
|
/external/chromium_org/components/favicon/core/ |
favicon_url.h | 8 #include <vector> 21 const std::vector<gfx::Size>& sizes); 31 std::vector<gfx::Size> icon_sizes;
|
/external/chromium_org/content/browser/accessibility/ |
accessibility_tree_formatter_utils_win.h | 8 #include <vector> 20 int32 ia_state, std::vector<base::string16>* result); 23 int32 ia_state, std::vector<base::string16>* result);
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_value.h | 10 #include <vector> 20 const std::vector<IndexedDBBlobInfo>& input_blob_info); 39 std::vector<IndexedDBBlobInfo> blob_info;
|
/external/chromium_org/content/browser/power_profiler/ |
power_data_provider.h | 8 #include <vector> 19 typedef std::vector<PowerEvent> PowerEventVector; 29 // Returns a vector of power events, one per type, for the types it supports.
|
/external/chromium_org/content/common/ |
plugin_list_posix.cc | 15 std::vector<base::FilePath>* plugin_dirs) { 19 std::vector<base::FilePath>* plugins) { 24 std::vector<WebPluginInfo>* plugins) {
|
/external/chromium_org/content/public/browser/ |
ax_event_notification_details.h | 8 #include <vector> 20 AXEventNotificationDetails(const std::vector<ui::AXNodeData>& nodes, 28 std::vector<ui::AXNodeData> nodes;
|
/external/chromium_org/content/public/common/ |
favicon_url.h | 8 #include <vector> 30 const std::vector<gfx::Size>& sizes); 40 std::vector<gfx::Size> icon_sizes;
|
/external/chromium_org/device/hid/ |
hid_service_unittest.cc | 5 #include <vector> 18 std::vector<HidDeviceInfo> devices; 20 for (std::vector<HidDeviceInfo>::iterator it = devices.begin();
|