Searched defs:result (Results 1 - 25 of 34) sorted by relevance

12

/sdk/find_lock/
H A Dfind_lock_exe.cpp70 CString result; local
71 if (findLock(dirPath, &result)) {
74 printf("%s", result.cstr());
H A Dfind_lock.cpp240 bool result = false; local
267 result = true;
272 return result;
317 bool result; member in struct:__anon50
331 // The result is a buffer with:
354 info->result = true;
365 info.result = false;
384 bool result = false; local
391 result = info.result;
569 bool result = false; local
[all...]
/sdk/emulator/opengl/host/tools/emugen/
H A DstrUtils.cpp38 string result; local
42 result = string("");
44 result = str.substr(start, end - start + 1);
46 return result;
/sdk/avdlauncher/
H A Davdlauncher.c72 int result = 0; local
89 result = 1;
99 if (!result) {
118 result = 1;
124 return result;
/sdk/sdklauncher/
H A Dsdklauncher.c72 int result = 0; local
89 result = 1;
99 if (!result) {
138 result = 1;
144 return result;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
H A DAndroidPackageRenameParticipant.java248 CompositeChange result = new CompositeChange(getName());
249 result.markAsSynthetic();
251 addManifestFileChanges(result);
256 addLayoutFileChanges(mProject, result);
264 addLayoutFileChanges(project, result);
271 result.add(genChange);
287 return (result.getChildren().length == 0) ? null : result;
347 private void addManifestFileChanges(CompositeChange result) { argument
348 addXmlFileChanges(mManifestFile, result, tru
351 addLayoutFileChanges(IProject project, CompositeChange result) argument
[all...]
H A DAndroidTypeMoveParticipant.java164 CompositeChange result = new CompositeChange(getName());
165 result.markAsSynthetic();
167 addManifestFileChanges(result);
172 addLayoutFileChanges(mProject, result);
180 addLayoutFileChanges(project, result);
184 return (result.getChildren().length == 0) ? null : result;
187 private void addManifestFileChanges(CompositeChange result) { argument
188 addXmlFileChanges(mManifestFile, result, true);
191 private void addLayoutFileChanges(IProject project, CompositeChange result) { argument
[all...]
H A DAndroidTypeRenameParticipant.java220 CompositeChange result = new CompositeChange(getName());
223 result.markAsSynthetic();
225 addManifestFileChanges(mManifestFile, result);
226 addLayoutFileChanges(mProject, result);
227 addJavaChanges(mProject, result, pm);
241 addManifestFileChanges((IFile) manifestResource, result);
243 addLayoutFileChanges(project, result);
244 addJavaChanges(project, result, pm);
250 RenameResourceParticipant.disableRClassChanges(result);
252 return (result
255 addJavaChanges(IProject project, CompositeChange result, IProgressMonitor monitor) argument
322 addManifestFileChanges(IFile manifestFile, CompositeChange result) argument
326 addLayoutFileChanges(IProject project, CompositeChange result) argument
[all...]
H A DRenameResourceParticipant.java371 CompositeChange result = new CompositeChange("Update resource references");
374 result.markAsSynthetic();
376 addResourceFileChanges(result, mProject, monitor);
390 result.add(nested);
400 addJavaChanges(result, monitor);
409 return (result.getChildren().length == 0) ? null : result;
474 private void addJavaChanges(CompositeChange result, IProgressMonitor monitor) argument
484 result.add(fieldChanges);
/sdk/emulator/qtools/
H A Dthumbdis.cpp268 char *disasm_insn_thumb(uint32_t pc, uint32_t insn1, uint32_t insn2, char *result) argument
276 if (result == NULL)
277 result = buf;
278 ptr = result;
302 return result;
498 return result;
H A Darmdis.cpp39 char *Arm::disasm(uint32_t addr, uint32_t insn, char *result) argument
44 ptr = result ? result : buf;
176 // The following instructions do not write the result register (rd):
/sdk/find_java/
H A Dutils.cpp119 int result = -1; local
126 result = exitCode;
132 return result;
H A Dutils.h187 CArray<CString> *result = new CArray<CString>(n); local
194 (*result)[n++].set(start, s-start);
200 return result;
286 CPath result; local
290 result.set(mStr, pos - mStr);
293 return result;
H A Dfind_java_lib.cpp81 int result = 0; local
86 if (!getJavaVersion(*inOutPath, NULL /*versionStr*/, &result)) {
87 result = 0;
92 return result;
242 for (LONG result = ERROR_SUCCESS; result == ERROR_SUCCESS; index++) {
245 result = RegEnumKeyExA(
254 if (result == ERROR_SUCCESS && nameLen < 256) {
301 bool result = false; local
302 result |
340 HRESULT result = SHGetFolderPathA( local
384 bool result = false; local
411 bool result = false; local
[all...]
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
H A DDeviceBridge.java66 final boolean[] result = new boolean[1];
70 new BooleanResultReader(result));
71 if (!result[0]) {
73 result[0] = true;
86 return result[0];
95 final boolean[] result = new boolean[1];
99 new BooleanResultReader(result));
110 return result[0];
115 final boolean[] result = new boolean[1];
119 new BooleanResultReader(result));
216 BooleanResultReader(boolean[] result) argument
[all...]
/sdk/emulator/mksdcard/
H A Dmksdcard.c179 int result = fwrite( sector, 1, BYTES_PER_SECTOR, file ) != BYTES_PER_SECTOR; local
180 if (result) {
183 return result;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DViewHierarchy.java74 * no root node. Null here does not mean the result was invalid, merely that the XML
83 * When false this means the canvas is displaying an out-dated result image & bounds and some
138 * Sets the result of the layout rendering. The result object indicates if the layout
142 * allocated ILayourResult. That means we can keep this result and hold on to it
348 * When false this means the canvas is displaying an out-dated result image & bounds and some
630 private void findAllViewInfos(List<CanvasViewInfo> result, CanvasViewInfo canvasViewInfo, argument
634 result.add(canvasViewInfo);
637 findAllViewInfos(result, child, true);
/sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
H A Dandroid-support-v7-gridlayout.jar ... .support.v7.widget.GridLayout$Arc[] result int cursor android.support.v7.widget.
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
H A DAndroidLaunchController.java1098 * Installs the application package on the device, and handles return result
1109 String result = doInstall(launchInfo, remotePath, device, true /* reinstall */);
1115 return checkInstallResult(result, device, launchInfo, remotePath,
1128 * Checks the result of an installation, and takes optional actions based on it.
1129 * @param result the result string from the installation
1137 private boolean checkInstallResult(String result, IDevice device, DelayedLaunchInfo launchInfo, argument
1139 if (result == null) {
1143 else if (result.equals("INSTALL_FAILED_ALREADY_EXISTS")) { //$NON-NLS-1$
1184 } else if (result
[all...]
/sdk/emulator/opengl/host/libs/Translator/GLcommon/
H A DGLEScontext.cpp615 bool result = false; local
625 result = true;
629 return result;
634 bool result = false; local
644 result = true;
648 return result;
/sdk/emulator/opengl/tests/event_injector/
H A Dsockets.c165 const char* result = NULL; local
169 result = werr->string;
174 if (result == NULL) {
175 result = "Unknown socket error";
177 return result;
793 /* allocate result list */
/sdk/apps/NotificationStudio/libs/
H A Dandroid-support-v4.jar ... java.lang.Object) Object key Object value int result protected int sizeOf (java.lang.Object, java. ...
/sdk/testapps/jarCheckTests1/app/libs/
H A Dandroid-support-v4.jar ... java.lang.String[]) String[] originalValues String[] newValues String[] result } android/support/v4/app/ android/support/v4/app/FragmentTransaction. ...
/sdk/testapps/jarCheckTests1/lib1/libs/
H A Dandroid-support-v4.jar ... java.lang.String[]) String[] originalValues String[] newValues String[] result } android/support/v4/app/ android/support/v4/app/FragmentTransaction. ...
/sdk/testapps/jarCheckTests1/lib2/libs/
H A Dandroid-support-v4.jar ... java.lang.String[]) String[] originalValues String[] newValues String[] result } android/support/v4/app/ android/support/v4/app/FragmentTransaction. ...

Completed in 7041 milliseconds

12