HomeSort by relevance Sort by last modified time
    Searched full:vector (Results 1651 - 1675 of 20677) sorted by null

<<61626364656667686970>>

  /external/chromium_org/third_party/WebKit/Source/platform/network/
ProxyServer.h 30 #include "wtf/Vector.h"
71 // Return a vector of proxy servers for the given URL.
72 PLATFORM_EXPORT Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*);
74 // Converts the given vector of proxy servers to a PAC string, as described in
76 PLATFORM_EXPORT String toString(const Vector<ProxyServer>&);
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextStream.h 31 #include "wtf/Vector.h"
80 TextStream& operator<<(TextStream& ts, const Vector<Item>& vector)
84 unsigned size = vector.size();
86 ts << vector[i]; local
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextPosition.cpp 33 PassOwnPtr<Vector<unsigned> > lineEndings(const String& text)
35 OwnPtr<Vector<unsigned> > result(adoptPtr(new Vector<unsigned>()));
51 OrdinalNumber TextPosition::toOffset(const Vector<unsigned>& lineEndings)
57 TextPosition TextPosition::fromOffsetAndLineEndings(unsigned offset, const Vector<unsigned>& lineEndings)
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine2.h 32 #include <vector>
86 virtual std::vector<webrtc::VideoStream> CreateVideoStreams(
118 const std::vector<VideoCodec>& codecs() const;
119 const std::vector<RtpHeaderExtension>& rtp_header_extensions() const;
156 std::vector<VideoCodec> video_codecs_;
157 std::vector<RtpHeaderExtension> rtp_header_extensions_;
212 virtual bool SetRecvCodecs(const std::vector<VideoCodec>& codecs) OVERRIDE;
213 virtual bool SetSendCodecs(const std::vector<VideoCodec>& codecs) OVERRIDE;
243 const std::vector<RtpHeaderExtension>& extensions) OVERRIDE;
245 const std::vector<RtpHeaderExtension>& extensions) OVERRIDE
    [all...]
  /external/chromium_org/third_party/smhasher/src/
Bitslice.cpp 2 #include <vector>
7 typedef std::vector<uint32_t> slice;
8 typedef std::vector<slice> slice_vec;
54 void Bitslice ( std::vector<hashtype> & hashes, slice_vec & slices )
83 std::vector<int> counts(slices.size(),0);
  /external/chromium_org/third_party/webrtc/base/
fakesslidentity.h 15 #include <vector>
28 explicit FakeSSLCertificate(const std::vector<std::string>& certs)
30 std::vector<std::string>::const_iterator it;
65 std::vector<SSLCertificate*> new_certs(certs_.size());
76 std::vector<FakeSSLCertificate> certs_;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
cb_construct.c 24 * Construct decoded vector from codebook and gains.
28 int16_t *decvector, /* (o) Decoded vector */
33 int16_t veclen /* (i) Length of vector */
50 /* codebook vector construction and construction of total vector */
split_vq.c 25 * split vector quantization
29 int16_t *qX, /* (o) the quantized vector in Q13 */
30 int16_t *index, /* (o) a vector of indexes for all vector
32 int16_t *X, /* (i) the vector to quantize */
  /external/chromium_org/ui/base/ime/
