HomeSort by relevance Sort by last modified time
    Searched refs:Vector (Results 1 - 25 of 2513) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
QuotedPrintable.h 34 #include "wtf/Vector.h"
38 void quotedPrintableEncode(const Vector<char>&, Vector<char>&);
39 void quotedPrintableEncode(const char*, size_t, Vector<char>&);
41 void quotedPrintableDecode(const Vector<char>&, Vector<char>&);
42 void quotedPrintableDecode(const char*, size_t, Vector<char>&);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeInterval.h 33 #include "wtf/Vector.h"
51 void sortShapeIntervals(Vector<ShapeInterval>&);
52 void mergeShapeIntervals(const Vector<ShapeInterval>&, const Vector<ShapeInterval>&, Vector<ShapeInterval>&);
53 void intersectShapeIntervals(const Vector<ShapeInterval>&, const Vector<ShapeInterval>&, Vector<ShapeInterval>&);
54 void subtractShapeIntervals(const Vector<ShapeInterval>&, const Vector<ShapeInterval>&, Vector<ShapeInterval>&)
    [all...]
  /external/clang/test/CodeGenCXX/
noinline-template.cpp 6 // CHECK: define linkonce_odr void @_ZN6VectorIiE13growStorageByEv(%struct.Vector* %this) [[NI:#[0-9]+]]
8 template <class Ty> struct Vector {
11 template <class T> __attribute__((noinline)) void Vector<T>::growStorageBy() {
14 Vector<int> strs;
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Language.h 30 #include "wtf/Vector.h"
35 Vector<String> userPreferredLanguages();
36 Vector<String> userPreferredLanguagesOverride();
37 void overrideUserPreferredLanguages(const Vector<String>&);
38 size_t indexOfBestMatchingLanguageInList(const String& language, const Vector<String>& languageList);
45 Vector<String> platformUserPreferredLanguages();
SharedBufferChunkReader.h 34 #include "wtf/Vector.h"
43 SharedBufferChunkReader(SharedBuffer*, const Vector<char>& separator);
46 void setSeparator(const Vector<char>&);
50 bool nextChunk(Vector<char>& data, bool includeSeparator = false);
57 size_t peek(Vector<char>&, size_t);
66 Vector<char> m_separator;
  /external/v8/src/
natives.h 34 typedef bool (*NativeSourceCallback)(Vector<const char> name,
35 Vector<const char> source,
56 static Vector<const char> GetRawScriptSource(int index);
57 static Vector<const char> GetScriptName(int index);
58 static Vector<const byte> GetScriptsSource();
59 static void SetRawScriptsSource(Vector<const char> raw_source);
strtod.h 36 double Strtod(Vector<const char> buffer, int exponent);
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-encoders/skia/
PNGImageEncoder.h 34 #include "wtf/Vector.h"
45 static bool encode(const SkBitmap&, Vector<unsigned char>* output);
46 static bool encode(const ImageData&, Vector<unsigned char>* output);
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
FormDataBuilder.h 41 static Vector<char> generateUniqueBoundaryString();
42 static void beginMultiPartHeader(Vector<char>&, const CString& boundary, const CString& name);
43 static void addBoundaryToMultiPartHeader(Vector<char>&, const CString& boundary, bool isLastBoundary = false);
44 static void addFilenameToMultiPartHeader(Vector<char>&, const WTF::TextEncoding&, const String& filename);
45 static void addContentTypeToMultiPartHeader(Vector<char>&, const CString& mimeType);
46 static void finishMultiPartHeader(Vector<char>&);
49 static void addKeyValuePairAsFormData(Vector<char>&, const CString& key, const CString& value, FormData::EncodingType = FormData::FormURLEncoded);
50 static void encodeStringAsFormData(Vector<char>&, const CString&);
  /external/clang/test/Index/
targeted-top.h 17 } Vector;
19 static inline int vector_get_x(Vector v) {
  /external/clang/test/SemaCXX/
for-range-unused.cpp 6 struct Vector {
19 Vector<int> vector; local
20 vector.doIt(); // expected-note {{here}}
  /frameworks/native/include/media/drm/
DrmAPI.h 22 #include <utils/Vector.h>
101 virtual status_t openSession(Vector<uint8_t> &sessionId) = 0;
104 virtual status_t closeSession(Vector<uint8_t> const &sessionId) = 0;
134 getKeyRequest(Vector<uint8_t> const &scope,
135 Vector<uint8_t> const &initData,
138 Vector<uint8_t> &request, String8 &defaultUrl) = 0;
150 // in the keySetId vector parameter that can be used to later restore the
154 virtual status_t provideKeyResponse(Vector<uint8_t> const &scope,
155 Vector<uint8_t> const &response,
156 Vector<uint8_t> &keySetId) = 0
    [all...]
  /frameworks/av/drm/mediadrm/plugins/mock/
MockDrmCryptoPlugin.h 58 status_t openSession(Vector<uint8_t> &sessionId);
59 status_t closeSession(Vector<uint8_t> const &sessionId);
61 status_t getKeyRequest(Vector<uint8_t> const &sessionId,
62 Vector<uint8_t> const &initData,
65 Vector<uint8_t> &request, String8 &defaultUrl);
67 status_t provideKeyResponse(Vector<uint8_t> const &sessionId,
68 Vector<uint8_t> const &response,
69 Vector<uint8_t> &keySetId);
71 status_t removeKeys(Vector<uint8_t> const &keySetId);
73 status_t restoreKeys(Vector<uint8_t> const &sessionId
    [all...]
  /frameworks/av/media/libmediaplayerservice/
Drm.h 46 virtual status_t openSession(Vector<uint8_t> &sessionId);
48 virtual status_t closeSession(Vector<uint8_t> const &sessionId);
51 getKeyRequest(Vector<uint8_t> const &sessionId,
52 Vector<uint8_t> const &initData,
55 Vector<uint8_t> &request, String8 &defaultUrl);
57 virtual status_t provideKeyResponse(Vector<uint8_t> const &sessionId,
58 Vector<uint8_t> const &response,
59 Vector<uint8_t> &keySetId);
61 virtual status_t removeKeys(Vector<uint8_t> const &keySetId);
63 virtual status_t restoreKeys(Vector<uint8_t> const &sessionId
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
DashArray.h 29 #include "wtf/Vector.h"
33 typedef Vector<DashArrayElement> DashArray;
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
strtod.h 39 double Strtod(Vector<const char> buffer, int exponent);
  /external/chromium_org/v8/src/
strtod.h 36 double Strtod(Vector<const char> buffer, int exponent);
natives.h 34 typedef bool (*NativeSourceCallback)(Vector<const char> name,
35 Vector<const char> source,
56 static Vector<const char> GetRawScriptSource(int index);
57 static Vector<const char> GetScriptName(int index);
58 static Vector<const byte> GetScriptsSource();
59 static void SetRawScriptsSource(Vector<const char> raw_source);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextChunkBuilder.h 24 #include "wtf/Vector.h"
42 const Vector<SVGTextChunk>& textChunks() const { return m_textChunks; }
45 void buildTextChunks(Vector<SVGInlineTextBox*>& lineLayoutBoxes);
46 void layoutTextChunks(Vector<SVGInlineTextBox*>& lineLayoutBoxes);
49 void addTextChunk(Vector<SVGInlineTextBox*>& lineLayoutBoxes, unsigned boxPosition, unsigned boxCount);
52 void processTextLengthSpacingCorrection(bool isVerticalText, float textLengthShift, Vector<SVGTextFragment>&, unsigned& atCharacter);
53 void processTextAnchorCorrection(bool isVerticalText, float textAnchorShift, Vector<SVGTextFragment>&);
57 Vector<SVGTextChunk> m_textChunks;
  /frameworks/av/include/media/
IDrm.h 41 virtual status_t openSession(Vector<uint8_t> &sessionId) = 0;
43 virtual status_t closeSession(Vector<uint8_t> const &sessionId) = 0;
46 getKeyRequest(Vector<uint8_t> const &sessionId,
47 Vector<uint8_t> const &initData,
50 Vector<uint8_t> &request, String8 &defaultUrl) = 0;
52 virtual status_t provideKeyResponse(Vector<uint8_t> const &sessionId,
53 Vector<uint8_t> const &response,
54 Vector<uint8_t> &keySetId) = 0;
56 virtual status_t removeKeys(Vector<uint8_t> const &keySetId) = 0;
58 virtual status_t restoreKeys(Vector<uint8_t> const &sessionId
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
NoSuchElementExceptionTest.java 21 import java.util.Vector;
32 Vector v = new Vector();
48 Vector v = new Vector();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetCollection.h 39 #include "wtf/Vector.h"
60 Vector<RefPtr<CSSStyleSheet> >& activeAuthorStyleSheets() { return m_activeAuthorStyleSheets; }
61 Vector<RefPtr<StyleSheet> >& styleSheetsForStyleSheetList() { return m_styleSheetsForStyleSheetList; }
62 const Vector<RefPtr<CSSStyleSheet> >& activeAuthorStyleSheets() const { return m_activeAuthorStyleSheets; }
63 const Vector<RefPtr<StyleSheet> >& styleSheetsForStyleSheetList() const { return m_styleSheetsForStyleSheetList; }
79 void collectStyleSheets(DocumentStyleSheetCollection* collections, Vector<RefPtr<StyleSheet> >& styleSheets, Vector<RefPtr<CSSStyleSheet> >& activeSheets);
81 StyleResolverUpdateType compareStyleSheets(const Vector<RefPtr<CSSStyleSheet> >& oldStyleSheets, const Vector<RefPtr<CSSStyleSheet> >& newStylesheets, Vector<StyleSheetContents*>& addedSheets)
    [all...]
  /external/llvm/include/llvm/ADT/
SmallSet.h 35 SmallVector<T, N> Vector;
42 bool empty() const { return Vector.empty() && Set.empty(); }
44 return isSmall() ? Vector.size() : Set.size();
51 return vfind(V) != Vector.end();
64 if (I != Vector.end()) // Don't reinsert if it already exists.
66 if (Vector.size() < N) {
67 Vector.push_back(V);
71 // Otherwise, grow from vector to set.
72 while (!Vector.empty()) {
73 Set.insert(Vector.back())
    [all...]
  /external/android-mock/tests/com/google/android/testing/mocking/
FileUtilsTest.java 21 import java.util.Vector;
45 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.CUPCAKE));
47 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.DONUT));
49 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.ECLAIR_0_1));
51 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.ECLAIR_MR1));
53 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.FROYO));
55 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.UNKNOWN));
60 FileUtils.getSubclassNameFor(Vector.class, SdkVersion.CUPCAKE));
62 FileUtils.getSubclassNameFor(Vector.class, SdkVersion.DONUT));
64 FileUtils.getSubclassNameFor(Vector.class, SdkVersion.ECLAIR_0_1))
    [all...]
  /external/ceres-solver/include/ceres/
normal_prior.h 46 // where, the matrix A and the vector b are fixed and x is the
52 // where, mu is a vector and S is a covariance matrix, then, A =
61 // Check that the number of rows in the vector b are the same as the
63 NormalPrior(const Matrix& A, const Vector& b);
70 Vector b_;

Completed in 412 milliseconds

1 2 3 4 5 6 7 8 91011>>