Searched defs:only (Results 1 - 15 of 15) sorted by path

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyRange.cpp78 IDBKeyRange* IDBKeyRange::only(IDBKey* key, ExceptionState& exceptionState) function in class:blink::IDBKeyRange
88 IDBKeyRange* IDBKeyRange::only(ExecutionContext* context, const ScriptValue& keyValue, ExceptionState& exceptionState) function in class:blink::IDBKeyRange
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DNodes.py83 # but only if new code is generated
190 error(self.pos, "%s only allowed in c++" % self.cpp_message)
722 deferred as analyse_declarations is called only once (on the fused
777 # is_kw_only boolean Is a keyword-only argument
819 # This is only arises for empty multi-dimensional arrays.
961 error(self.pos, "can only complexify c numeric types")
1259 error(self.pos, "Decorators can only be followed by functions")
1673 # refnanny only
2689 # this is the only case where a diverging number of
2953 # This is only reall
6783 error(self.pos, "cimport only allowed at module level") namespace
6824 error(self.pos, "cimport only allowed at module level") namespace
6904 error(self.pos, "import * only allowed at module level") namespace
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp4.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++1y
2 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11 -Wno-c++1y-extensions
3 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98 -Wno-c++11-extensions
6 struct only { struct
7 only(T);
8 template<typename U> only(U) = delete;
H A Dp6.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
2 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98 -Wno-c++11-extensions
5 struct only { struct
6 only(T);
7 template<typename U> only(U) = delete;
14 only<const char [16]> testA = a;
15 only<const char **> testP = p;
20 only<unsigned long long> testB = b;
23 only<int> testC = c;
32 only<in
[all...]
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp2-cxx0x.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
4 struct only { struct
5 only(T);
6 template<typename U> only(U) = delete;
10 only<const int*> p = new const auto (0);
11 only<double*> q = new (auto) (0.0);
21 only<int*> r = new auto(1);
24 only<char*> testX = x;
/external/clang/test/SemaCXX/
H A Ddependent-auto.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
4 struct only { struct
5 only(T);
6 template<typename U> only(U) = delete; // expected-note {{here}}
12 only<int> check = x;
30 only<double*> test = p; // expected-error {{conversion function from 'char *' to 'only<double *>'}}
H A Dtrailing-return-0x.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
4 struct only struct
6 only(T) {} function in struct:only
9 only(U) function in struct:only
44 only<double> p1 = i(1.0);
71 only<int> p2 = xx.f(0L);
72 only<double> p3 = xx.g(0L, 1.0);
73 only<double> p4 = xx.get_nested<double>().h(0L, 1.0, 3.14f);
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/iproute2/doc/
H A Dip-cref.tex191 which may change only some of the device parameters given
312 This is the only case when \verb|ip| can move the system to
344 --- only display running interfaces.
405 \item \verb|POINTOPOINT| --- the link has only two ends with one node
424 on broadcast-only links because of high expense, but it is not strictly
430 this mode exists only on broadcast links and is used by bridges and for network
512 is only supported by a few devices.
519 available only for links using VJ header compression.
624 \item \verb|site| --- (IPv6 only) the address is site local,
627 it is valid only o
[all...]
/external/libvorbis/doc/
H A D01-introduction.tex45 packed form, these codebooks occupy only a few kilobytes; the extent
181 settings can be applied not only to all the vectors in a given mode,
189 format. The sixth channel, as is normal in 5.1, is bass only.
193 and a bass-only representation to the bass channel, thus saving space.
196 bass-only representation.
296 \item decode window shape (long windows only)
341 \paragraph{Window shape decode (long windows only)} \label{vorbis:spec:window}
415 Vorbis CODEC}. Vorbis is not limited to only stereo coupling, but
513 of data to return is one-half block consisting of and only of the
/external/mockito/src/org/mockito/
H A DMockito.java97 * //You can mock concrete classes, not only interfaces
133 * Other words: <b>the order of stubbing matters</b> but it is only meaningful rarely,
290 * interactions</b> one-by-one but only those that you are interested in
293 * Also, you can create InOrder object passing only mocks that are relevant for
302 * //using mocks - only mockOne is interacted
335 * <code>verifyNoMoreInteractions()</code> is a handy assertion from the interaction testing toolkit. Use it only when it's relevant.
422 * <code>thenThrow()</code> only. Those two should be <b>just enough</b> to test/test-drive
565 * It is the default answer so it will be used <b>only when you don't</b> stub the method call.
649 * The only reason we added <code>reset()</code> method is to
761 * Note that &#064;{@link InjectMocks} can only b
2042 public static VerificationMode only() { method in class:Mockito
[all...]
/external/mockito/src/org/mockito/internal/verification/
H A DVerificationModeFactory.java20 public static VerificationMode only() { method in class:VerificationModeFactory
/external/mockito/src/org/mockito/verification/
H A DTimeout.java79 public VerificationMode only() { method in class:Timeout
80 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.only());
H A DVerificationWithTimeout.java104 * Allows checking if given method was the only one invoked. E.g:
106 * verify(mock, only()).someMethod();
119 public VerificationMode only(); method in interface:VerificationWithTimeout
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 4579 milliseconds