HomeSort by relevance Sort by last modified time
    Searched defs:targets (Results 201 - 225 of 1054) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/deqp/modules/glshared/
glsVertexArrayTests.cpp 69 static const char* targets[] = local
75 return de::getSizedArrayElement<Array::TARGET_LAST>(targets, (int)target);
631 static const GLenum targets[] = local
637 return de::getSizedArrayElement<Array::TARGET_LAST>(targets, (int)target);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
LanguageTestFmwk.java 241 String[] targets = data.getFullPluralizedFormTargets(); local
262 xAssertEquals(u.toString() + c, targets, n++, string); local
270 String[] targets = data.getMediumFormTargets(); local
285 xAssertEquals(u.toString(), targets, n++, string); local
292 String[] targets = data.getShortFormTargets(); local
307 xAssertEquals(u.toString(), targets, n++, string); local
314 String[] targets = data.getCustomMinuteTargets(); local
328 xAssertEquals(targets, n++, pf.format(p));
330 xAssertEquals(targets, n++, pf.format(p));
337 String[] targets = data.getLimitedUnitTargets() local
429 String[] targets = data.getHalfUnitTargets(); local
451 xAssertEquals(u.toString(), targets, n++, string); local
460 String[] targets = data.getFractionalUnitTargets(); local
482 xAssertEquals(u.toString(), targets, n++, string); local
490 String[] targets = data.getMultipleUnitTargets(); local
    [all...]
  /external/icu/icu4c/source/i18n/
