HomeSort by relevance Sort by last modified time
    Searched defs:only (Results 1 - 25 of 35) sorted by null

1 2

  /external/clang/test/CXX/expr/expr.unary/expr.new/
p2-cxx0x.cpp 1 // 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/dbus/bus/
test-main.c 89 const char *only; local
100 only = argv[2];
102 only = NULL;
115 if (only == NULL || strcmp (only, "expire-list") == 0)
124 if (only == NULL || strcmp (only, "config-parser") == 0)
133 if (only == NULL || strcmp (only, "signals") == 0)
142 if (only == NULL || strcmp (only, "dispatch-sha1") == 0
    [all...]
  /external/mockito/src/org/mockito/verification/
VerificationWithTimeout.java 104 * 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
Timeout.java 79 public VerificationMode only() { method in class:Timeout
80 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.only());
  /external/clang/test/SemaCXX/
dependent-auto.cpp 1 // 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 *>'}}
trailing-return-0x.cpp 1 // 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/mockito/src/org/mockito/internal/verification/
VerificationModeFactory.java 20 public static VerificationMode only() { method in class:VerificationModeFactory
21 return new Only(); //TODO make exception message nicer
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p4.cpp 1 // 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;
p6.cpp 1 // 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<int> testX = x
    [all...]
  /external/autotest/client/common_lib/
profiler_manager.py 51 def only(self): member in class:profiler_manager
52 """ Returns True if job is supposed to be run only with profiling
  /external/mockito/src/org/mockito/
Mockito.java 97 * //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
2042 public static VerificationMode only() { method in class:Mockito
    [all...]
  /external/guice/core/src/com/google/inject/matcher/
Matchers.java 219 public static Matcher<Object> only(Object value) { method in class:Matchers
220 return new Only(value);
223 private static class Only extends AbstractMatcher<Object>
227 public Only(Object value) {
236 return other instanceof Only
237 && ((Only) other).value.equals(value);
245 return "only(" + value + ")";
252 * Returns a matcher which matches only the given object.
  /external/libvorbis/doc/
01-introduction.tex 45 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/guice/core/test/com/google/inject/
TypeConversionTest.java 256 convertToTypes(Matchers.only(TypeLiteral.get(Date.class)) , mockTypeConverter(result));
275 convertToTypes(Matchers.only(TypeLiteral.get(Date.class)), failingTypeConverter());
292 "using BrokenConverter which matches only(java.util.Date) ",
325 convertToTypes(Matchers.only(TypeLiteral.get(Date.class)), mockTypeConverter(null));
340 "using CustomConverter which matches only(java.util.Date) ",
351 convertToTypes(Matchers.only(TypeLiteral.get(Date.class)), mockTypeConverter(-1));
366 "using CustomConverter which matches only(java.util.Date) ",
390 convertToTypes(Matchers.only(TypeLiteral.get(Date.class)), converter);
417 convertToTypes(Matchers.only(TypeLiteral.get(Date.class)), mockTypeConverter(new Date()));
423 convertToTypes(Matchers.only(TypeLiteral.get(Date.class)), mockTypeConverter(new Date()))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_scope.py 94 self.assertEqual(inc(1), 11) # there's only one global
659 with check_warnings(("import \* only allowed at module level", namespace
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_scope.py 94 self.assertEqual(inc(1), 11) # there's only one global
659 with check_warnings(("import \* only allowed at module level", namespace
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_scope.py 94 self.assertEqual(inc(1), 11) # there's only one global
659 with check_warnings(("import \* only allowed at module level", namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_scope.py 94 self.assertEqual(inc(1), 11) # there's only one global
659 with check_warnings(("import \* only allowed at module level", namespace
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cookielib.py 37 import httplib # only for the default HTTP port namespace
222 string timezone (like "UTC", "GMT", "BST" or "EST"). Currently, only the
237 If the year is given with only 2 digits, the function will select the
290 1994-02-03 -- only date
293 19940203 -- only date
533 # Note that, if A or B are IP addresses, the only relevant part of the
683 #a = h[:i] # this line is only here to show what a is
815 """Return true if (and only if) cookie should be accepted from server.
824 """Return true if (and only if) cookie should be returned to server."""
860 """Constructor arguments should be passed as keyword arguments only.""
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
cookielib.py 37 import httplib # only for the default HTTP port namespace
222 string timezone (like "UTC", "GMT", "BST" or "EST"). Currently, only the
237 If the year is given with only 2 digits, the function will select the
290 1994-02-03 -- only date
293 19940203 -- only date
533 # Note that, if A or B are IP addresses, the only relevant part of the
683 #a = h[:i] # this line is only here to show what a is
815 """Return true if (and only if) cookie should be accepted from server.
824 """Return true if (and only if) cookie should be returned to server."""
860 """Constructor arguments should be passed as keyword arguments only.""
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cookielib.py 37 import httplib # only for the default HTTP port namespace
222 string timezone (like "UTC", "GMT", "BST" or "EST"). Currently, only the
237 If the year is given with only 2 digits, the function will select the
290 1994-02-03 -- only date
293 19940203 -- only date
533 # Note that, if A or B are IP addresses, the only relevant part of the
683 #a = h[:i] # this line is only here to show what a is
815 """Return true if (and only if) cookie should be accepted from server.
824 """Return true if (and only if) cookie should be returned to server."""
860 """Constructor arguments should be passed as keyword arguments only.""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cookielib.py 37 import httplib # only for the default HTTP port namespace
222 string timezone (like "UTC", "GMT", "BST" or "EST"). Currently, only the
237 If the year is given with only 2 digits, the function will select the
290 1994-02-03 -- only date
293 19940203 -- only date
533 # Note that, if A or B are IP addresses, the only relevant part of the
683 #a = h[:i] # this line is only here to show what a is
815 """Return true if (and only if) cookie should be accepted from server.
824 """Return true if (and only if) cookie should be returned to server."""
860 """Constructor arguments should be passed as keyword arguments only.""
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
objdump.c 121 struct only struct
125 struct only * next; /* Pointer to the next structure in the list. */
127 /* Pointer to an array of 'only' structures.
129 static struct only * only_list = NULL;
239 -j, --section=NAME Only display information for section NAME\n\
253 --start-address=ADDR Only process data whose address is >= ADDR\n\
254 --stop-address=ADDR Only process data whose address is <= ADDR\n\
368 struct only * only;
373 for (only = only_list; only; only = only->next
365 struct only * only; local
385 struct only * only; local
411 struct only * only; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.24/
truth-0.24.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.26/
truth-0.26.jar 

Completed in 785 milliseconds

1 2