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

1 2 3 4 5

  /external/chromium/chrome/browser/ui/cocoa/
restart_browser.mm 24 returnCode:(int)returnCode
41 returnCode:(int)returnCode
43 if (returnCode == NSAlertFirstButtonReturn) {
45 } else if (returnCode == NSAlertSecondButtonReturn) {
84 returnCode:
88 NSInteger returnCode = [alert runModal];
90 returnCode:returnCode
    [all...]
repost_form_warning_mac.mm 19 returnCode:(int)returnCode
32 returnCode:(int)returnCode
34 if (returnCode == NSAlertFirstButtonReturn) {
55 @selector(alertDidEnd:returnCode:contextInfo:)),
76 returnCode:NSAlertSecondButtonReturn];
external_protocol_dialog.mm 32 returnCode:(int)returnCode
91 didEndSelector:@selector(alertEnded:returnCode:contextInfo:)
104 returnCode:(int)returnCode
108 switch (returnCode) {
js_modal_dialog_cocoa.mm 30 returnCode:(int)returnCode
58 returnCode:(int)returnCode
68 switch (returnCode) {
183 didEndSelector:@selector(alertDidEnd:returnCode:contextInfo:)
ssl_client_certificate_selector.mm 44 returnCode:NSFileHandlingPanelCancelButton];
126 returnCode:(NSInteger)returnCode
132 if (returnCode == NSFileHandlingPanelOKButton) {
188 @selector(sheetDidEnd:returnCode:context:),
192 // in |-sheetDidEnd:returnCode:context:|.
constrained_html_delegate_mac.mm 69 returnCode:(int)returnCode
111 @selector(sheetDidEnd:returnCode:contextInfo:));
149 returnCode:(int)returnCode
  /frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 151 int returnCode;
159 returnCode = parsecmdline(argc,argv, &infileName, &outfileName, &aacpara);
160 if(returnCode)
205 returnCode = pGetAPI(&AudioAPI);
206 if(returnCode)
211 returnCode = AudioAPI.Init(&hCodec, VO_AUDIO_CodingAAC, &useData);
212 if(returnCode < 0)
218 returnCode = AudioAPI.SetParam(hCodec, VO_PID_AAC_ENCPARAM, &aacpara);
233 returnCode = AudioAPI.SetInputData(hCodec,&inData);
239 returnCode = AudioAPI.GetOutputData(hCodec,&outData, &outInfo)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_helper.h 30 SignedSettings::ReturnCode code,
35 SignedSettings::ReturnCode code, const std::string& email) {}
39 SignedSettings::ReturnCode code, const std::string& email) {}
43 SignedSettings::ReturnCode code,
49 SignedSettings::ReturnCode code,
55 SignedSettings::ReturnCode code) {}
59 SignedSettings::ReturnCode code,
signed_settings.cc 37 SignedSettings::ReturnCode code,
76 SignedSettings::ReturnCode SignedSettings::MapKeyOpCode(
108 void Fail(SignedSettings::ReturnCode code);
120 void PerformCallback(SignedSettings::ReturnCode code, bool value);
134 void Fail(SignedSettings::ReturnCode code);
140 void OnSettingsOpCompleted(ReturnCode code, bool value);
150 void PerformCallback(SignedSettings::ReturnCode code, bool value);
167 void Fail(SignedSettings::ReturnCode code);
173 void OnSettingsOpCompleted(ReturnCode code, bool value);
183 void PerformCallback(SignedSettings::ReturnCode code, bool value)
    [all...]
signed_settings.h 45 enum ReturnCode {
57 virtual void OnSettingsOpCompleted(ReturnCode code, T value) {}
95 static ReturnCode MapKeyOpCode(OwnerManager::KeyOpCode code);
99 virtual void Fail(ReturnCode code) = 0;
126 virtual void OnSettingsOpCompleted(SignedSettings::ReturnCode code,
signed_settings_helper_unittest.cc 34 SignedSettings::ReturnCode code, const std::string& email));
36 SignedSettings::ReturnCode code, const std::string& email));
38 SignedSettings::ReturnCode code, const std::string& email));
40 SignedSettings::ReturnCode code,
44 SignedSettings::ReturnCode code,
  /external/chromium/chrome/browser/ssl/
