HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 301 - 325 of 1048) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
l10n_util_unittest.cc 2 // Use of this source code is governed by a BSD-style license that can be
51 std::string code; local
52 ASSERT_TRUE(dict->GetString("code", &code));
53 EXPECT_NE("is", code)
65 ASSERT_TRUE(dict->GetString("code", &actual_code));
67 << "Wrong language code at index " << index << ".";
  /external/chromium_org/content/browser/speech/
speech_recognizer_impl_android.cc 2 // Use of this source code is governed by a BSD-style license that can be
183 SpeechRecognitionErrorCode code = local
185 listener()->OnRecognitionError(session_id(), SpeechRecognitionError(code));
  /external/chromium_org/content/renderer/
geolocation_dispatcher.cc 2 // Use of this source code is governed by a BSD-style license that can be
112 // We have an updated geolocation position or error code.
136 WebGeolocationError::Error code; local
139 code = WebGeolocationError::ErrorPermissionDenied;
142 code = WebGeolocationError::ErrorPositionUnavailable;
150 code, blink::WebString::fromUTF8(geoposition.error_message)));
  /external/chromium_org/net/filter/
gzip_filter.cc 2 // 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/net/spdy/
hpack_constants.h 2 // Use of this source code is governed by a BSD-style license that can be
25 // Represents a symbol and its Huffman code (stored in most-significant bits).
27 uint32 code; member in struct:net::HpackHuffmanSymbol
78 // Returns symbol code table from "Appendix C. Huffman Code".
  /external/chromium_org/ppapi/shared_impl/
ppb_input_event_shared.h 2 // Use of this source code is governed by a BSD-style license that can be
46 // The key event's |code| attribute as defined in:
48 std::string code; member in struct:ppapi::InputEventData
123 struct PP_Var code);
  /external/chromium_org/sandbox/linux/seccomp-bpf/
