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

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/
types.py 33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
58 if (type_.code != gdb.TYPE_CODE_STRUCT and
59 type_.code != gdb.TYPE_CODE_UNION):
85 if enum_type.code != gdb.TYPE_CODE_ENUM:
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
types.py 33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
58 if (type_.code != gdb.TYPE_CODE_STRUCT and
59 type_.code != gdb.TYPE_CODE_UNION):
85 if enum_type.code != gdb.TYPE_CODE_ENUM:
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/
types.py 33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
58 if (type_.code != gdb.TYPE_CODE_STRUCT and
59 type_.code != gdb.TYPE_CODE_UNION):
85 if enum_type.code != gdb.TYPE_CODE_ENUM:
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/
types.py 33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
58 if (type_.code != gdb.TYPE_CODE_STRUCT and
59 type_.code != gdb.TYPE_CODE_UNION):
85 if enum_type.code != gdb.TYPE_CODE_ENUM:
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CodeAddress.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
23 * Pseudo-instruction which is used to track an address within a code
25 * exception handler ranges. Its code size is zero, and so instances
32 * unknown ({@code -1}).
34 * @param position {@code non-null;} source position
55 return "code-address";
  /external/android-clat/
icmp.c 63 uint8_t icmp_to_icmp6_type(uint8_t type, uint8_t code) {
76 if (code != ICMP_UNREACH_PROTOCOL && code != ICMP_UNREACH_NEEDFRAG) {
89 * code - the ICMP code
91 uint8_t icmp_to_icmp6_code(uint8_t type, uint8_t code) {
98 return code;
101 switch (code) {
115 // Otherwise, we don't understand this ICMP type/code combination. Fall through.
118 logmsg_dbg(ANDROID_LOG_DEBUG, "icmp_to_icmp6_code: unhandled ICMP type/code %d/%d", type, code)
    [all...]
  /external/apache-http/src/org/apache/http/
HttpResponse.java 55 * @return the status line, or <code>null</code> if not yet set
72 * @param code the status code
74 void setStatusLine(ProtocolVersion ver, int code);
80 * @param code the status code
81 * @param reason the reason phrase, or <code>null</code> to omit
83 void setStatusLine(ProtocolVersion ver, int code, String reason)
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
literals-assignment.js 6 // * Redistributions of source code must retain the above copyright
34 var code = "(function() {\ variable
39 assertEquals(8, eval(code));
41 code = "(function() {\
46 assertEquals("abc", eval(code));
50 code = "(function() {\
55 assertEquals(8, eval(code));
58 code = "(function() {\
63 assertEquals(8, eval(code));
66 code = "(function() {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CodeAddress.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
23 * Pseudo-instruction which is used to track an address within a code
25 * exception handler ranges. Its code size is zero, and so instances
32 * unknown ({@code -1}).
34 * @param position {@code non-null;} source position
55 return "code-address";
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
FileBlockHeader.java 9 * * Redistributions of source code must retain the above copyright
62 private int code; field in class:FileBlockHeader
88 code = inputStream.readByte() << 24 | inputStream.readByte() << 16
95 if (FileBlockHeader.BLOCK_DNA1 == code) {
118 * This method returns the code of this data block.
119 * @return the code of this data block
122 return code;
170 return FileBlockHeader.BLOCK_ENDB == code;
178 return FileBlockHeader.BLOCK_DNA1 == code;
183 return "FILE BLOCK HEADER [" + this.codeToString(code) + " : " + size + " : " + oldMemoryAddress + " : " + sdnaIndex + " : " + count + "]";
    [all...]
  /external/marisa-trie/tests/
assert.h 10 #define EXCEPT(code, expected_status) try { \
11 code; \
12 printf("%d: Exception `%s' failed.\n", __LINE__, #code); \
  /external/marisa-trie/v0_1_5/tests/
assert.h 10 #define EXCEPT(code, expected_status) try { \
11 code; \
12 printf("%d: Exception `%s' failed.\n", __LINE__, #code); \
  /external/v8/test/mjsunit/compiler/
literals-assignment.js 6 // * Redistributions of source code must retain the above copyright
34 var code = "(function() {\ variable
39 assertEquals(8, eval(code));
41 code = "(function() {\
46 assertEquals("abc", eval(code));
50 code = "(function() {\
55 assertEquals(8, eval(code));
58 code = "(function() {\
63 assertEquals(8, eval(code));
66 code = "(function() {
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
erroroutput.py 33 error_code = '%04d' % error.code
46 code = 'E:%04d' % error.code
52 return '%s%s: %s' % (line, code, error.message)
  /external/chromium_org/content/public/common/
speech_recognition_error.h 2 // Use of this source code is governed by a BSD-style license that can be
23 SpeechRecognitionErrorCode code; member in struct:content::SpeechRecognitionError
27 : code(SPEECH_RECOGNITION_ERROR_NONE),
31 : code(code_value),
36 : code(code_value),
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
erroroutput.py 33 error_code = '%04d' % error.code
46 code = 'E:%04d' % error.code
52 return '%s%s: %s' % (line, code, error.message)
  /external/elfutils/libdw/
dwarf_whatattr.c 1 /* Return attribute code of given attribute.
20 additional right to link the code of Red Hat elfutils with code licensed
23 distribution of source code with any binary distribution and to
24 distribute linked combinations of the two. Non-GPL Code permitted under
25 this exception must only link to the code of Red Hat elfutils through
27 found in the source code files (the "Approved Interfaces"). The files
28 of Non-GPL Code may instantiate templates or use macros or inline
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Cod
    [all...]
  /external/smack/src/org/xbill/DNS/
GenericEDNSOption.java 18 GenericEDNSOption(int code) {
19 super(code);
27 GenericEDNSOption(int code, byte [] data) {
28 super(code);
  /external/strace/
ioctlsort.c 9 * 1. Redistributions of source code must retain the above copyright
41 unsigned long code; member in struct:ioctlent
53 unsigned long code1 = ((struct ioctlent *) a)->code;
54 unsigned long code2 = ((struct ioctlent *) b)->code;
66 ioctlent[i].doth, ioctlent[i].symbol, ioctlent[i].code);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dec_acelp_4p_in_64.cpp 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
55 int16 code[] (o) Q9: algebraic (fixed) codebook excitation
82 PSEUDO-CODE
123 void add_pulses(int16 pos[], int16 nb_pulse, int16 track, int16 code[]);
145 ; FUNCTION CODE
157 int16 code[] /* (o) Q9: algebraic (fixed) codebook excitation */
162 pv_memset(code, 0, L_CODE*sizeof(*code));
174 add_pulses(pos, 1, k, code);
183 add_pulses(pos, 2, k, code);
    [all...]
  /frameworks/base/core/java/android/nfc/
ErrorCodes.java 28 public static boolean isError(int code) {
29 if (code < 0) {
36 public static String asString(int code) {
37 switch (code) {
  /frameworks/base/services/java/com/android/server/
INativeDaemonConnectorCallbacks.java 23 boolean onEvent(int code, String raw, String[] cooked);
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 19 import com.android.dx.cf.code.ByteCatchList;
20 import com.android.dx.cf.code.BytecodeArray;
25 * Attribute class for standard {@code Code} attributes.
28 /** {@code non-null;} attribute name for attributes of this type */
29 public static final String ATTRIBUTE_NAME = "Code";
31 /** {@code >= 0;} the stack size */
34 /** {@code >= 0;} the number of locals */
37 /** {@code non-null;} array containing the bytecode per se */
38 private final BytecodeArray code; field in class:AttCode
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_copy_reg.py 46 mod, func, code = 'junk1 ', ' junk2', 0xabcd
47 e = ExtensionSaver(code)
51 mod, func, code)
52 copy_reg.add_extension(mod, func, code)
54 self.assertTrue(copy_reg._extension_registry[mod, func] == code)
55 self.assertTrue(copy_reg._inverted_registry[code] == (mod, func))
57 self.assertNotIn(code, copy_reg._extension_cache)
59 copy_reg.add_extension(mod, func, code) # shouldn't blow up
60 # Conflicting code.
62 mod, func, code + 1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_copy_reg.py 46 mod, func, code = 'junk1 ', ' junk2', 0xabcd
47 e = ExtensionSaver(code)
51 mod, func, code)
52 copy_reg.add_extension(mod, func, code)
54 self.assertTrue(copy_reg._extension_registry[mod, func] == code)
55 self.assertTrue(copy_reg._inverted_registry[code] == (mod, func))
57 self.assertNotIn(code, copy_reg._extension_cache)
59 copy_reg.add_extension(mod, func, code) # shouldn't blow up
60 # Conflicting code.
62 mod, func, code + 1
    [all...]

Completed in 2016 milliseconds

1 2 3 4 5 67 8 91011>>