Searched refs:vector (Results 276 - 300 of 11757) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/install_verification/win/
H A Dmodule_list.h11 #include <vector>
29 const std::vector<HMODULE>& snapshot);
45 std::vector<HMODULE> modules_;
/external/chromium_org/chrome/browser/media_galleries/linux/
H A Dmtp_device_object_enumerator.h8 #include <vector>
17 explicit MTPDeviceObjectEnumerator(const std::vector<MtpFileEntry>& entries);
40 const std::vector<MtpFileEntry> file_entries_;
/external/chromium_org/chrome/browser/net/
H A Dservice_providers_win.h8 #include <vector>
16 typedef std::vector<WinsockNamespaceProvider> WinsockNamespaceProviderList;
26 typedef std::vector<WinsockLayeredServiceProvider>
/external/chromium_org/chrome/renderer/spellchecker/
H A Dcustom_dictionary_engine.h10 #include <vector>
34 const std::vector<std::string>& words_added,
35 const std::vector<std::string>& words_removed);
/external/chromium_org/components/dom_distiller/core/
H A Darticle_distillation_update.h8 #include <vector>
21 const std::vector<scoped_refptr<RefCountedPageProto> >& pages,
46 std::vector<scoped_refptr<RefCountedPageProto> > pages_;
/external/chromium_org/content/public/browser/
H A Dax_event_notification_details.h8 #include <vector>
21 const std::vector<ui::AXNodeData>& nodes,
30 std::vector<ui::AXNodeData> nodes;
/external/chromium_org/content/public/common/
H A Dfavicon_url.h8 #include <vector>
30 const std::vector<gfx::Size>& sizes);
40 std::vector<gfx::Size> icon_sizes;
H A Dspeech_recognition_result.h8 #include <vector>
29 typedef std::vector<SpeechRecognitionHypothesis>
40 typedef std::vector<SpeechRecognitionResult> SpeechRecognitionResults;
/external/chromium_org/courgette/
H A Ddifference_estimator.h11 #include <vector>
51 std::vector<Base*> owned_bases_;
52 std::vector<Subject*> owned_subjects_;
/external/chromium_org/device/hid/
H A Dhid_service_unittest.cc5 #include <vector>
21 std::vector<HidDeviceInfo> devices;
23 for (std::vector<HidDeviceInfo>::iterator it = devices.begin();
/external/chromium_org/gin/modules/
H A Dfile_module_provider.h10 #include <vector>
25 const std::vector<base::FilePath>& search_paths);
33 std::vector<base::FilePath> search_paths_;
/external/chromium_org/media/filters/
H A Dstream_parser_factory.h9 #include <vector>
24 const std::string& type, const std::vector<std::string>& codecs);
36 const std::string& type, const std::vector<std::string>& codecs,
/external/chromium_org/media/formats/mp4/
H A Dsample_to_group_iterator.h8 #include <vector>
40 const std::vector<SampleToGroupEntry>& sample_to_group_table_;
41 std::vector<SampleToGroupEntry>::const_iterator iterator_;
/external/chromium_org/mojo/examples/keyboard/
H A Dkeys.h8 #include <vector>
53 std::vector<const Row*> GetQWERTYRows();
57 std::vector<const Row*> GetNumericRows();
/external/chromium_org/net/url_request/
H A Durl_range_request_job.h8 #include <vector>
30 const std::vector<HttpByteRange>& ranges() const { return ranges_; }
37 std::vector<HttpByteRange> ranges_;
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dverifier.h10 #include <vector>
31 const std::vector<struct sock_filter>& program,
43 static uint32_t EvaluateBPF(const std::vector<struct sock_filter>& program,
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DFlagStd140Structs.h21 const std::vector<TIntermTyped *> getFlaggedNodes() const { return mFlaggedNodes; }
30 std::vector<TIntermTyped *> mFlaggedNodes;
33 std::vector<TIntermTyped *> FlagStd140ValueStructs(TIntermNode *node);
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dmacdevicemanager.h32 #include <vector>
47 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs);
50 virtual bool GetAudioDevices(bool input, std::vector<Device>* devs);
H A Dwin32devicemanager.h32 #include <vector>
49 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs);
52 virtual bool GetAudioDevices(bool input, std::vector<Device>* devs);
/external/chromium_org/third_party/ots/src/
H A Dkern.h8 #include <vector>
26 std::vector<OpenTypeKERNFormat0Pair> pairs;
35 std::vector<OpenTypeKERNFormat0> subtables;
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dassocdat.c39 assoc_data_item *vector; member in struct:yasm__assoc_data
52 assoc_data->vector = yasm_xmalloc(assoc_data->alloc *
68 if (assoc_data->vector[i].callback == callback)
69 return assoc_data->vector[i].data;
90 if (assoc_data->vector[i].callback == callback)
91 item = &assoc_data->vector[i];
99 assoc_data->vector =
100 yasm_xrealloc(assoc_data->vector,
103 item = &assoc_data->vector[assoc_data->size-1];
126 assoc_data->vector[
[all...]
/external/chromium_org/ui/base/x/
H A Dx11_menu_list.h8 #include <vector>
32 void InsertMenuWindowXIDs(std::vector<XID>* stack);
39 std::vector<XID> menus_;
/external/chromium_org/ui/gfx/
H A Ddisplay_change_notifier.h8 #include <vector>
29 void NotifyDisplaysChanged(const std::vector<Display>& old_displays,
30 const std::vector<Display>& new_displays);
/external/chromium_org/win8/metro_driver/ime/
H A Dtext_service.h10 #include <vector>
34 // Note: |input_scopes| is defined as std::vector<int32> here rather than
35 // std::vector<InputScope> because the wire format of IPC message
36 // MetroViewerHostMsg_ImeTextInputClientUpdated uses std::vector<int32> to
39 const std::vector<int32>& input_scopes,
40 const std::vector<metro_viewer::CharacterBounds>& character_bounds) = 0;
/external/clang/include/clang/Basic/
H A DTargetOptions.h19 #include <vector>
43 std::vector<std::string> FeaturesAsWritten;
47 std::vector<std::string> Features;

Completed in 4380 milliseconds

<<11121314151617181920>>