verifier.cc 2 // Use of this source code is governed by a BSD-style license that can be
39 const ErrorCode& code,
41 if (code.error_type() == ErrorCode::ET_SIMPLE ||
42 code.error_type() == ErrorCode::ET_TRAP) {
43 return code.err();
44 } else if (code.error_type() == ErrorCode::ET_COND) {
45 if (code.width() == ErrorCode::TP_32BIT &&
46 (data.args[code.argno()] >> 32) &&
47 (data.args[code.argno()] & 0xFFFFFFFF80000000ull) !=
51 bool equal = (data.args[code.argno()] & code.mask()) == code.value()
339 ErrorCode code = iter.IsValid(sysnum) local
    [all...]
  /external/chromium_org/sandbox/win/src/
process_thread_interception.cc 2 // Use of this source code is governed by a BSD-style license that can be
73 ResultCode code = CrossCall(ipc, IPC_NTOPENTHREAD_TAG, desired_access, local
75 if (SBOX_ALL_OK != code)
151 ResultCode code = CrossCall(ipc, IPC_NTOPENPROCESS_TAG, desired_access, local
153 if (SBOX_ALL_OK != code)
196 ResultCode code = CrossCall(ipc, IPC_NTOPENPROCESSTOKEN_TAG, process, local
198 if (SBOX_ALL_OK != code)
241 ResultCode code = CrossCall(ipc, IPC_NTOPENPROCESSTOKENEX_TAG, process, local
243 if (SBOX_ALL_OK != code)
305 ResultCode code = CrossCall(ipc, IPC_CREATEPROCESSW_TAG, application_name local
383 ResultCode code = CrossCall(ipc, IPC_CREATEPROCESSW_TAG, app_name, local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8LazyEventListener.cpp 8 * * Redistributions of source code must retain the above copyright
55 V8LazyEventListener::V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate)
59 , m_code(code)
153 // have the same numbers as in the original code.
160 String code = "(function() {" local
169 v8::Handle<v8::String> codeExternalString = v8String(isolate(), code);
197 // FIXME: Remove this code when we stop doing the 'with' hack above.
207 // argument wrapping the event source code. The reason for this is
222 // For the time being, we comment out the following code since the
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAppletElement.cpp 143 const AtomicString& code = getAttribute(codeAttr); local
144 paramNames.append("code");
145 paramValues.append(code.string());
148 // plugin will load. If the 'code' attribute is set, and the 'archive' is not set, then we need
149 // to check the url generated by resolving 'code' against 'codebase'. If the 'archive'
150 // attribute is set, then 'code' points to a class inside the archive, so we need to check the
156 else if (!code.isNull())
157 urlToCheck = KURL(rootURL, code);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLError.h 8 * 1. Redistributions of source code must retain the above copyright
40 static PassOwnPtr<SQLErrorData> create(unsigned code, const String& message)
42 return adoptPtr(new SQLErrorData(code, message));
45 static PassOwnPtr<SQLErrorData> create(unsigned code, const char* message, int sqliteCode, const char* sqliteMessage)
47 return create(code, String::format("%s (%d %s)", message, sqliteCode, sqliteMessage));
52 return create(data.code(), data.message());
57 unsigned code() const { return m_code; } function in class:blink::SQLErrorData
61 SQLErrorData(unsigned code, const String& message) : m_code(code), m_message(message.isolatedCopy()) { }
73 unsigned code() const { return m_data.code(); function in class:blink::SQLError
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebSocketImpl.cpp 8 * * Redistributions of source code must retain the above copyright
139 void WebSocketImpl::close(int code, const WebString& reason)
142 m_private->close(code, reason);
202 void WebSocketImpl::didClose(WebSocketChannelClient::ClosingHandshakeCompletionStatus status, unsigned short code, const String& reason)
205 m_client->didClose(static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason)); local
208 m_client->didClose(m_bufferedAmount - m_bufferedAmountAfterClose, static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ActivityLoggerTest.cpp 2 // Use of this source code is governed by a BSD-style license that can be
108 const char* code = local
119 executeScriptInMainWorld(code);
121 executeScriptInIsolatedWorld(code);
127 const char* code = local
144 executeScriptInMainWorld(code);
146 executeScriptInIsolatedWorld(code);
152 const char* code = local
170 executeScriptInMainWorld(code);
172 executeScriptInIsolatedWorld(code);
178 const char* code = local
201 const char* code = local
228 const char* code = local
252 const char* code = local
277 const char* code = local
301 const char* code = local
325 const char* code = local
348 const char* code = local
376 const char* code = local
399 const char* code = local
422 const char* code = local
445 const char* code = local
471 const char* code = local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
status.h 2 // Use of this source code is governed by a BSD-style license that can be
55 bool IsNotFound() const { return code() == kNotFound; }
58 bool IsCorruption() const { return code() == kCorruption; }
61 bool IsIOError() const { return code() == kIOError; }
71 // state_[4] == code
75 enum Code {
84 Code code() const { function in class:leveldb::Status
85 return (state_ == NULL) ? kOk : static_cast<Code>(state_[4]);
88 Status(Code code, const Slice& msg, const Slice& msg2)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_fs.h 34 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/skia/src/animator/
SkDisplayEvent.h 5 * 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/skia/tools/
CrashHandler.cpp 93 int code; member in struct:__anon20060
105 const DWORD code = e->ExceptionRecord->ExceptionCode; local
106 SkDebugf("\nCaught exception %u", code);
108 if (kExceptions[i].code == code) {
  /external/chromium_org/tools/json_schema_compiler/
cpp_bundle_generator.py 2 # Use of this source code is governed by a BSD-style license that can be
5 import code namespace
34 """This class contains methods to generate code based on multiple schemas.
63 """Generates a code.Code object for a header file
67 - |body_code| - the code to put in between the multiple inclusion guards"""
68 c = code.Code()
105 c = code.Code()
    [all...]
preview.py 4 # 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
37 head = code.Code()
41 body = code.Code()
66 Code panes are populated via XHR after links in the nav pane are clicked.
134 // Populate the code panes.
203 # Generate code
    [all...]
  /external/chromium_org/v8/src/ic/
ic-inl.h 2 // Use of this source code is governed by a BSD-style license that can be
33 // the original code instead of the address in the running code. This will
34 // cause the original code to be updated and keeps the breakpoint active in
35 // the running code.
36 Code* code = GetCode(); local
37 Code* original_code = GetOriginalCode();
39 original_code->instruction_start() - code->instruction_start();
40 // Return the address in the original code. This is the place wher
125 SetTargetAtAddress(address(), code, constant_pool()); local
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
instruction-selector-tester.h 2 // Use of this source code is governed by a BSD-style license that can be
68 out << "--- Code sequence after instruction selection --- " << endl
85 code.push_back(instr);
108 std::deque<Instruction*> code; member in class:v8::internal::compiler::InstructionSelectorTester
  /external/chromium_org/v8/test/cctest/
test-disasm-ia32.cc 6 // * Redistributions of source code must retain the above copyright
285 Handle<Code> ic(LoadIC::initialize_stub(isolate, NOT_CONTEXTUAL));
478 Handle<Code> code = isolate->factory()->NewCode( local
479 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
480 USE(code);
483 code->Print(os);
484 byte* begin = code->instruction_start()
    [all...]
test-log-stack-tracer.cc 6 // * Redistributions of source code must retain the above copyright
60 i::Code* code = function->code(); local
61 return code->contains(addr);
139 // execution of a native function called from JS code. In this case,
185 // execution of JS code. However, as calling TickSample::Trace requires
186 // entering native code, we can only emulate pure JS by erasing
262 // pure native code. TickSample::Trace only unrolls JS code, so we can'
    [all...]
test-macro-assembler-arm.cc 6 // * Redistributions of source code must retain the above copyright
87 // Code to be generated: The stuff in CopyBytes followed by a store of R0 and
98 Handle<Code> code = isolate->factory()->NewCode( local
99 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
101 F f = FUNCTION_CAST<F>(code->entry());
219 Handle<Code> code = isolate->factory()->NewCode local
    [all...]
test-macro-assembler-mips.cc 6 // * Redistributions of source code must retain the above copyright
86 // Code to be generated: The stuff in CopyBytes followed by a store of a0 and
97 Handle<Code> code = isolate->factory()->NewCode( local
98 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
100 ::F f = FUNCTION_CAST< ::F>(code->entry());
135 static void TestNaN(const char *code) {
143 v8::Local<v8::Script> script = v8::Script::Compile(v8_str(code));
    [all...]

Completed in 1473 milliseconds

<<11121314151617181920>>