ssl_add_cert_handler_mac.mm 49 returnCode:(NSInteger)returnCode
53 handler_->Finished(returnCode == NSOKButton);
78 didEndSelector:@selector(sheetDidEnd:returnCode:context:)
84 int returnCode = [panel runModalForCertificates:certs showGroup:NO];
85 [self sheetDidEnd:panel returnCode:returnCode context:NULL];
  /external/chromium/chrome/browser/ui/login/
login_prompt_mac.h 28 returnCode:(int)returnCode
  /packages/apps/Settings/src/com/android/settings/bluetooth/
RequestPermissionHelperActivity.java 95 int returnCode;
115 returnCode = RequestPermissionActivity.RESULT_BT_STARTING_OR_STARTED;
117 returnCode = RESULT_CANCELED;
122 returnCode = RESULT_CANCELED;
127 setResult(returnCode);
RequestPermissionActivity.java 221 int returnCode;
225 returnCode = RESULT_OK;
235 returnCode = mTimeout;
237 if (returnCode < RESULT_FIRST_USER) {
238 returnCode = RESULT_FIRST_USER;
241 returnCode = RESULT_CANCELED;
248 setResult(returnCode);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
AMRWB_E_SAMPLE.c 81 int returnCode;
148 returnCode = pGetAPI(&AudioAPI);
149 if(returnCode)
206 returnCode = AudioAPI.SetInputData(hCodec,&inData);
209 returnCode = AudioAPI.GetOutputData(hCodec,&outData, &outFormat);
210 if(returnCode == 0)
225 else if(returnCode == VO_ERR_LICENSE_ERROR)
230 } while(returnCode != VO_ERR_INPUT_BUFFER_SMALL);
241 } while (!eofFile && returnCode);
245 returnCode = AudioAPI.Uninit(hCodec)
    [all...]
  /external/clang/tools/scan-view/
startfile.py 64 returncode = pipe.wait()
66 returncode = self.fixreturncode(returncode)
67 return not returncode
136 def fixreturncode(self, returncode):
137 if returncode is not None and self.kde_version > '3.5.4':
138 return returncode
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_name_folder_controller.mm 82 didEndSelector:@selector(didEndSheet:returnCode:contextInfo:)
104 returnCode:(int)returnCode
  /frameworks/base/core/java/android/content/pm/
IPackageDeleteObserver.aidl 26 void packageDeleted(in String packageName, in int returnCode);
IPackageInstallObserver.aidl 25 void packageInstalled(in String packageName, int returnCode);
IPackageMoveObserver.aidl 25 void packageMoved(in String packageName, int returnCode);
  /external/chromium/chrome/browser/policy/
device_policy_cache.h 41 chromeos::SignedSettings::ReturnCode code,
59 void PolicyStoreOpCompleted(chromeos::SignedSettings::ReturnCode code);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
UnpackUpdateJars.java 110 int returnCode = 0;
112 returnCode = proc.waitFor();
117 if (returnCode!=0)
118 System.out.println("returnCode: " + returnCode);
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_useragentstylesheets.py 95 returnCode = subprocess.call(command)
96 assert returnCode == 0
98 return returnCode
  /external/webkit/Source/WebCore/manual-tests/plugins/
flip4mac-update-alert-over-navigation.html 3 <title>Test case for &lt;rdar://problem/7313430&gt; Many crashes in Safari inside Flip4Mac below -[NSAlert didEndAlert:returnCode:contextInfo:]</title>
6 <h1>Test case for &lt;<a href='rdar://problem/7313430'>rdar://problem/7313430</a>&gt; Many crashes in Safari inside Flip4Mac below -[NSAlert didEndAlert:returnCode:contextInfo:]</h1>

Completed in 1722 milliseconds

1 2 3 4 5