/external/mockito/src/test/java/org/mockito/internal/verification/checkers/ |
NumberOfInvocationsCheckerTest.java | 16 import org.junit.Rule; 41 @Rule 44 @Rule
|
/external/mockito/src/test/java/org/mockitousage/matchers/ |
VarargsTest.java | 15 import org.junit.Rule; 28 @Rule 29 public MockitoRule mockitoRule = MockitoJUnit.rule(); 30 @Rule
|
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/android/ |
HttpResponseCacheTest.java | 36 import org.junit.Rule; 52 @Rule public TemporaryFolder cacheRule = new TemporaryFolder(); 53 @Rule public MockWebServer server = new MockWebServer();
|
/external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/ |
OkUrlFactoryTest.java | 23 import org.junit.Rule; 33 @Rule public MockWebServer server = new MockWebServer(); 34 @Rule public InMemoryFileSystem fileSystem = new InMemoryFileSystem();
|
/frameworks/base/apct-tests/perftests/core/src/android/view/ |
ViewShowHidePerfTest.java | 29 import android.support.test.rule.ActivityTestRule; 35 import org.junit.Rule; 47 @Rule 50 @Rule
|
/frameworks/support/dynamic-animation/tests/src/android/support/dynamicanimation/tests/ |
FlingTests.java | 35 import android.support.test.rule.ActivityTestRule; 40 import org.junit.Rule; 50 @Rule 55 @Rule
|
/frameworks/support/wear/tests/src/android/support/wear/widget/ |
ScrollManagerTest.java | 27 import android.support.test.rule.ActivityTestRule; 33 import org.junit.Rule; 49 @Rule 52 @Rule
|
WearableRecyclerViewTest.java | 41 import android.support.test.rule.ActivityTestRule; 49 import org.junit.Rule; 63 @Rule 66 @Rule
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.objectweb.asm_3.2.0.v200909071300.jar | |
/external/clang/lib/StaticAnalyzer/Checkers/ |
GenericTaintChecker.cpp | 142 /// Get the propagation rule for a given function. 167 /// taint rule. 206 TaintPropagationRule Rule = llvm::StringSwitch<TaintPropagationRule>(Name) 227 if (!Rule.isNull()) 228 return Rule; 251 if (Rule.isNull()) { 303 // First, try generating a propagation rule for this function. 304 TaintPropagationRule Rule = 306 if (!Rule.isNull()) { 307 State = Rule.process(CE, C) [all...] |
/build/blueprint/ |
scope.go | 45 // A Rule represents a Ninja build rule that will be written to the output 47 type Rule interface { 61 rules map[string]Rule 70 rules: make(map[string]Rule), 147 func (s *basicScope) IsRuleVisible(rule Rule) bool { 148 _, isBuiltin := rule.(*builtinRule) 153 name := rule.name() 156 if s.rules[name] == rule { [all...] |
singleton_ctx.go | 40 Rule(pctx PackageContext, name string, params RuleParams, argNames ...string) Rule 146 func (s *singletonContext) Rule(pctx PackageContext, name string, 147 params RuleParams, argNames ...string) Rule {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
FdfParserLite.py | [all...] |
/build/soong/android/ |
module.go | 36 Rule blueprint.Rule 425 Rule: blueprint.Phony, 437 Rule: blueprint.Phony, 453 Rule: blueprint.Phony, 520 Rule: ErrorRule, 543 Rule: params.Rule, 667 Rule: Cp, 693 Rule: Symlink [all...] |
/build/soong/cc/ |
gen.go | 66 Rule: yacc, 82 Rule: aidl, 97 Rule: lex,
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
NFAFactory.java | 52 public Rule getCurrentRule() { 56 public void setCurrentRule(Rule currentRule) { 60 Rule currentRule = null; 218 /** For reference to rule r, build 222 * where (r) is the start of rule r and the trailing o is not linked 223 * to from rule ref state directly (it's done thru the transition(0) 226 * If the rule r is just a list of tokens, it's block will be just 228 * the rule reference, but i'm not doing this yet as I'm not sure 233 public StateCluster build_RuleRef(Rule refDef, NFAState ruleStart) { 234 //System.out.println("building ref to rule "+nfa.grammar.name+"."+refDef.name) [all...] |
/external/bison/data/ |
lalr1.cc | 180 /// - if negative, reduce the rule which number is the opposite. 190 /// For a rule, its LHS. 192 /// For a rule, its RHS length. 206 /// For each rule, the index of the first RHS symbol in \a yyrhs_. 208 /// For each rule, its source line number. 212 /// Report on the debug stream that the rule \a r is going to be reduced. 324 # define YY_REDUCE_PRINT(Rule) \ 327 yy_reduce_print_ (Rule); \ 340 # define YY_REDUCE_PRINT(Rule) static_cast<void>(0) 757 /* Do not reclaim the symbols of the rule which action triggere [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
ConnectionReuseTest.java | 26 import org.junit.Rule; 34 @Rule public final TestRule timeout = new Timeout(30_000); 35 @Rule public final MockWebServer server = new MockWebServer();
|
/frameworks/base/services/tests/servicestests/src/com/android/server/storage/ |
DiskStatsLoggingServiceTest.java | 54 import org.junit.Rule; 69 @Rule public TemporaryFolder mTemporaryFolder; 70 @Rule public TemporaryFolder mDownloads;
|
/cts/hostsidetests/appsecurity/test-apps/IsolatedSplitApp/src/com/android/cts/isolatedsplitapp/ |
SplitAppTest.java | 31 import android.support.test.rule.ActivityTestRule; 34 import org.junit.Rule; 63 @Rule 67 // Do not launch this activity lazily. We use this rule to launch all feature Activities, 69 @Rule 74 @Rule
|
/developers/build/prebuilts/gradle/PictureInPicture/kotlinApp/app/src/androidTest/java/com/example/android/pictureinpicture/ |
MainActivityTest.kt | 29 import android.support.test.rule.ActivityTestRule 41 import org.junit.Rule 49 @Rule @JvmField 50 val rule = ActivityTestRule(MainActivity::class.java) 62 rule.runOnUiThread { 64 assertTrue(rule.activity.isInPictureInPictureMode) 65 val view = rule.activity.findViewById(R.id.movie) as MovieView 88 rule.runOnUiThread { rule.activity.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE } 90 rule.runOnUiThread [all...] |
/developers/samples/android/media/PictureInPicture/kotlinApp/app/src/androidTest/java/com/example/android/pictureinpicture/ |
MainActivityTest.kt | 29 import android.support.test.rule.ActivityTestRule 41 import org.junit.Rule 49 @Rule @JvmField 50 val rule = ActivityTestRule(MainActivity::class.java) 62 rule.runOnUiThread { 64 assertTrue(rule.activity.isInPictureInPictureMode) 65 val view = rule.activity.findViewById(R.id.movie) as MovieView 88 rule.runOnUiThread { rule.activity.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE } 90 rule.runOnUiThread [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/ |
TreeRewriteParser.m | 74 #pragma mark Dynamic Rule Scopes 76 #pragma mark Rule return scopes start 200 * $ANTLR start rule 201 * /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/treerewrite/TreeRewrite.g:8:1: rule : INT subrule -> ^( subrule INT ) ; 203 - (TreeRewriteParser_rule_return *) rule 225 description:@"rule subrule"] retain]; 243 // rule labels: retval 245 // rule list labels: 278 // token+rule list labels 297 /* $ANTLR end rule */ [all...] |
/external/chromium-trace/catapult/common/eslint/rules/ |
catapult-camelcase.js | 7 * @fileoverview Rule to flag non-camelcased identifiers 14 // Rule Definition 60 * Reports an AST node as a rule violation.
|
/prebuilts/tools/common/m2/repository/commons-digester/commons-digester/1.6/ |
commons-digester-1.6.jar | |