/external/chromium_org/third_party/WebKit/Source/platform/text/ |
TextChecking.h | 36 #include "wtf/Vector.h" 57 Vector<String> guesses; 65 Vector<GrammarDetail> details; 80 TextCheckingRequestData(int sequence, const String& text, TextCheckingTypeMask mask, TextCheckingProcessType processType, const Vector<uint32_t>& markers, const Vector<unsigned>& offsets) 94 const Vector<uint32_t>& markers() const { return m_markers; } 95 const Vector<unsigned>& offsets() const { return m_offsets; } 102 Vector<uint32_t> m_markers; 103 Vector<unsigned> m_offsets; 111 virtual void didSucceed(const Vector<TextCheckingResult>&) = 0 [all...] |
/external/chromium_org/third_party/re2/re2/ |
filtered_re2.h | 17 // search text. Then call FirstMatch or AllMatches with a vector of 24 #include <vector> 28 using std::vector; 50 void Compile(vector<string>* strings_to_match); 62 const vector<int>& atoms) const; 67 const vector<int>& atoms, 68 vector<int>* matching_regexps) const; 82 void RegexpsGivenStrings(const vector<int>& matched_atoms, 83 vector<int>* passed_regexps); 86 vector<RE2*> re2_vec_ [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
exhaustive3_test.cc | 14 vector<string> atoms = Split(" ", 22 vector<string> atoms = Split(" ", 35 // Returns a vector of "interesting" UTF8 characters. 38 static const vector<string>& InterestingUTF8() { 40 static vector<string> v; 67 vector<string> atoms = Split(" ", 72 vector<string> ops; // no ops 80 vector<string> atoms = Split(" ", 85 vector<string> ops; // no ops 86 vector<string> alpha = InterestingUTF8() [all...] |
/external/chromium_org/tools/relocation_packer/src/ |
run_length_encoder.h | 43 // count pairs. A final run-length encoded R_ARM_RELATIVE relocations vector 56 #include <vector> 67 // |relocations| is a vector of R_ARM_RELATIVE relocation structs. 68 // |packed| is the vector of packed words into which relocations are packed. 69 static void Encode(const std::vector<Elf32_Rel>& relocations, 70 std::vector<Elf32_Word>* packed); 73 // |packed| is the vector of packed relocations. 74 // |relocations| is a vector of unpacked R_ARM_RELATIVE relocation structs. 75 static void Decode(const std::vector<Elf32_Word>& packed, 76 std::vector<Elf32_Rel>* relocations) [all...] |
/external/chromium_org/ui/base/x/ |
selection_utils.h | 31 UI_BASE_EXPORT std::vector< ::Atom> GetTextAtomsFrom( 34 UI_BASE_EXPORT std::vector< ::Atom> GetURLAtomsFrom( 37 UI_BASE_EXPORT std::vector< ::Atom> GetURIListAtomsFrom( 41 UI_BASE_EXPORT void GetAtomIntersection(const std::vector< ::Atom>& desired, 42 const std::vector< ::Atom>& offered, 43 std::vector< ::Atom>* output); 47 std::vector<unsigned char>* bytes); 50 UI_BASE_EXPORT std::vector<std::string> ParseURIList(const SelectionData& data); 78 const std::vector< ::Atom>& requested_types) const; 81 std::vector< ::Atom> GetTypes() const [all...] |
/external/eigen/bench/btl/generic_bench/init/ |
init_matrix.hh | 23 // The Vector class must satisfy the following part of STL vector concept : 27 template<double init_function(int,int), class Vector> 28 BTL_DONT_INLINE void init_row(Vector & X, int size, int row){ 33 X[j]=typename Vector::value_type(init_function(row,j)); 38 // Matrix is a Vector of Vector 39 // The Matrix class must satisfy the following part of STL vector concept : 42 template<double init_function(int,int),class Vector> 43 BTL_DONT_INLINE void init_matrix(Vector & A, int size) [all...] |
/external/eigen/blas/ |
common.h | 109 Map<Matrix<T,Dynamic,1>, 0, InnerStride<Dynamic> > vector(T* data, int size, int incr) function 115 Map<Matrix<T,Dynamic,1> > vector(T* data, int size) function 127 if(incx<0) vector(ret,n) = vector(x,n,-incx).reverse(); 128 else vector(ret,n) = vector(x,n, incx); 138 if(incx<0) vector(x,n,-incx).reverse() = vector(x_cpy,n); 139 else vector(x,n, incx) = vector(x_cpy,n) [all...] |
/external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ |
ctor_iterator.pass.cpp | 30 std::vector<double> iv = d.intervals(); 34 std::vector<double> dn = d.densities(); 43 std::vector<double> iv = d.intervals(); 47 std::vector<double> dn = d.densities(); 56 std::vector<double> iv = d.intervals(); 60 std::vector<double> dn = d.densities(); 69 std::vector<double> iv = d.intervals(); 74 std::vector<double> dn = d.densities(); 84 std::vector<double> iv = d.intervals(); 90 std::vector<double> dn = d.densities() [all...] |
param_ctor_iterator.pass.cpp | 30 std::vector<double> iv = pa.intervals(); 34 std::vector<double> dn = pa.densities(); 44 std::vector<double> iv = pa.intervals(); 48 std::vector<double> dn = pa.densities(); 58 std::vector<double> iv = pa.intervals(); 62 std::vector<double> dn = pa.densities(); 72 std::vector<double> iv = pa.intervals(); 77 std::vector<double> dn = pa.densities(); 88 std::vector<double> iv = pa.intervals(); 94 std::vector<double> dn = pa.densities() [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/ |
SDL_xbiosinterrupt.S | 42 /*--- Vector installer ---*/ 51 /* Save old mouse vector, set our routine */ 65 /* Save old joystick vector, set our routine */ 85 /*--- Vector restorer ---*/ 94 /* Restore mouse vector */ 101 /* Restore joystick vector */ 114 /*--- Our mouse vector ---*/ 167 /* Jump through old vector */ 185 /*--- Our joystick vector ---*/ 204 /* Jump through old vector */ [all...] |
/external/regex-re2/re2/ |
filtered_re2.h | 17 // search text. Then call FirstMatch or AllMatches with a vector of 24 #include <vector> 28 using std::vector; 50 void Compile(vector<string>* strings_to_match); 62 const vector<int>& atoms) const; 67 const vector<int>& atoms, 68 vector<int>* matching_regexps) const; 82 void RegexpsGivenStrings(const vector<int>& matched_atoms, 83 vector<int>* passed_regexps); 86 vector<RE2*> re2_vec_ [all...] |
/external/regex-re2/re2/testing/ |
exhaustive3_test.cc | 14 vector<string> atoms = Split(" ", 22 vector<string> atoms = Split(" ", 35 // Returns a vector of "interesting" UTF8 characters. 38 static const vector<string>& InterestingUTF8() { 40 static vector<string> v; 67 vector<string> atoms = Split(" ", 72 vector<string> ops; // no ops 80 vector<string> atoms = Split(" ", 85 vector<string> ops; // no ops 86 vector<string> alpha = InterestingUTF8() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ |
ctor_iterator.pass.cpp | 30 std::vector<double> iv = d.intervals(); 34 std::vector<double> dn = d.densities(); 43 std::vector<double> iv = d.intervals(); 47 std::vector<double> dn = d.densities(); 56 std::vector<double> iv = d.intervals(); 60 std::vector<double> dn = d.densities(); 69 std::vector<double> iv = d.intervals(); 74 std::vector<double> dn = d.densities(); 84 std::vector<double> iv = d.intervals(); 90 std::vector<double> dn = d.densities() [all...] |
param_ctor_iterator.pass.cpp | 30 std::vector<double> iv = pa.intervals(); 34 std::vector<double> dn = pa.densities(); 44 std::vector<double> iv = pa.intervals(); 48 std::vector<double> dn = pa.densities(); 58 std::vector<double> iv = pa.intervals(); 62 std::vector<double> dn = pa.densities(); 72 std::vector<double> iv = pa.intervals(); 77 std::vector<double> dn = pa.densities(); 88 std::vector<double> iv = pa.intervals(); 94 std::vector<double> dn = pa.densities() [all...] |
/external/libvorbis/doc/ |
08-residue.tex | 8 A residue vector represents the fine detail of the audio spectrum of 10 curve and performs any channel coupling. A residue vector may 13 the vector does not matter to the residue abstraction. 18 variants (numbered 0, 1 and 2) of the same basic vector encoding 25 Residue format partitions each vector in the vector bundle into chunks, 31 vector is the same in all three variants. 38 \item Each vector is partitioned into multiple equal sized chunks 39 according to configuration specified. If we have a vector size of 46 \item Each partition in each vector has a classification number tha [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/extensions/ |
ExtensionNamespacesManager.java | 23 import java.util.Vector; 36 * Vector of ExtensionNamespaceSupport objects to be used to generate ExtensionHandlers. 38 private Vector m_extensions = new Vector(); 40 * Vector of ExtensionNamespaceSupport objects for predefined ExtensionNamespaces. Elements 41 * from this vector are added to the m_extensions vector when encountered in the stylesheet. 43 private Vector m_predefExtensions = new Vector(7); 45 * Vector of extension namespaces for which sufficient information is not yet available t [all...] |
/external/chromium_org/chrome/browser/chromeos/file_manager/ |
file_browser_handlers.h | 12 #include <vector> 37 // Tasks are stored as a vector in order of priorities. 38 typedef std::vector<const FileBrowserHandler*> FileBrowserHandlerList; 49 const std::vector<GURL>& file_list); 59 const std::vector<fileapi::FileSystemURL>& file_urls,
|
/external/chromium_org/chrome/browser/ui/ |
metro_pin_tab_helper_win.h | 8 #include <vector> 36 const std::vector<content::FaviconURL>& candidates) OVERRIDE; 51 const std::vector<SkBitmap>& bitmaps, 52 const std::vector<gfx::Size>& original_bitmap_sizes); 60 std::vector<content::FaviconURL> favicon_url_candidates_;
|
/external/chromium_org/chromeos/dbus/ |
fake_bluetooth_gatt_characteristic_service_provider.h | 9 #include <vector> 27 const std::vector<std::string>& flags, 28 const std::vector<std::string>& permissions, 33 virtual void SendValueChanged(const std::vector<uint8>& value) OVERRIDE; 40 void SetValue(const std::vector<uint8>& value,
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_profile.h | 13 #include <vector> 64 const std::vector<base::string16>& values); 66 std::vector<base::string16>* values) const; 69 std::vector<base::string16>* values) const; 125 const std::vector<AutofillProfile*>& profiles, 126 std::vector<base::string16>* labels); 136 const std::vector<AutofillProfile*>& profiles, 137 const std::vector<ServerFieldType>* suggested_fields, 140 std::vector<base::string16>* labels); 148 typedef std::vector<const FormGroup*> FormGroupList [all...] |
/external/chromium_org/components/cdm/renderer/ |
android_key_systems.cc | 8 #include <vector> 38 void AddAndroidWidevine(std::vector<KeySystemInfo>* concrete_key_systems) { 57 std::vector<KeySystemInfo>* concrete_key_systems) { 58 std::vector<std::string> key_system_names; 62 for (std::vector<std::string>::const_iterator it = key_system_names.begin();
|
/external/chromium_org/components/keyed_service/core/ |
dependency_graph.h | 10 #include <vector> 34 bool GetConstructionOrder(std::vector<DependencyNode*>* order) 39 bool GetDestructionOrder(std::vector<DependencyNode*>* order) 55 std::vector<DependencyNode*> all_nodes_; 62 std::vector<DependencyNode*> construction_order_;
|
/external/chromium_org/content/browser/ |
message_port_service.h | 10 #include <vector> 22 typedef std::vector<std::pair<base::string16, std::vector<int> > > 36 const std::vector<int>& sent_message_port_ids); 61 const std::vector<int>& sent_message_port_ids);
|
/external/chromium_org/content/child/appcache/ |
appcache_dispatcher.h | 9 #include <vector> 36 void OnStatusChanged(const std::vector<int>& host_ids, 38 void OnEventRaised(const std::vector<int>& host_ids, 40 void OnProgressEventRaised(const std::vector<int>& host_ids, 42 void OnErrorEventRaised(const std::vector<int>& host_ids,
|
/external/chromium_org/content/common/ |
image_messages.h | 6 #include <vector> 37 std::vector<SkBitmap> /* bitmap data */, 40 ImageMsg_DownloadImage. Each entry in the bitmaps vector 41 corresponds to an entry in the sizes vector. If a bitmap 43 std::vector<gfx::Size>)
|