Searched defs:setSize (Results 1 - 25 of 95) sorted by relevance

1234

/external/autotest/client/site_tests/video_WebRtcMainFeedSwitching/
H A Dmain-feed-switching.js43 setSize(videoElement, MAIN_FEED_RESOLUTION);
46 setSize(videoElement, SMALL_FEED_RESOLUTION);
98 function setSize(element, size) { function
/external/deqp/framework/common/
H A DtcuSurface.cpp52 void Surface::setSize (int width, int height) function in class:Surface
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStackExtensions.cs75 public static void setSize<T>( this Stack<T> stack, int size ) method in class:Antlr.Runtime.JavaExtensions.StackExtensions
H A DListExtensions.cs174 public static void setSize<T>( this List<T> list, int size ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
/external/llvm/include/llvm/MC/
H A DMCSymbolELF.h23 void setSize(const MCExpr *SS) { SymbolSize = SS; } function in class:llvm::MCSymbolELF
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineCodeInfo.h32 void setSize(size_t s) { function in class:llvm::MachineCodeInfo
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DGlTextureFrameBuffer.java47 * when calling this function. The framebuffer is not complete until setSize() is called.
85 public void setSize(int width, int height) { method in class:GlTextureFrameBuffer
/external/replicaisland/src/com/replica/replicaisland/
H A DObjectPool.java33 setSize(DEFAULT_SIZE);
38 setSize(size);
63 private void setSize(int size) { method in class:ObjectPool
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntArrayList.java52 setSize(i); // unlike definition of set in ArrayList, set size
68 public void setSize(int newSize) { method in class:IntArrayList
/external/deqp/framework/platform/win32/
H A DtcuWin32Window.cpp77 setSize(width, height);
104 void Window::setSize (int width, int height) function in class:tcu::win32::Window
/external/guava/guava/src/com/google/common/base/
H A DSmallCharMatcher.java74 * returned size is the smallest power of two that can hold setSize elements
77 @VisibleForTesting static int chooseTableSize(int setSize) { argument
78 if (setSize == 1) {
83 int tableSize = Integer.highestOneBit(setSize - 1) << 1;
84 while (tableSize * DESIRED_LOAD_FACTOR < setSize) {
/external/icu/icu4c/source/common/
H A Duvectr64.cpp75 setSize(other.count);
196 void UVector64::setSize(int32_t newSize) { function in class:UVector64
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DRow.java34 public void setSize(int size) { method in class:Row
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DIntVector.java115 public final void setSize(int sz) method in class:IntVector
H A DObjectVector.java115 public final void setSize(int sz) method in class:ObjectVector
H A DSuballocatedIntVector.java134 public void setSize(int sz) method in class:SuballocatedIntVector
308 * Wipe it out. Currently defined as equivalent to setSize(0).
423 * exception (see below), may return zero, or (if setSize has previously
/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp75 void setSize(FillSize f) { m_sizeType = f.type;} function in class:rdar11293995::FillLayer
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSet.java242 * returned size is the smallest power of two that can hold setSize elements
245 * <p>Do not call this method with setSize < 2.
247 @VisibleForTesting static int chooseTableSize(int setSize) { argument
249 if (setSize < CUTOFF) {
251 int tableSize = Integer.highestOneBit(setSize - 1) << 1;
252 while (tableSize * DESIRED_LOAD_FACTOR < setSize) {
259 checkArgument(setSize < MAX_TABLE_SIZE, "collection too large");
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSetTest.java196 private void verifyTableSize(int inputSize, int setSize, int tableSize) { argument
199 builder.add(i % setSize);
203 assertEquals("Input size " + inputSize + " and set size " + setSize,
/external/parameter-framework/upstream/parameter/
H A DParameterBlackboard.cpp36 void CParameterBlackboard::setSize(size_t size) function in class:CParameterBlackboard
H A DParameterType.cpp54 void CParameterType::setSize(size_t size) function in class:CParameterType
/external/skia/include/views/
H A DSkView.h63 void setSize(SkScalar width, SkScalar height);
64 void setSize(const SkPoint& size) { this->setSize(size.fX, size.fY); } function in class:SkView
65 void setWidth(SkScalar width) { this->setSize(width, fHeight); }
66 void setHeight(SkScalar height) { this->setSize(fWidth, height); }
/external/skia/src/views/
H A DSkView.cpp37 void SkView::setSize(SkScalar width, SkScalar height) { function in class:SkView
/external/skqp/include/views/
H A DSkView.h63 void setSize(SkScalar width, SkScalar height);
64 void setSize(const SkPoint& size) { this->setSize(size.fX, size.fY); } function in class:SkView
65 void setWidth(SkScalar width) { this->setSize(width, fHeight); }
66 void setHeight(SkScalar height) { this->setSize(fWidth, height); }
/external/skqp/src/views/
H A DSkView.cpp37 void SkView::setSize(SkScalar width, SkScalar height) { function in class:SkView

Completed in 664 milliseconds

1234