Searched defs:code (Results 226 - 250 of 1278) sorted by relevance

1234567891011>>

/external/chromium_org/ash/wm/
H A Dsticky_keys_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
77 ui::KeyEvent* GenerateKey(bool is_key_press, ui::KeyboardCode code) { argument
81 code,
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
H A DGoogleServiceAuthError.java2 // Use of this source code is governed by a BSD-style license that can be
60 State(int code, int message) { argument
61 mCode = code;
65 public static State fromCode(int code) { argument
67 if (state.mCode == code) {
71 throw new IllegalArgumentException("No state for code: " + code);
81 GoogleServiceAuthError(int code) { argument
82 mState = State.fromCode(code);
/external/chromium_org/chrome/browser/google_apis/
H A Dgdata_contacts_requests.cc2 // Use of this source code is governed by a BSD-style license that can be
103 GDataErrorCode code = GetErrorCode(source); local
106 callback_.Run(code, data.Pass());
107 OnProcessURLFetchResultsComplete(code == HTTP_SUCCESS);
111 GDataErrorCode code) {
113 callback_.Run(code, data.Pass());
110 RunCallbackOnPrematureFailure( GDataErrorCode code) argument
/external/chromium_org/chrome_frame/
H A Dfunction_stub.h2 // Use of this source code is governed by a BSD-style license that can be
21 // not involve writing code, only writing data at a natural word boundary.
39 // This struct is assembly code + signature. The purpose of the struct is to be
41 // as the original function pointer with the code stub. Typically this is used
55 // @code
61 // @code
68 // @code
70 // SetClassLongPtr(wnd, GCLP_WNDPROC, stub->code());
86 inline PROC code() const { function in struct:FunctionStub
/external/chromium_org/content/renderer/
H A Dgeolocation_dispatcher.cc2 // Use of this source code is governed by a BSD-style license that can be
115 // We have an updated geolocation position or error code.
139 WebGeolocationError::Error code; local
142 code = WebGeolocationError::ErrorPermissionDenied;
145 code = WebGeolocationError::ErrorPositionUnavailable;
153 code, WebKit::WebString::fromUTF8(geoposition.error_message)));
/external/chromium_org/content/test/
H A Dmock_keyboard_driver_win.cc2 // Use of this source code is governed by a BSD-style license that can be
59 // driver for mapping a virtual key-code to a Unicode character.
155 // Retrieve Unicode characters composed from the input key-code and
158 wchar_t code[16]; local
160 &keyboard_states_[0], &code[0], arraysize(code), 0,
163 output->assign(code);
/external/chromium_org/net/base/
H A Dgzip_filter.cc2 // Use of this source code is governed by a BSD-style license that can be
278 int code = inflate(zlib_stream_.get(), Z_NO_FLUSH); local
281 return (code == Z_OK);
/external/chromium_org/ppapi/cpp/
H A Dwebsocket.cc2 // Use of this source code is governed by a BSD-style license that can be
58 int32_t WebSocket::Close(uint16_t code, const Var& reason, argument
64 pp_resource(), code, reason.pp_var(),
/external/chromium_org/ppapi/thunk/
H A Dppb_websocket_thunk.cc2 // Use of this source code is governed by a BSD-style license that can be
52 uint16_t code,
59 return enter.SetResult(enter.object()->Close(code, reason, enter.callback()));
51 Close(PP_Resource web_socket, uint16_t code, struct PP_Var reason, struct PP_CompletionCallback callback) argument
/external/chromium_org/remoting/host/setup/win/
H A Dhost_configurer_window.cc2 // Use of this source code is governed by a BSD-style license that can be
28 void HostConfigurerWindow::OnCancel(UINT code, int id, HWND control) { argument
51 void HostConfigurerWindow::OnOk(UINT code, int id, HWND control) { argument
57 void HostConfigurerWindow::OnStartHost(UINT code, int id, HWND control) { argument
H A Dstart_host_window.cc2 // Use of this source code is governed by a BSD-style license that can be
34 void StartHostWindow::OnCancel(UINT code, int id, HWND control) { argument
50 void StartHostWindow::OnConsent(UINT code, int id, HWND control) { argument
56 void StartHostWindow::OnOk(UINT code, int id, HWND control) { argument
/external/chromium_org/sandbox/win/src/
H A Dregistry_interception.cc2 // Use of this source code is governed by a BSD-style license that can be
62 ResultCode code = CrossCall(ipc, IPC_NTCREATEKEY_TAG, name, attributes, local
68 if (SBOX_ALL_OK != code)
120 ResultCode code = CrossCall(ipc, IPC_NTOPENKEY_TAG, name, attributes, local
125 if (SBOX_ALL_OK != code)
/external/chromium_org/sandbox/win/wow_helper/
H A Dwow_helper.cc2 // Use of this source code is governed by a BSD-style license that can be
68 char* code = reinterpret_cast<char*>(thunk) + used; local
70 code, thunk, thunk_bytes, NULL);
81 if (!::WriteProcessMemory(child, code, &TargetNtMapViewOfSection, size,
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLError.h8 * 1. Redistributions of source code must retain the above copyright
40 static PassRefPtr<SQLError> create(unsigned code, const String& message) { return adoptRef(new SQLError(code, message)); } argument
41 static PassRefPtr<SQLError> create(unsigned code, const char* message, int sqliteCode) argument
43 return create(code, String::format("%s (%d)", message, sqliteCode));
45 static PassRefPtr<SQLError> create(unsigned code, const char* message, int sqliteCode, const char* sqliteMessage) argument
47 return create(code, String::format("%s (%d %s)", message, sqliteCode, sqliteMessage));
50 unsigned code() const { return m_code; } function in class:WebCore::SQLError
70 SQLError(unsigned code, const String& message) : m_code(code), m_messag argument
[all...]
/external/chromium_org/third_party/freetype/src/psaux/
H A Dt1cmap.c71 FT_UInt code, n; local
75 /* convert character code to Adobe SID string */
76 code = cmap->code_to_sid[char_code];
77 glyph_name = cmap->sid_to_string( code );
/external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
H A DGAEChannelClient.java8 * 1. Redistributions of source code must retain the above copyright notice,
62 public void onError(int code, String description); argument
163 final int code, final String description) {
167 handler.onError(code, description);
162 onError( final int code, final String description) argument
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dfakexmppclient.h8 * 1. Redistributions of source code must retain the above copyright notice,
83 XmppStanzaError code,
81 SendStanzaError( const XmlElement * pelOriginal, XmppStanzaError code, const std::string & text) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_target_nvc0.cpp190 TargetNVC0::getBuiltinCode(const uint32_t **code, uint32_t *size) const argument
192 *code = &nvc0_builtin_code[0];
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_fs.h34 struct rX00_fragment_program_code code; member in struct:r300_fragment_shader_code
84 return (fs->shader->code.writes_depth) ? TRUE : FALSE;
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dglxreply.c120 __glXSetupVendorRequest(struct glx_context * gc, GLint code, GLint vop, argument
130 req->glxCode = code;
/external/chromium_org/third_party/re2/re2/
H A Dfiltered_re2.cc2 // Use of this source code is governed by a BSD-style
27 RE2::ErrorCode code = re->error_code(); local
40 return code;
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayEvent.h5 * Use of this source code is governed by a BSD-style license that can be
49 SkKey code; member in class:SkDisplayEvent
58 SkKey fMax; // if the code expresses a range
/external/chromium_org/third_party/sqlite/src/src/
H A Dauth.c4 ** The author disclaims copyright to this source code. In place of
12 ** This file contains code used to implement the sqlite3_set_authorizer()
20 ** All of the code in this file may be omitted by defining a single
109 int rc; /* Auth callback return code */
186 ** Do an authorization check using the code and arguments given. Return
193 int code,
211 rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext);
191 sqlite3AuthCheck( Parse *pParse, int code, const char *zArg1, const char *zArg2, const char *zArg3 ) argument
/external/chromium_org/tools/json_schema_compiler/
H A Dcpp_bundle_generator.py2 # Use of this source code is governed by a BSD-style license that can be
5 import code namespace
35 """This class contains methods to generate code based on multiple schemas.
51 """Generates a code.Code object for a header file
55 - |body_code| - the code to put in between the multiple inclusion guards"""
56 c = code.Code()
86 c = code.Code()
100 c = code.Code()
136 c = code.Code()
156 """Generates a code
[all...]
H A Dpreview.py4 # Use of this source code is governed by a BSD-style license that can be
6 """Server for viewing the compiled C++ code from tools/json_schema_compiler.
10 import code namespace
36 head = code.Code()
40 body = code.Code()
133 // Populate the code panes.
232 # Generate code
244 # Do highlighting on the generated code
276 html = code.Code()

Completed in 647 milliseconds

1234567891011>>