Searched defs:available (Results 1 - 25 of 235) sorted by relevance

12345678910

/external/chromium_org/device/hid/
H A Dhid_connection_win.h42 bool available() const { return file_.IsValid(); } function in class:device::HidConnectionWin
/external/chromium_org/third_party/skia/tools/timer/
H A DGpuTimer.cpp55 GrGLint available = 0; local
56 while (!available) {
59 &available));
/external/skia/tools/timer/
H A DGpuTimer.cpp55 GrGLint available = 0; local
56 while (!available) {
59 &available));
/external/apache-http/src/org/apache/http/impl/io/
H A DIdentityInputStream.java67 public int available() throws IOException { method in class:IdentityInputStream
/external/chromium_org/chrome/browser/extensions/api/braille_display_private/
H A Dmock_braille_controller.cc16 state->available = available_;
32 void MockBrailleController::SetAvailable(bool available) { argument
33 available_ = available;
/external/chromium_org/chrome/browser/extensions/
H A Drequirements_checker.cc79 void RequirementsChecker::SetWebGLAvailability(bool available) { argument
80 if (!available) {
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DQuery.cpp40 Error Query::isResultAvailable(GLuint *available) argument
42 return mQuery->isResultAvailable(available);
/external/chromium_org/third_party/skia/tests/
H A DObjectPoolTest.cpp24 int available, int blocks) {
25 if (available != pool.available()) {
26 ERRORF(reporter, "%s - Pool available is %d not %d",
27 stage, pool.available(), available);
46 int available = (blocks * kNumItemsPerBlock) - (index + 1); local
47 if (!verifyPool(reporter, pool, "acquire", available, blocks)) {
51 int available = pool.available(); local
21 verifyPool(skiatest::Reporter* reporter, const ObjectPoolType& pool, const char* stage, int available, int blocks) argument
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLBIOSink.java36 public int available() { method in class:OpenSSLBIOSink
46 int maxLength = Math.min(available(), (int) byteCount);
H A DOpenSSLBIOSource.java71 public int available() throws IOException { method in class:OpenSSLBIOSource.ByteBufferInputStream
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DThreadLocalOutputBufferProvider.java25 private final ThreadLocal<Boolean> available; field in class:ThreadLocalOutputBufferProvider
33 available = new ThreadLocal<Boolean>() {
42 if (!available.get()) {
46 available.set(false);
57 available.set(true);
/external/skia/tests/
H A DObjectPoolTest.cpp24 int available, int blocks) {
25 if (available != pool.available()) {
26 ERRORF(reporter, "%s - Pool available is %d not %d",
27 stage, pool.available(), available);
46 int available = (blocks * kNumItemsPerBlock) - (index + 1); local
47 if (!verifyPool(reporter, pool, "acquire", available, blocks)) {
51 int available = pool.available(); local
21 verifyPool(skiatest::Reporter* reporter, const ObjectPoolType& pool, const char* stage, int available, int blocks) argument
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DRandomAccessFileInputStream.java69 int skipBytes = Math.min((int)l, available());
74 @Override public int available() throws IOException { method in class:RandomAccessFileInputStream
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DInputStreamUtil.java42 public static int available(InputStream stream) { method in class:InputStreamUtil
44 return Math.max(CALL_FAILED_STATUS, stream.available());
46 Log.e(LOGTAG, logMessage("available"), e);
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_query_unittest.cc40 GLuint available; local
61 available = 0;
65 &available);
66 EXPECT_TRUE(available);
73 available = 0;
76 &available);
77 EXPECT_TRUE(available);
113 GLuint available = 0; local
129 available = 0;
130 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &available);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMultiColumnFlowThread.h113 void setColumnHeightAvailable(LayoutUnit available) { m_columnHeightAvailable = available; } argument
147 LayoutUnit m_columnHeightAvailable; // Total height available to columns, or 0 if auto.
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DQuery11.cpp85 gl::Error Query11::isResultAvailable(GLuint *available) argument
93 *available = (mQueryFinished ? GL_TRUE : GL_FALSE);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DQuery9.cpp92 gl::Error Query9::isResultAvailable(GLuint *available) argument
100 *available = (mQueryFinished ? GL_TRUE : GL_FALSE);
/external/chromium_org/third_party/icu/source/common/
H A Dbytestream.cpp47 int32_t available = capacity_ - size_; local
48 if (n > available) {
49 n = available;
67 int32_t available = capacity_ - size_; local
68 if (available >= min_capacity) {
69 *result_capacity = available;
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvreader.cpp86 int MkvReader::Length(long long* total, long long* available) { argument
93 if (available)
94 *available = m_length;
/external/chromium_org/third_party/skia/src/core/
H A DSkTObjectPool.h67 * Returns the number of items immediately available without having to
70 int available() const { return fAvailable.getCount(); } function in class:SkTObjectPool
96 * It calls the constructors and then pushes the nodes into the available
/external/chromium_org/third_party/speex/libspeex/
H A Dbuffer.c48 int available; member in struct:SpeexBuffer_
58 st->available = 0;
88 st->available += len;
89 if (st->available > st->size)
91 st->available = st->size;
120 st->available += len;
121 if (st->available > st->size)
123 st->available = st->size;
136 if (len > st->available)
138 SPEEX_MEMSET(data+st->available,
[all...]
/external/emma/core/java12/com/vladium/util/
H A DByteArrayIStream.java3 * This program and the accompanying materials are made available under
5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
79 public final int available () method in class:ByteArrayIStream
/external/guava/guava/src/com/google/common/io/
H A DLimitInputStream.java51 @Override public int available() throws IOException { method in class:LimitInputStream
52 return (int) Math.min(in.available(), left);
H A DMultiInputStream.java67 @Override public int available() throws IOException { method in class:MultiInputStream
71 return in.available();

Completed in 4168 milliseconds

12345678910