transreg.cpp 67 // initial estimate for number of targets for source "Any", "Lat"
216 * Spec class for sources and targets.
775 Hashtable *targets = (Hashtable*) specDAG.get(source); local
776 return (targets == 0) ? 0 : targets->count();
782 Hashtable *targets = (Hashtable*) specDAG.get(source); local
783 if (targets == 0) {
790 e = targets->nextElement(pos);
805 Hashtable *targets = (Hashtable*) specDAG.get(source); local
806 if (targets == 0)
824 Hashtable *targets = (Hashtable*) specDAG.get(source); local
974 Hashtable *targets = (Hashtable*) specDAG.get(source); local
1019 Hashtable *targets = (Hashtable*) specDAG.get(source); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
LanguageTestFmwk.java 240 String[] targets = data.getFullPluralizedFormTargets(); local
261 xAssertEquals(u.toString() + c, targets, n++, string); local
269 String[] targets = data.getMediumFormTargets(); local
284 xAssertEquals(u.toString(), targets, n++, string); local
291 String[] targets = data.getShortFormTargets(); local
306 xAssertEquals(u.toString(), targets, n++, string); local
313 String[] targets = data.getCustomMinuteTargets(); local
327 xAssertEquals(targets, n++, pf.format(p));
329 xAssertEquals(targets, n++, pf.format(p));
336 String[] targets = data.getLimitedUnitTargets() local
428 String[] targets = data.getHalfUnitTargets(); local
450 xAssertEquals(u.toString(), targets, n++, string); local
459 String[] targets = data.getFractionalUnitTargets(); local
481 xAssertEquals(u.toString(), targets, n++, string); local
489 String[] targets = data.getMultipleUnitTargets(); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_private.h 306 struct draw_so_target *targets[PIPE_MAX_SO_BUFFERS]; member in struct:draw_context::__anon29393
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_context.h 88 struct pipe_stream_output_target *targets[PIPE_MAX_SO_BUFFERS]; member in struct:fd_streamout_stateobj
  /frameworks/base/core/java/android/app/
FragmentTransition.java 154 final ArrayList<String> targets; local
156 targets = record.mSharedElementSourceNames;
160 targets = record.mSharedElementTargetNames;
164 String targetName = targets.get(i);
240 // Swap the shared element targets
350 * enter and exit transition targets after the call to
393 * targets all shared elements to ensure that no other Views are targeted. The shared element
1035 List<View> targets = transition.getTargets(); local
1070 List<View> targets = transition.getTargets(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/om/
OverlayManagerService.java 122 * Read-access is granted if the request targets the same Android user as
290 final List<String> targets = mImpl.updateOverlaysForUser(users.get(i).id); local
291 updateOverlayPaths(users.get(i).id, targets); local
302 final List<String> targets = mImpl.updateOverlaysForUser(newUserId); local
303 updateAssets(newUserId, targets);
459 final ArrayList<String> targets; local
461 targets = mImpl.updateOverlaysForUser(userId);
463 updateOverlayPaths(userId, targets);
    [all...]
  /frameworks/support/fragment/src/main/java/androidx/fragment/app/
FragmentTransition.java 171 final ArrayList<String> targets; local
173 targets = record.mSharedElementSourceNames;
177 targets = record.mSharedElementTargetNames;
181 String targetName = targets.get(i);
371 * enter and exit transition targets after the call to
479 * targets all shared elements to ensure that no other Views are targeted. The shared element
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Configuration.java 180 // rendering targets, the set of available locales etc, which
834 * loaded targets
993 IAndroidTarget[] targets = currentSdk.getTargets(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ApplicationInfoPage.java 245 protected void setSdkTargets(IAndroidTarget[] targets, IAndroidTarget target) {
246 if (targets == null) {
247 targets = new IAndroidTarget[0];
250 String[] items = new String[targets.length];
251 for (int i = 0, n = targets.length; i < n; i++) {
252 items[i] = targetLabel(targets[i]);
253 if (targets[i] == target) {
260 mSdkCombo.setData(targets);
270 // In the minimum SDK chooser, show the targets with api number and description,
306 IAndroidTarget[] targets = (IAndroidTarget[]) mSdkCombo.getData() local
384 IAndroidTarget[] targets = (IAndroidTarget[]) mSdkCombo.getData(); local
763 IAndroidTarget[] targets = null; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
AdtProjectTest.java 267 IAndroidTarget[] targets = getSdk().getTargets(); local
268 for (IAndroidTarget t : targets) {
310 IAndroidTarget[] targets = getSdk().getTargets(); local
311 for (IAndroidTarget t : targets) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandlerTest.java 321 IAndroidTarget[] targets = Sdk.getCurrent().getTargets(); local
322 for (int i = targets.length - 1; i >= 0; i--) {
323 IAndroidTarget target = targets[i];
434 IAndroidTarget[] targets = Sdk.getCurrent().getTargets(); local
435 for (int i = targets.length - 1; i >= 0; i--) {
436 IAndroidTarget target = targets[i];
    [all...]
  /prebuilts/tools/common/m2/repository/com/parse/bolts/bolts-applinks/1.4.0/
bolts-applinks-1.4.0.jar 
  /cts/tests/fragment/src/android/fragment/cts/
FragmentTransitionTest.java 458 // Ensure that shared element transitions that have targets properly target the views
508 // Ensure that after transitions have executed that they don't have any targets or other
840 ArrayList<View> targets = transition.getTrackedTargets(); local
    [all...]
  /cts/tests/tests/os/src/android/os/storage/cts/
StorageManagerTest.java 766 final List<File> targets = new ArrayList<File>(); local
771 targets.add(dir);
773 return targets;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 91 asdl_seq *targets; member in struct:_stmt::__anon4251::__anon4255
95 asdl_seq *targets; member in struct:_stmt::__anon4251::__anon4256
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ast.c 2233 asdl_seq *targets; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 91 asdl_seq *targets; member in struct:_stmt::__anon4558::__anon4562
95 asdl_seq *targets; member in struct:_stmt::__anon4558::__anon4563
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
ast.c 2228 asdl_seq *targets; local
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cES31CompatibilityShaderImageLoadStoreTests.cpp 2936 const GLenum targets[] = { GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_2D_ARRAY }; local
3200 const GLenum targets[] = { GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_2D_ARRAY }; local
    [all...]
  /external/deqp/external/openglcts/modules/gles31/
es31cShaderImageLoadStoreTests.cpp 2901 const GLenum targets[] = { GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_2D_ARRAY }; local
3164 const GLenum targets[] = { GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_2D_ARRAY }; local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 1040 vector<BufferSpec> targets; local
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 822 final int [] targets = new int [npairs + 1]; local
861 final int [] targets = new int [high - low + 2]; local
1042 final int [] targets = block.m_branch.m_targets; local
1050 $assert.ASSERT (leaderToBlockID.get (targets [t], intHolder), "no mapping for " + targets [t]); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
ssearch.cpp 727 UnicodeString targets[] = {"fu\\u00DF", "fu\\u00DFball", "1fu\\u00DFball", "12fu\\u00DFball", "123fu\\u00DFball", "1234fu\\u00DFball", local
751 for (uint32_t t = 0; t < UPRV_LENGTHOF(targets); t += 1) {
753 UnicodeString target = targets[t].unescape();
    [all...]

Completed in 2271 milliseconds

1 2 3 4 5 6 7 891011>>