HomeSort by relevance Sort by last modified time
    Searched refs:workspace (Results 76 - 100 of 171) sorted by null

1 2 34 5 6 7

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportedProject.java 135 IWorkspace workspace = ResourcesPlugin.getWorkspace(); local
136 IStatus nameStatus = workspace.validateName(activityName, IResource.PROJECT);
NewProjectCreator.java 344 IWorkspace workspace = ResourcesPlugin.getWorkspace(); local
358 final IProject project = workspace.getRoot().getProject(projectName);
360 workspace.newProjectDescription(project.getName());
380 // TODO: Make sure it isn't *already* in the workspace!
420 IWorkspace workspace = ResourcesPlugin.getWorkspace(); local
421 final IProject project = workspace.getRoot().getProject(mValues.projectName);
422 final IProjectDescription description = workspace.newProjectDescription(project.getName());
471 IWorkspace workspace = ResourcesPlugin.getWorkspace(); local
474 final IProject project = workspace.getRoot().getProject(projectName);
475 final IProjectDescription description = workspace.newProjectDescription(project.getName())
898 IWorkspace workspace = ResourcesPlugin.getWorkspace(); local
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 53 private final Workspace workspace; field in class:ScreenViewer
76 ScreenViewer(Workspace workspace, IDevice device, int spacing) {
80 this.workspace = workspace;
666 workspace.beginTask();
780 workspace.endTask();
803 workspace.beginTask();
827 workspace.endTask()
    [all...]
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 616 WorkVectorType workspace(rows);
617 evalTo(result, workspace);
621 void evalTo(ResultType& result, WorkVectorType& workspace) const
630 workspace.resize(rows);
635 .applyHouseholderOnTheLeft(m_qr.col(k).tail(rows-k-1), conj(m_hCoeffs.coeff(k)), &workspace.coeffRef(k));
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderIcon.java 49 * An icon that can appear on in the workspace representing an {@link UserFolder}.
119 final Workspace workspace = (Workspace) cellLayout.getParent(); local
120 return !workspace.isSmall();
374 Workspace workspace = mLauncher.getWorkspace(); local
376 workspace.setFinalTransitionTransform((CellLayout) getParent().getParent());
385 workspace.resetTransitionTransform((CellLayout) getParent().getParent());
DragLayer.java 82 * @param attrs The attributes set containing the Workspace's customization values.
87 // Disable multitouch across the workspace/all apps/customize tray
508 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2;
563 * only used for the X dimension for the case of the workspace.
745 // This ensures that the workspace is drawn above the hotseat and qsb,
746 // except when the workspace is drawing a background gradient, in which
747 // case we want the workspace to stay behind these elements.
783 Workspace workspace = mLauncher.getWorkspace(); local
784 int width = workspace.getWidth()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 252 * project, it creates a new library project in the workspace for the
286 // Create workspace copy of the project and add library dependency
299 * project, it creates a new library project in the workspace for the
346 IWorkspace workspace = ResourcesPlugin.getWorkspace(); local
347 IWorkspaceRoot root = workspace.getRoot();
350 // Create workspace copy of the project and add library dependency
437 * Creates a library project in the Eclipse workspace out of the grid layout project
451 // Install a new library into the workspace. This is a copy rather than
458 IWorkspace workspace = ResourcesPlugin.getWorkspace(); local
459 IWorkspaceRoot root = workspace.getRoot()
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-aether-provider/3.3.9/
maven-aether-provider-3.3.9.jar 
  /external/tensorflow/tensorflow/core/kernels/
mkl_pooling_ops_common.h 306 const MklDnnData<uint8>* workspace = nullptr) {
314 if (nullptr == workspace) {
321 workspace->GetOpMem(), output_diff_src->GetOpMem()));
mkl_lrn_op.cc 143 Tensor* workspace = nullptr; variable
150 mkl_context.MklAllocateOutputs(context, &output, &workspace,
154 mkl_context.MklPrepareLRNOutputs(context, output, workspace,
215 Tensor** workspace, bool workspace_enabled_) {
238 // Assumes workspace has same TF layout and TF dim order as input
247 AllocateOutputSetMklShape(context, 1, workspace,
254 Tensor* workspace,
272 static_cast<const void*>(workspace->flat<T>().data()));
299 Tensor *output, *workspace; local
308 AllocateOutputSetMklShape(context, 1, &workspace, input.shape()
539 const Tensor& workspace = MklGetInput( local
    [all...]
  /external/v8/tools/
run-deopt-fuzzer.py 348 def Execute(arch, mode, args, options, suites, workspace):
356 shell_dir = os.path.join(workspace, options.outdir, mode)
359 shell_dir = os.path.join(workspace, options.outdir,
  /external/webrtc/webrtc/base/
sha1.cc 170 uint8_t workspace[64]; local
171 memcpy(workspace, buffer, 64);
172 CHAR64LONG16* block = reinterpret_cast<CHAR64LONG16*>(workspace);
  /platform_testing/tests/jank/UbSystemUiJankTests/src/android/platform/systemui/tests/jank/
LauncherJankTests.java 214 assertTrue("home screen workspace still not scrollable", homeScreen.isScrollable());
232 UiObject2 workspace = mDevice.findObject(mLauncherStrategy.getWorkspaceSelector()); local
235 workspace.fling(dir);
236 workspace.fling(Direction.reverse(dir));
  /device/linaro/bootloader/edk2/
edksetup.bat 2 @REM Windows batch file to setup a WORKSPACE environment
29 @REM Set the WORKSPACE to the current working directory
34 if not defined WORKSPACE (
38 if %WORKSPACE% == %CD% (
39 @REM Workspace is not changed.
44 @REM set new workspace
45 @REM clear EFI_SOURCE and EDK_SOURCE for the new workspace
46 if not defined WORKSPACE (
47 set WORKSPACE=%CD%
62 if exist %WORKSPACE%\BaseTools (
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
WorkspaceAndHotseatScrim.java 46 import com.android.launcher3.Workspace;
51 * View scrim which draws behind hotseat and workspace
121 private Workspace mWorkspace;
165 public void setWorkspace(Workspace workspace) {
166 mWorkspace = workspace;
249 // for super light wallpaper it needs to be darken for contrast to workspace
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchConfigDelegate.java 339 // if this returns true, this forces a full workspace rebuild which is not
372 // get the current workspace
373 IWorkspace workspace = ResourcesPlugin.getWorkspace(); local
376 return workspace.getRoot().getProject(projectName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 83 * Checks whether there given file store points to a file in the workspace.
84 * Only returns a workspace file if there's a single match.
110 // the file is part of the current workspace
138 IWorkspace workspace = ResourcesPlugin.getWorkspace(); local
139 IFile file = workspace.getRoot().getFile(filePath);
155 // the file is not part of the current workspace
224 // We try to open a file that is part of the current workspace
231 // We try to open a file that is not part of the current workspace
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.resources_3.10.0.v20150423-0755.jar 
  /external/libjpeg-turbo/simd/
jidctflt-3dn.asm 61 %define workspace wk(0)-DCTSIZE2*SIZEOF_FAST_FLOAT
62 ; FAST_FLOAT workspace[DCTSIZE2]
74 lea esp, [workspace]
88 lea edi, [workspace] ; FAST_FLOAT *wsptr
292 lea esi, [workspace] ; FAST_FLOAT *wsptr
jidctflt-sse2-64.asm 72 %define workspace wk(0)-DCTSIZE2*SIZEOF_FAST_FLOAT
73 ; FAST_FLOAT workspace[DCTSIZE2]
85 lea rsp, [workspace]
93 lea rdi, [workspace] ; FAST_FLOAT *wsptr
326 lea rsi, [workspace] ; FAST_FLOAT *wsptr
jidctfst-mmx.asm 92 %define workspace wk(0)-DCTSIZE2*SIZEOF_JCOEF
93 ; JCOEF workspace[DCTSIZE2]
105 lea esp, [workspace]
119 lea edi, [workspace] ; JCOEF *wsptr
325 lea esi, [workspace] ; JCOEF *wsptr
  /external/pcre/dist2/src/
pcre2_dfa_match.c 312 workspace vector of workspace
372 int *workspace,
416 active_states = (stateblock *)(workspace + 2);
510 new_count = workspace[1];
511 if (!workspace[0])
533 workspace[0] = 0; /* Bit indicating which vector is current */
559 workspace[0] ^= 1; /* Remember for the restarting feature */
560 workspace[1] = active_count;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderIcon.java 59 import com.android.launcher3.Workspace;
74 * An icon that can appear on in the workspace representing an {@link Folder}.
296 Workspace workspace = mLauncher.getWorkspace(); local
298 workspace.setFinalTransitionTransform();
307 workspace.resetTransitionTransform();
  /build/kati/testcase/
parse_benchcmp.go 80 fmt.Fprintln(os.Stderr, "workspace is dirty. please commit.")
  /device/linaro/bootloader/edk2/OvmfPkg/
build.sh 20 # Setup workspace if it is not set
22 if [ -z "$WORKSPACE" ]
24 echo Initializing workspace
37 echo Building from: $WORKSPACE
222 PLATFORMFILE=$WORKSPACE/OvmfPkg/OvmfPkg$Processor.dsc
256 BUILD_ROOT=$WORKSPACE/Build/$PLATFORM_BUILD_DIR/"$BUILDTARGET"_"$TARGET_TOOLS"
265 make -C $WORKSPACE/BaseTools
270 make -C $WORKSPACE/BaseTools

Completed in 1469 milliseconds

1 2 34 5 6 7