candidate_window.h 9 #include <vector>
69 void GetInfolistEntries(std::vector<InfolistEntry>* entries,
112 const std::vector<Entry>& candidates() const { return candidates_; }
113 std::vector<Entry>* mutable_candidates() { return &candidates_; }
124 std::vector<Entry> candidates_;
  /external/chromium_org/ui/gfx/
font_fallback_win_unittest.cc 13 // fonts vector.
22 // Add a linked font to the mocked vector of linked fonts.
27 virtual const std::vector<Font>* GetLinkedFonts() const OVERRIDE {
32 std::vector<Font> test_linked_fonts;
61 std::vector<std::string> font_names;
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_screen_x11.h 35 void ProcessDisplayChange(const std::vector<gfx::Display>& displays);
44 virtual std::vector<gfx::Display> GetAllDisplays() const OVERRIDE;
63 DesktopScreenX11(const std::vector<gfx::Display>& test_displays);
67 std::vector<gfx::Display> BuildDisplaysFromXRandRInfo();
83 std::vector<gfx::Display> displays_;
  /external/eigen/bench/btl/generic_bench/
bench_parameter.hh 29 // min vector size for axpy bench
31 // max vector size for axpy bench
33 // min matrix size for matrix vector product bench
35 // max matrix size for matrix vector product bench
45 // max size for tiny vector and matrix
  /external/eigen/bench/btl/generic_bench/utils/
size_log.hh 24 // The Vector class must satisfy the following part of STL vector concept :
27 // the vector element are int compatible.
28 template<class Vector>
29 void size_log(const int nb_point, const int size_min, const int size_max, Vector & X)
  /external/libcxx/test/containers/sequences/vector.bool/
emplace_back.pass.cpp 10 // <vector>
11 // vector.bool
15 #include <vector>
24 typedef std::vector<bool> C;
40 typedef std::vector<bool, min_allocator<bool>> C;
push_back.pass.cpp 10 // <vector>
11 // vector<bool>
15 #include <vector>
25 std::vector<bool> c;
38 std::vector<bool, min_allocator<bool>> c;
  /external/llvm/test/CodeGen/X86/
vshift-6.ll 4 ; assertion failure when trying to fold a vector shift left
5 ; by immediate count if the type of the input vector is different
8 ; This happens for example when lowering a shift left of a MVT::v16i8 vector.
22 ; Where 'r' is a vector of type MVT::v16i8, and
23 ; 'count' is the vector shift count.
  /external/llvm/test/Transforms/LoopStrengthReduce/X86/
no_superflous_induction_vars.ll 11 ; %vector.body.
37 br label %vector.body
39 vector.body:
40 %index = phi i64 [ %index.next, %vector.body ], [ %0, %for.body14.lr.ph ]
46 br i1 %6, label %for.end24, label %vector.body
  /external/neven/Embedded/common/src/b_TensorEm/
Flt16Vec.h 36 * Vector with 16 bit components
37 * The vector operations are implemented with respect to maintain high accuracy and
38 * overflow safety for all possible vector configurations.
47 /** array of vector elements */
60 /** initializes vector */
64 /** destroys vector */
70 /** copies vector */
75 /** compares vector */
82 /** returns average of vector without exponent */
85 /** returns norm of vector without exponent *
    [all...]
  /external/stlport/test/unit/
alg_test.cpp 6 #include <vector>
74 vector<int> i;
94 vector<int> years;
223 vector<int> intv;
229 vector<int>::iterator first;
235 vector<int> intv;
241 vector<int>::iterator first;
253 vector<int> intv;
259 vector<int>::iterator first;
265 vector<int> intv
    [all...]
  /external/zopfli/src/zopflipng/
zopflipng_lib.h 26 #include <vector>
50 std::vector<ZopfliPNGFilterStrategy> filter_strategies;
57 std::vector<std::string> keepchunks;
74 int ZopfliPNGOptimize(const std::vector<unsigned char>& origpng,
77 std::vector<unsigned char>* resultpng);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
copy.cpp 68 * PURPOSE: Copy vector x[] to y[]
76 * Purpose : Copy vector x[] to y[]
81 const Word16 x[], /* i : input vector (L) */
82 Word16 y[], /* o : output vector (L) */
83 Word16 L /* i : vector length */
  /frameworks/av/media/libstagefright/include/
MPEG4Extractor.h 27 #include <utils/Vector.h>
84 Vector<SidxEntry> mSidxEntries;
87 Vector<PsshInfo> mPssh;
89 Vector<Trex> mTrex;
100 Vector<uint32_t> mPath;
  /frameworks/av/services/camera/libcameraservice/api1/client2/
StreamingProcessor.h 70 const Vector<int32_t> &outputStreams);
87 status_t dump(int fd, const Vector<String16>& args);
103 Vector<int32_t> mActiveStreamIds;
127 Vector<BufferItemConsumer::BufferItem> mRecordingBuffers;
138 static bool isStreamActive(const Vector<int32_t> &streams,
  /frameworks/base/tools/aapt/
FileFinder.h 13 #include <utils/Vector.h>
25 virtual bool findFiles(String8 basePath, Vector<String8>& extensions,
35 /* findFiles takes a path, a Vector of extensions, and a destination KeyedVector
56 virtual bool findFiles(String8 basePath, Vector<String8>& extensions,
76 Vector<String8>& extensions,
  /frameworks/base/tools/aapt/tests/
MockDirectoryWalker.h 7 #include <utils/Vector.h>
24 StringDirectoryWalker(String8& path, Vector< pair<String8,time_t> >& data)
41 // Advance to next entry in the Vector
77 // Current position in the Vector
82 Vector< pair<String8,time_t> > mData;

Completed in 3778 milliseconds

<<61626364656667686970>>