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

<<11121314151617181920>>

  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form10x.java 17 package com.android.dexgen.dex.code.form;
19 import com.android.dexgen.dex.code.DalvInsn;
20 import com.android.dexgen.dex.code.InsnFormat;
21 import com.android.dexgen.dex.code.SimpleInsn;
25 * Instruction format {@code 10x}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
SpecialFormat.java 17 package com.android.dexgen.dex.code.form;
19 import com.android.dexgen.dex.code.DalvInsn;
20 import com.android.dexgen.dex.code.DalvOps;
21 import com.android.dexgen.dex.code.InsnFormat;
28 * exceptions, as code should know (implicitly or explicitly) to avoid
30 * always returns {@code true}.
33 /** {@code non-null;} unique instance of this class */
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
TranslationAdvice.java 17 package com.android.dexgen.rop.code;
23 * the early stage code be explicitly tied to the target.
33 * @param opcode {@code non-null;} the opcode
34 * @param sourceA {@code non-null;} the first source
35 * @param sourceB {@code non-null;} the second source
36 * @return {@code true} iff the target can represent the operation
46 * @param opcode {@code non-null;} opcode
47 * @param sources {@code non-null;} source list
48 * @return {@code true} iff the target requires the sources to be
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttLocalVariableTable.java 19 import com.android.dx.cf.code.LocalVariableList;
22 * Attribute class for standard {@code LocalVariableTable} attributes.
25 /** {@code non-null;} attribute name for attributes of this type */
31 * @param localVariables {@code non-null;} list of local variable entries
AttLocalVariableTypeTable.java 19 import com.android.dx.cf.code.LocalVariableList;
22 * Attribute class for standard {@code LocalVariableTypeTable} attributes.
25 /** {@code non-null;} attribute name for attributes of this type */
31 * @param localVariables {@code non-null;} list of local variable entries
  /dalvik/dx/src/com/android/dx/dex/code/
LocalEnd.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;
31 * {@code non-null;} register spec representing the local variable ended
34 * is implicit in the ambient local variable state, but other code
41 * unknown ({@code -1}).
43 * @param position {@code non-null;} source position
44 * @param local {@code non-null;} register spec representing the local
73 * @return {@code non-null;} the register spe
    [all...]
LocalStart.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;
31 * {@code non-null;} register spec representing the local variable introduced
39 * @param spec {@code non-null;} the spec to convert
40 * @return {@code non-null;} the string form
49 * unknown ({@code -1}).
51 * @param position {@code non-null;} source position
52 * @param local {@code non-null;} register spec representing the loca
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form10x.java 17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.SimpleInsn;
25 * Instruction format {@code 10x}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
Form30t.java 17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.TargetInsn;
25 * Instruction format {@code 30t}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
  /dalvik/dx/src/com/android/dx/rop/code/
TranslationAdvice.java 17 package com.android.dx.rop.code;
23 * the early stage code be explicitly tied to the target.
33 * @param opcode {@code non-null;} the opcode
34 * @param sourceA {@code non-null;} the first source
35 * @param sourceB {@code non-null;} the second source
36 * @return {@code true} iff the target can represent the operation
46 * @param opcode {@code non-null;} opcode
47 * @param sources {@code non-null;} source list
48 * @return {@code true} iff the target requires the sources to be
  /external/bison/src/
scan-code.h 1 /* Bison code properties structure and scanner.
36 * A code passage captured from the grammar file and possibly translated,
37 * and/or properties associated with such a code passage. Don't break
52 char const *code; member in struct:code_props
53 /** Undefined iff \c code_props::code is \c NULL. */
59 * the \c code_props that would contain the code passage associated
65 * referenced in the code passage.
80 * - \c self has been overwritten to contain no code.
94 * - <tt>code != NULL</tt>.
95 * - \c code is an untranslated code passage containing no Bison escapes
    [all...]
  /external/chromium_org/ppapi/c/
