HomeSort by relevance Sort by last modified time
    Searched defs:only (Results 1 - 25 of 37) 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/mockito/src/main/java/org/mockito/verification/
VerificationAfterDelay.java 59 * Verifies that there the given method is invoked and is the only method invoked. This will wait the full
62 VerificationMode only(); method in interface:VerificationAfterDelay
VerificationWithTimeout.java 72 * Allows checking if given method was the only one invoked. E.g:
74 * verify(mock, only()).someMethod();
87 VerificationMode only(); method in interface:VerificationWithTimeout
  /external/mockito/src/test/java/org/mockito/internal/verification/
OnlyTest.java 22 Only only = new Only(); field in class:OnlyTest
54 only.verify(new VerificationDataStub(new InvocationMatcher(invocation), invocation));
68 only.verify(new VerificationDataStub(new InvocationBuilder().toInvocationMatcher(), invocation));
  /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/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/main/java/org/mockito/internal/verification/
VerificationModeFactory.java 20 public static VerificationMode only() { method in class:VerificationModeFactory
21 return new Only(); //TODO make exception message nicer
VerificationWrapper.java 44 public VerificationMode only() { method in class:VerificationWrapper
45 return copySelfWithNewVerificationMode(VerificationModeFactory.only());
  /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/capstone/bindings/vb6/
Module1.bas 66 CS_OPT_SYNTAX_NOREGNAME ' Prints register name with only number (CS_OPT_SYNTAX)
89 'NOTE: All information in cs_detail is only available when CS_OPT_DETAIL = CS_OPT_ON
139 ' NOTE: detail pointer is only valid when both requirements below are met:
144 lpDetail As Long ' points to a cs_detail structure NOTE: only available when CS_OPT_DETAIL = CS_OPT_ON
182 ' NOTE: if you only care about returned value, but not major and minor values,
228 ' NOTE: this must be only called when there is no longer usage of Capstone,
490 ' NOTE: this API is only valid when detail option is ON (which is OFF by default).
512 ' NOTE: this API is only valid when detail option is ON (which is OFF by default)
533 ' NOTE: this API is only valid when detail option is ON (which is OFF by default)
553 ' NOTE: this API is only valid when detail option is ON (which is OFF by default)
    [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/mockito/src/main/java/org/mockito/
Mockito.java 107 * Mockito follows <a href="http://semver.org/">semantic versioning</a> and contains breaking changes only on major version upgrades.
223 * Other words: <b>the order of stubbing matters</b> but it is only meaningful rarely,
378 * interactions</b> one-by-one but only those that you are interested in
381 * Also, you can create an InOrder object passing only the mocks that are relevant for
390 * //using mocks - only mockOne is interacted
423 * <code>verifyNoMoreInteractions()</code> is a handy assertion from the interaction testing toolkit. Use it only when it's relevant.
660 * It is the default answer so it will be used <b>only when you don't</b> stub the method call.
2712 public static VerificationMode only() { method in class:Mockito
    [all...]
  /frameworks/av/services/mediaanalytics/
MediaAnalyticsService.cpp 166 // trusted source, only override default values
251 String16 onlyOption("-only");
252 std::string only; local
299 only = value.string();
306 result.append("-only X process records for component X\n");
325 dumpRecent(result, ts_since, only.c_str());
381 void MediaAnalyticsService::dumpRecent(String8 &result, nsecs_t ts_since, const char * only)
386 if (only != NULL && *only == '\0') {
387 only = NULL
    [all...]
  /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...]
  /toolchain/binutils/binutils-2.27/binutils/
objdump.c 122 struct only struct
126 struct only * next; /* Pointer to the next structure in the list. */
128 /* Pointer to an array of 'only' structures.
130 static struct only * only_list = NULL;
240 -j, --section=NAME Only display information for section NAME\n\
254 --start-address=ADDR Only process data whose address is >= ADDR\n\
255 --stop-address=ADDR Only process data whose address is <= ADDR\n\
369 struct only * only;
374 for (only = only_list; only; only = only->next
366 struct only * only; local
386 struct only * only; local
412 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 
  /prebuilts/tools/common/m2/repository/org/reflections/reflections/0.9.10/
reflections-0.9.10.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.2.29/
mockito-core-2.2.29.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.2.5/
mockito-core-2.2.5.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.7.1/
mockito-core-2.7.1.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.7.6/
mockito-core-2.7.6.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
mockito-core-1.10.19.jar 

Completed in 442 milliseconds

1 2