HomeSort by relevance Sort by last modified time
    Searched full:fixtures (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountManagerUnaffiliatedAuthenticatorTests.java 25 import android.accounts.cts.common.Fixtures;
60 * (see Fixtures.getFixtureAccountNames()).
77 Fixtures.ACCOUNT_UNAFFILIATED_FIXTURE_SUCCESS);
85 Fixtures.TYPE_STANDARD_UNAFFILIATED,
98 Fixtures.ACCOUNT_UNAFFILIATED_FIXTURE_SUCCESS,
108 Fixtures.ACCOUNT_UNAFFILIATED_FIXTURE_SUCCESS,
118 Fixtures.ACCOUNT_UNAFFILIATED_FIXTURE_SUCCESS,
129 Fixtures.ACCOUNT_UNAFFILIATED_FIXTURE_SUCCESS);
137 Fixtures.ACCOUNT_UNAFFILIATED_FIXTURE_SUCCESS);
145 Fixtures.ACCOUNT_UNAFFILIATED_FIXTURE_SUCCESS
    [all...]
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/
TestAccountAuthenticator.java 67 accountName = options.getString(Fixtures.KEY_ACCOUNT_NAME);
68 isCallbackRequired = options.getBoolean(Fixtures.KEY_CALLBACK_REQUIRED, false);
73 if (accountName.startsWith(Fixtures.PREFIX_NAME_SUCCESS)) {
77 } else if (accountName.startsWith(Fixtures.PREFIX_NAME_INTERVENE)) {
84 intent.putExtra(Fixtures.KEY_RESULT, eventualActivityResultData);
85 intent.putExtra(Fixtures.KEY_CALLBACK, response);
122 options != null && options.getBoolean(Fixtures.KEY_CALLBACK_REQUIRED);
123 if (account.name.startsWith(Fixtures.PREFIX_NAME_SUCCESS)) {
128 } else if (account.name.startsWith(Fixtures.PREFIX_NAME_INTERVENE)) {
137 intent.putExtra(Fixtures.KEY_RESULT, eventualActivityResultData)
    [all...]
TestAuthenticatorActivity.java 30 AccountAuthenticatorResponse response = intent.getParcelableExtra(Fixtures.KEY_CALLBACK);
31 Intent result = intent.getParcelableExtra(Fixtures.KEY_RESULT);
Fixtures.java 27 public final class Fixtures {
73 private Fixtures() {}
  /external/chromium-trace/catapult/telemetry/third_party/mox3/
requirements.txt 6 fixtures>=1.3.1
  /external/chromium-trace/catapult/third_party/mox3/
requirements.txt 6 fixtures>=1.3.1
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/
run_tests.js 5 var fixturesDir = path.join(__dirname, './fixtures'),
  /external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
after_streaming_fixture.cc 11 #include "webrtc/voice_engine/test/auto_test/fixtures/after_streaming_fixture.h"
after_streaming_fixture.h 14 #include "webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.h"
after_initialization_fixture.cc 12 #include "webrtc/voice_engine/test/auto_test/fixtures/after_initialization_fixture.h"
  /cts/tests/tests/accounts/CtsUnaffiliatedAccountAuthenticators/src/android/accounts/cts/unaffiliated/
StdAccountAuthService.java 19 import android.accounts.cts.common.Fixtures;
33 new TestAccountAuthenticator(this, Fixtures.TYPE_STANDARD_UNAFFILIATED);
  /external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/
fixture.py 18 import fixtures
23 class MoxStubout(fixtures.Fixture):
  /external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/tests/
test_stubout.py 18 import fixtures
30 self.useFixture(fixtures.MonkeyPatch(
  /external/chromium-trace/catapult/third_party/mox3/mox3/
fixture.py 18 import fixtures
23 class MoxStubout(fixtures.Fixture):
  /external/chromium-trace/catapult/third_party/mox3/mox3/tests/
test_stubout.py 18 import fixtures
30 self.useFixture(fixtures.MonkeyPatch(
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
hardware_before_initializing_test.cc 12 #include "webrtc/voice_engine/test/auto_test/fixtures/before_initialization_fixture.h"
voe_base_misc_test.cc 11 #include "webrtc/voice_engine/test/auto_test/fixtures/before_initialization_fixture.h"
  /external/webrtc/webrtc/voice_engine/
voice_engine.gyp 196 'test/auto_test/fixtures/after_initialization_fixture.cc',
197 'test/auto_test/fixtures/after_initialization_fixture.h',
198 'test/auto_test/fixtures/after_streaming_fixture.cc',
199 'test/auto_test/fixtures/after_streaming_fixture.h',
200 'test/auto_test/fixtures/before_initialization_fixture.cc',
201 'test/auto_test/fixtures/before_initialization_fixture.h',
202 'test/auto_test/fixtures/before_streaming_fixture.cc',
203 'test/auto_test/fixtures/before_streaming_fixture.h',
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractCollectionTest.java 57 final Collection<String> fixtures = Arrays.asList("0", "1", "2"); local
62 assertTrue(fixtures.contains(object));
79 assertTrue(ac.addAll(fixtures));
86 final Collection<String> fixtures = Arrays.asList("0", "1", "2"); local
91 assertTrue(fixtures.contains(object));
108 assertTrue(ac.containsAll(fixtures));
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
ContactListener.java 20 /** Called when two fixtures begin to touch. */
23 /** Called when two fixtures cease to touch. */
Body.java 40 /** Fixtures of this body **/
41 private Array<Fixture> fixtures = new Array<Fixture>(2); field in class:Body
61 for (int i = 0; i < fixtures.size; i++)
62 this.world.freeFixtures.free(fixtures.get(i));
63 fixtures.clear();
77 this.world.fixtures.put(fixture.addr, fixture);
78 this.fixtures.add(fixture);
110 this.world.fixtures.put(fixture.addr, fixture);
111 this.fixtures.add(fixture);
123 * fixtures attached to a body are implicitly destroyed when the body is destroyed
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
Body.java 32 final Array<Fixture> fixtures = new Array<Fixture>(); field in class:Body
235 /** Set the mass properties to override the mass properties of the fixtures. Note that this changes the center of mass position.
236 * Note that creating or destroying fixtures can also alter the mass. This function has no effect if the body isn't dynamic.
245 /** This resets the mass properties to the sum of the mass properties of the fixtures. This normally does not need to be called
388 * flag of true, all fixtures will be added to the broad-phase. If you pass a flag of false, all fixtures will be removed from
389 * the broad-phase and all contacts will be destroyed. Fixtures and joints are otherwise unaffected. You may continue to
390 * create/destroy fixtures and joints on inactive bodies. Fixtures on an inactive body are implicitly inactive and will not
421 fixtures.add(fixture)
    [all...]
ContactListener.java 20 /** Called when two fixtures begin to touch. */
23 /** Called when two fixtures cease to touch. */
  /external/google-benchmark/test/
map_test.cc 32 // Using fixtures.
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
FixtureProxy.java 29 * This proxy is used internally to connect fixtures to the broad-phase.

Completed in 701 milliseconds

1 2 3 4 5 6