pp_macros.h 2 * Use of this source code is governed by a BSD-style license that can be
105 # define PP_ALLOW_THIS_IN_INITIALIZER_LIST(code) \
108 code \
111 # define PP_ALLOW_THIS_IN_INITIALIZER_LIST(code) code
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r500_fragprog_emit.c 49 struct r500_fragment_program_code *code = &c->code->code.r500
78 struct r500_fragment_program_code * Code;
194 static void use_temporary(struct r500_fragment_program_code* code, unsigned int index)
196 if (index > code->max_temp_idx)
197 code->max_temp_idx = index;
200 static unsigned int use_source(struct r500_fragment_program_code* code, struct rc_pair_instruction_source src)
211 use_temporary(code, src.Index);
227 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX)
627 struct r500_fragment_program_code *code = &compiler->code->code.r500; local
    [all...]
  /external/chromium_org/third_party/zlib/
inflate.h 13 the crc code when it is not needed. For shared libraries, gzip decoding
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
43 DIST, /* i: waiting for distance code */
103 /* for table and code decoding */
105 /* fixed and dynamic code tables */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code const FAR *distcode; /* starting table for distance codes *
    [all...]
  /external/chromium_org/ui/base/ozone/evdev/
key_event_converter_ozone.cc 2 // Use of this source code is governed by a BSD-style license that can be
14 ui::KeyboardCode KeyboardCodeFromButton(int code) {
15 switch (code) {
26 LOG(ERROR) << "Unknown key code: " << code;
50 KeyboardCodeFromButton(input.code),
  /external/chromium_org/v8/src/
interpreter-irregexp.h 6 // * Redistributions of source code must retain the above copyright
28 // A simple interpreter for the Irregexp byte code.
40 Handle<ByteArray> code,
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalEnd.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;
31 * {@code non-null;} register spec representing the local variable ended
34 * is implicit in the ambient local variable state, but other code
41 * unknown ({@code -1}).
43 * @param position {@code non-null;} source position
44 * @param local {@code non-null;} register spec representing the local
73 * @return {@code non-null;} the register spe
    [all...]
LocalStart.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;
31 * {@code non-null;} register spec representing the local variable introduced
39 * @param spec {@code non-null;} the spec to convert
40 * @return {@code non-null;} the string form
49 * unknown ({@code -1}).
51 * @param position {@code non-null;} source position
52 * @param local {@code non-null;} register spec representing the loca
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form10x.java 17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.SimpleInsn;
25 * Instruction format {@code 10x}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
Form30t.java 17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.dex.code.TargetInsn;
25 * Instruction format {@code 30t}. See the instruction format spec
29 /** {@code non-null;} unique instance of this class */
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
TranslationAdvice.java 17 package com.android.dx.rop.code;
23 * the early stage code be explicitly tied to the target.
33 * @param opcode {@code non-null;} the opcode
34 * @param sourceA {@code non-null;} the first source
35 * @param sourceB {@code non-null;} the second source
36 * @return {@code true} iff the target can represent the operation
46 * @param opcode {@code non-null;} opcode
47 * @param sources {@code non-null;} source list
48 * @return {@code true} iff the target requires the sources to be
  /external/elfutils/libdw/
dwarf_getabbrevcode.c 1 /* Get abbreviation code.
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/mesa3d/src/gallium/drivers/r300/compiler/
r500_fragprog_emit.c 49 struct r500_fragment_program_code *code = &c->code->code.r500
78 struct r500_fragment_program_code * Code;
194 static void use_temporary(struct r500_fragment_program_code* code, unsigned int index)
196 if (index > code->max_temp_idx)
197 code->max_temp_idx = index;
200 static unsigned int use_source(struct r500_fragment_program_code* code, struct rc_pair_instruction_source src)
211 use_temporary(code, src.Index);
227 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX)
627 struct r500_fragment_program_code *code = &compiler->code->code.r500; local
    [all...]
  /external/qemu/android/
keycode-array.h 34 unsigned code,
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 13 the crc code when it is not needed. For shared libraries, gzip decoding
37 LENLENS, /* i: waiting for code length code lengths */
38 CODELENS, /* i: waiting for length/lit and distance code lengths */
39 LEN, /* i: waiting for length/lit code */
41 DIST, /* i: waiting for distance code */
99 /* for table and code decoding */
101 /* fixed and dynamic code tables */
102 code const FAR *lencode; /* starting table for length/literal codes */
103 code const FAR *distcode; /* starting table for distance codes *
    [all...]

Completed in 557 milliseconds

<<11121314151617181920>>