HomeSort by relevance Sort by last modified time
    Searched refs:Vector (Results 276 - 300 of 2502) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextCheckerClient.h 34 #include "wtf/Vector.h"
46 virtual void checkGrammarOfString(const String&, Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength) = 0;
LocaleICU.cpp 118 Vector<String, DecimalSymbolsSize> symbols;
168 PassOwnPtr<Vector<String> > LocaleICU::createLabelVector(const UDateFormat* dateFormat, UDateFormatSymbolType type, int32_t startIndex, int32_t size)
171 return PassOwnPtr<Vector<String> >();
173 return PassOwnPtr<Vector<String> >();
175 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>());
181 return PassOwnPtr<Vector<String> >();
186 return PassOwnPtr<Vector<String> >();
192 static PassOwnPtr<Vector<String> > createFallbackWeekDayShortLabels()
194 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializer.cpp 59 #include "wtf/Vector.h"
82 Vector<LocalFrame*>* visitedFrames,
83 Vector<LocalFrame*>* framesToVisit,
84 Vector<KURL>* frameURLs,
85 Vector<KURL>* resourceURLs)
113 Vector<LocalFrame*>* visitedFrames,
114 Vector<LocalFrame*>* framesToVisit,
115 Vector<KURL>* frameURLs,
116 Vector<KURL>* resourceURLs)
156 Vector<SerializedResource> resources
    [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_util_unittest.cpp 89 TEST(Vector, IsEmpty) {
90 Vector<void*> v;
94 TEST(Vector, PushBack) {
95 Vector<int> v;
102 TEST(Vector, PushBack2) {
104 Vector<int> v;
112 TEST(Vector, At) {
114 Vector<int> v;
124 TEST(Vector, IndexOf) {
126 Vector<int> v
    [all...]
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
destructor_access_finalized_field.h 26 Vector<Member<HeapObject> > m_objs;
own_ptr_to_gc_managed_class.h 24 Vector<OwnPtr<HeapObject> > m_objs;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
ErrorTracker.java 18 import java.util.Vector;
36 private Vector testLogs = new Vector();
43 private Vector typesList = new Vector();
82 Vector aVector = (Vector) typesMap.get(zipTypeName);
85 aVector = new Vector();
101 Vector aVector = (Vector) logFiles.get(logFileName)
    [all...]
  /external/javassist/sample/vector/
Sample2.java 1 package sample.vector;
3 public class Sample2 extends java.util.Vector {
Test.j 2 A sample program using sample.vector.VectorAssistant
10 % java sample.preproc.Compiler sample/vector/Test.j
11 % javac sample/vector/Test.java
12 % java sample.vector.Test
15 two class files (sample/vector/intVector.class and
16 sample/vector/StringVector.class).
19 package sample.vector;
21 import java.util.Vector by sample.vector.VectorAssistant(java.lang.String);
22 import java.util.Vector by sample.vector.VectorAssistant(int)
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/
SessionLibrary.cpp 30 using android::Vector;
51 Vector<uint8_t> sessionId;
61 const Vector<uint8_t>& sessionId) {
68 Vector<uint8_t> sessionId;
InitDataParser.cpp 36 using android::Vector;
43 android::status_t InitDataParser::parse(const Vector<uint8_t>& initData,
45 Vector<uint8_t>* licenseRequest) {
47 Vector<const uint8_t*> keyIds;
72 android::status_t InitDataParser::parsePssh(const Vector<uint8_t>& initData,
73 Vector<const uint8_t*>* keyIds) {
125 String8 InitDataParser::generateRequest(const Vector<const uint8_t*>& keyIds) {
  /frameworks/base/include/android_runtime/
android_view_InputQueue.h 23 #include <utils/Vector.h>
73 Vector<Looper*> mAppLoopers;
79 Vector<InputEvent*> mPendingEvents;
80 Vector<key_value_pair_t<InputEvent*, bool> > mFinishedEvents;
  /hardware/intel/common/libstagefrighthw/
WrsOMXPlugin.h 38 #include <utils/Vector.h>
93 Vector<String8> *roles);
99 Vector<WrsOMXCore*> mCores;
100 Vector<WrsOMXComponent> mComponents;
  /hardware/ti/omap4-aah/camera/inc/OMXCameraAdapter/
OMXDCC.h 33 size_t readDCCdir(OMX_PTR buffer, const android::Vector<android::String8 *> &dirPaths);
  /ndk/sources/android/crazy_linker/src/
crazy_linker_util_unittest.cpp 89 TEST(Vector, IsEmpty) {
90 Vector<void*> v;
94 TEST(Vector, PushBack) {
95 Vector<int> v;
102 TEST(Vector, PushBack2) {
104 Vector<int> v;
112 TEST(Vector, At) {
114 Vector<int> v;
124 TEST(Vector, IndexOf) {
126 Vector<int> v
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterPointRepresentation.java 19 import java.util.Vector;
23 private Vector<FilterPoint> mCandidates = new Vector<FilterPoint>();
46 public Vector<FilterPoint> getCandidates() {
  /system/core/libutils/
misc.cpp 34 #include <utils/Vector.h>
47 static Vector<sysprop_change_callback_info>* gSyspropList = NULL;
54 gSyspropList = new Vector<sysprop_change_callback_info>();
77 Vector<sysprop_change_callback_info> listeners;
  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 507 class Vector;
509 // VectorDestructorBase defines the destructor of a vector. This base is used in order to
510 // completely avoid creating a destructor for a vector that does not need to be destructed.
512 // vector has a trivial destructor and we use that in a compiler plugin to ensure the
515 // All non-GC managed vectors need a destructor. This destructor will simply call finalize on the actual vector type.
528 // inlineCapacity is non-zero to allow classes that recursively refer to themselves in vector
548 class Vector : private VectorBuffer<T, inlineCapacity, Allocator>, public VectorDestructorBase<Vector<T, inlineCapacity, Allocator>, T, (inlineCapacity > 0), Allocator::isGarbageCollected> {
549 WTF_USE_ALLOCATOR(Vector, Allocator);
562 Vector()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
PKCS12BagAttributeCarrierImpl.java 9 import java.util.Vector;
22 private Vector pkcs12Ordering;
24 PKCS12BagAttributeCarrierImpl(Hashtable attributes, Vector ordering)
32 this(new Hashtable(), new Vector());
71 Vector getOrdering()
82 out.writeObject(new Vector());
111 this.pkcs12Ordering = (Vector)in.readObject();
  /external/ceres-solver/internal/ceres/
line_search.h 37 #include <vector>
234 void Init(const Vector& position, const Vector& direction);
240 Vector position_;
241 Vector direction_;
244 Vector evaluation_point_;
247 Vector scaled_direction_;
248 Vector gradient_;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
CompositionUnderlineRangeFilterTest.cpp 10 #include "wtf/Vector.h"
20 void initUnderlines(const String& testCase, Vector<CompositionUnderline>* underlines)
23 Vector<String> rangeList;
29 Vector<String> toks;
43 String filterUnderlines(const Vector<CompositionUnderline>& underlines, int indexLo, int indexHi)
56 Vector<CompositionUnderline> underlines;
64 Vector<CompositionUnderline> underlines;
79 Vector<CompositionUnderline> underlines;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFrameSet.h 52 Vector<bool> m_preventResize;
53 Vector<bool> m_allowBorder;
90 Vector<int> m_sizes;
91 Vector<int> m_deltas;
92 Vector<bool> m_preventResize;
93 Vector<bool> m_allowBorder;
114 void layOutAxis(GridAxis&, const Vector<HTMLDimension>&, int availableSpace);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
FetchValidator.java 16 import java.util.Vector;
34 private Vector features;
35 private Vector plugins;
38 private Vector missingPlugins;
39 private Vector missingFeatures;
84 missingPlugins = new Vector();
85 missingFeatures = new Vector();
  /external/junit/src/junit/framework/
TestResult.java 7 import java.util.Vector;
19 // BEGIN android-changed changed types from List<> to Vector<> for API compatibility
20 protected Vector<TestFailure> fFailures;
21 protected Vector<TestFailure> fErrors;
22 protected Vector<TestListener> fListeners;
28 // BEGIN android-changed to Vector
29 fFailures= new Vector<TestFailure>();
30 fErrors= new Vector<TestFailure>();
31 fListeners= new Vector<TestListener>();
  /frameworks/base/tools/aapt/
StringPool.h 54 Vector<size_t> indices;
56 Vector<ResTable_config> configs;
81 Vector<entry_style_span> spans;
101 ssize_t add(const String16& value, const Vector<entry_style_span>& spans,
106 status_t addStyleSpans(size_t idx, const Vector<entry_style_span>& spans);
141 const Vector<size_t>* offsetsForString(const String16& val) const;
154 Vector<entry> mEntries;
161 Vector<size_t> mEntryArray;
164 Vector<entry_style> mEntryStyleArray;
174 Vector<size_t> mOriginalPosToNewPos
    [all...]

Completed in 3129 milliseconds

<<11121314151617181920>>