HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 676 - 700 of 8676) sorted by null

<<21222324252627282930>>

  /frameworks/av/include/media/
IStreamSource.h 92 uint32_t code, const Parcel &data, Parcel *reply,
98 uint32_t code, const Parcel &data, Parcel *reply,
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 175 PV_STATUS BitstreamShowBits32HC(BitstreamDecVideo *stream, uint32 *code)
184 *code = stream->curr_word;
193 PV_STATUS BitstreamShowBits32(BitstreamDecVideo *stream, int nbits, uint32 *code)
202 *code = stream->curr_word >> (32 - nbits);
215 PV_STATUS BitstreamShowBits16(BitstreamDecVideo *stream, int nbits, uint *code)
226 *code = stream->curr_word >> (32 - nbits);
238 PV_STATUS BitstreamShow15Bits(BitstreamDecVideo *stream, uint *code)
247 *code = stream->curr_word >> 17;
257 PV_STATUS BitstreamShow13Bits(BitstreamDecVideo *stream, uint *code)
266 *code = stream->curr_word >> 19
272 uint code; local
289 uint code; local
313 uint code; local
335 uint code; local
384 uint32 code; local
398 uint32 code; local
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/Platforms/
Android.mk 9 # Always include the Generic code
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributens08.java 79 success = (ex.code == DOMException.NAMESPACE_ERR);
89 success = (ex.code == DOMException.NAMESPACE_ERR);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
get_future.pass.cpp 37 assert(e.code() == make_error_code(std::future_errc::future_already_retrieved));
50 assert(e.code() == make_error_code(std::future_errc::no_state));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.members/
get_future.pass.cpp 47 assert(e.code() == make_error_code(std::future_errc::future_already_retrieved));
59 assert(e.code() == make_error_code(std::future_errc::no_state));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock.pass.cpp 46 assert(e.code().value() == EDEADLK);
60 assert(e.code().value() == EPERM);
try_lock_for.pass.cpp 51 assert(e.code().value() == EDEADLK);
65 assert(e.code().value() == EPERM);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Keyboard.java 138 public boolean hasProximityCharsCorrection(final int code) {
142 // Note: The native code has the main keyboard layout only at this moment.
147 return canAssumeNativeHasProximityCharsInfoOfAllKeys || Character.isLetter(code);
167 public Key getKey(final int code) {
168 if (code == Constants.CODE_UNSPECIFIED) {
172 final int index = mKeyCache.indexOfKey(code);
178 if (key.getCode() == code) {
179 mKeyCache.put(code, key);
183 mKeyCache.put(code, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
FlagManagerTest.java 102 for (String code : icons) {
103 code = code.toUpperCase(Locale.US);
104 sIcons.add(code);
106 String country = regionNames.get(code);
108 System.out.println("No region name found for region code " + code);
111 if (!languageToCountry.values().contains(code)) {
112 unused.add(code.toLowerCase() + ".png");
138 for (String code : languageCodes)
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
RemotePlayer.java 150 public void onError(String error, int code, Bundle data) {
151 logError("play: failed", error, code);
192 public void onError(String error, int code, Bundle data) {
193 logError("getStatus: failed", error, code);
220 public void onError(String error, int code, Bundle data) {
221 logError("pause: failed", error, code);
245 public void onError(String error, int code, Bundle data) {
246 logError("resume: failed", error, code);
273 public void onError(String error, int code, Bundle data) {
274 logError("stop: failed", error, code);
    [all...]
  /external/chromium_org/v8/src/
log.h 6 // * Redistributions of source code must retain the above copyright
44 // Minimal logging (no API, code, or GC sample events), default is off.
48 // --log-api, --log-code, --log-gc, and --log-regexp.
53 // --log-code
54 // Log code (create, move, and delete) events to the logfile, default is off.
55 // --log-code implies --log.
70 // tick profiler requires code events, so --prof implies --log-code.
103 V(CODE_CREATION_EVENT, "code-creation") \
104 V(CODE_MOVE_EVENT, "code-move")
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttLineNumberTable.java 19 import com.android.dx.cf.code.LineNumberList;
23 * Attribute class for standard {@code LineNumberTable} attributes.
26 /** {@code non-null;} attribute name for attributes of this type */
29 /** {@code non-null;} list of line number entries */
35 * @param lineNumbers {@code non-null;} list of line number entries
60 * @return {@code non-null;} the list
BaseLocalVariables.java 19 import com.android.dx.cf.code.LocalVariableList;
23 * Base attribute class for standard {@code LocalVariableTable}
24 * and {@code LocalVariableTypeTable} attributes.
27 /** {@code non-null;} list of local variable entries */
33 * @param name {@code non-null;} attribute name
34 * @param localVariables {@code non-null;} list of local variable entries
60 * @return {@code non-null;} the list
  /dalvik/dx/src/com/android/dx/dex/code/
HighRegisterPrefix.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpec;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;
26 * {@code move*} instructions to move a set of registers into
27 * registers starting at {@code 0} sequentially. This is used
32 /** {@code null-ok;} cached instructions, if constructed */
37 * unknown ({@code -1}).
39 * @param position {@code non-null;} source position
40 * @param registers {@code non-null;} source register
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file.rb 7 purpose: Loads the ANTLR recognition code for ANTLR Template Group files
  /external/chromium/chrome/browser/chromeos/login/
signed_settings.h 2 // Use of this source code is governed by a BSD-style license that can be
24 // http://code.google.com/p/chromium-os/issues/detail?id=6415
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,
  /external/chromium_org/base/
compiler_specific.h 2 // Use of this source code is governed by a BSD-style license that can be
55 #define NON_EXPORTED_BASE(code) MSVC_SUPPRESS_WARNING(4275) \
56 code
66 #define NON_EXPORTED_BASE(code) code
177 // Use this to annotate code that deliberately reads uninitialized data, for
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/network/chrome-firephp/
background.js 2 // Use of this source code is governed by a BSD-style license that can be
14 code: "("+ tab_log + ")('" + request.args + "');",
  /external/chromium_org/chrome_frame/cfinstall/src/common/
cf-interactiondelegate-externs.js 2 // Use of this source code is governed by a BSD-style license that can be
7 * renaming (as it may be implemented by uncompiled client code).
  /external/chromium_org/chrome_frame/crash_reporting/
veh_test.cc 2 // Use of this source code is governed by a BSD-style license that can be
16 DECLSPEC_NOINLINE static void Undetectable(DWORD code) {
18 ::RaiseException(code, 0, 0, NULL);
48 MATCHER_P(ExceptionCodeIs, code, "") {
49 return (arg->ExceptionRecord->ExceptionCode == code);
veh_test.h 2 // Use of this source code is governed by a BSD-style license that can be
43 ExceptionInfo(DWORD code, void* address) {
45 Set(code, address, 0);
48 void Set(DWORD code, void* address, DWORD flags) {
49 er_.ExceptionCode = code;
  /external/chromium_org/content/test/
mock_keyboard_driver_win.h 2 // Use of this source code is governed by a BSD-style license that can be
25 int GetCharacters(int key_code, std::wstring* code);
  /external/chromium_org/net/websockets/
websocket_event_interface.h 2 // Use of this source code is governed by a BSD-style license that can be
55 // Warning: Both the |code| and |reason| are passed through to Javascript, so
65 virtual void OnDropChannel(uint16 code, const std::string& reason) = 0;
  /external/chromium_org/remoting/webapp/
viewer_plugin_proto.js 2 // Use of this source code is governed by a BSD-style license that can be
6 // with JSCompiler to verify the type-correctness of our code.

Completed in 2558 milliseconds

<<21222324252627282930>>