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

<<21222324252627282930>>

  /external/autotest/client/site_tests/hardware_Keyboard/src/
evtest.c 323 int code = 0; local
336 code = ev[i].code;
338 } else if (code == ev[i].code &&
343 names[ev[i].type][ev[i].code]);
424 printf(" Event code %d (%s)\n",
456 ev[i].code ? "Config Sync" : "Report Sync" );
458 (ev[i].code == MSC_RAW || ev[i].code == MSC_SCAN)) {
    [all...]
  /external/avahi/avahi-sharp/
ClientException.cs 84 private ErrorCode code; field in class:Avahi.ErrorCodeArgs
88 get { return code; }
91 public ErrorCodeArgs (ErrorCode code)
93 this.code = code;
99 private ErrorCode code; field in class:Avahi.ClientException
102 private static extern IntPtr avahi_strerror (ErrorCode code);
106 get { return code; }
109 internal ClientException (int code) : this ((ErrorCode) code) {
    [all...]
  /external/bison/src/
output.c 39 #include "scan-code.h" /* max_left_semantic_context */
407 char const *code = (*get) (sym)->code; local
408 if (code)
413 code, optional typename. */
419 fprintf (out, ", %d, [[%s]]", sym->number, code);
676 | Output the parsing tables and the parser code to ftable. |
  /external/chromium-trace/catapult/dashboard/dashboard/models/
graph_data.py 2 # Use of this source code is governed by a BSD-style license that can be
169 # Source code location of the test. Optional.
170 code = ndb.StringProperty(indexed=False, repeated=True) variable in class:TestMetadata
379 # indicate an error or malicious code.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
command_registry.py 12 # This is a code generator; we're purposely verbose.
440 printer('console = code.InteractiveConsole(local_vars)')
446 printer('return e.code')
460 printer('import code') namespace
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/
storage_v1.py 5 import code namespace
159 console = code.InteractiveConsole(local_vars)
163 return e.code
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 167 std::string code = "int i;"; local
168 EXPECT_FALSE(matches(code, HasInitializerSimple));
169 EXPECT_FALSE(matches(code, HasInitializerComplex));
171 code = "int i = 1;";
172 EXPECT_TRUE(matches(code, HasInitializerSimple));
173 EXPECT_FALSE(matches(code, HasInitializerComplex));
175 code = "int y(); int i = y();";
176 EXPECT_TRUE(matches(code, HasInitializerSimple));
177 EXPECT_TRUE(matches(code, HasInitializerComplex));
202 std::string Code = "class Y { public: void x(); }; void z() { Y y; y.x(); }"
    [all...]
  /external/curl/lib/
openldap.c 29 * Notice that USE_OPENLDAP is only a source code selection switch. When
30 * libcurl is built with USE_OPENLDAP defined the libcurl source code that
31 * gets compiled is the code from openldap.c, otherwise the code that gets
32 * compiled is the code from ldap.c.
452 int code; local
454 rc = ldap_parse_result(li->ld, ent, &code, NULL, &info, NULL, NULL, 0);
460 else if(code && code != LDAP_SIZELIMIT_EXCEEDED) {
467 if(code == LDAP_SIZELIMIT_EXCEEDED
    [all...]
security.c 1 /* This source code was modified by Martin Hedenfalk <mhe@stacken.kth.se> for
6 * it not use globals, pollute name space and more. This source code awaits a
21 * 1. Redistributions of source code must retain the above copyright
396 /* safe to ignore return code */
407 /* FIXME: The error code returned here is never checked. */
410 int code; local
428 code = ftp_send_command(conn, "PBSZ %u", buffer_size);
429 if(code < 0)
432 if(code/100 != 2) {
440 /* ignore return code, use default value if it fails *
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsn.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;
34 * {@code -1} if not
41 /** {@code non-null;} source position */
44 /** {@code non-null;} list of register arguments */
50 * @param position {@code non-null;} source position information
51 * @param dest {@code non-null;} destination register
52 * @param src {@code non-null;} source registe
    [all...]
DalvInsnList.java 17 package com.android.dx.dex.code;
40 * code block. This may be greater than the largest observed register+
41 * category because the method this code block exists in may
50 * @param list {@code non-null;} the list to use for elements
52 * this code block requires.
53 * @return {@code non-null;} an appropriately-constructed instance of this
70 * Constructs an instance. All indices initially contain {@code null}.
82 * do that, this will throw {@code NullPointerException}.
84 * @param n {@code >= 0, < size();} which index
85 * @return {@code non-null;} element at that inde
    [all...]
StdCatchBuilder.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.BasicBlockList;
21 import com.android.dx.rop.code.RopMethod;
35 /** the maximum range of a single catch handler, in code units */
38 /** {@code non-null;} method to build the list for */
41 /** {@code non-null;} block output order */
44 /** {@code non-null;} address objects for each block */
51 * @param method {@code non-null;} method to build the list for
52 * @param order {@code non-null;} block output orde
    [all...]
SwitchData.java 17 package com.android.dx.dex.code;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;
33 * {@code non-null;} address representing the instruction that uses this
38 /** {@code non-null;} sorted list of switch cases (keys) */
42 * {@code non-null;} corresponding list of code addresses; the branch
52 * unknown ({@code -1}).
54 * @param position {@code non-null;} source position
55 * @param user {@code non-null;} address representing the instruction tha
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java 19 import com.android.dx.dex.code.CatchHandlerList;
20 import com.android.dx.dex.code.CatchTable;
21 import com.android.dx.dex.code.DalvCode;
32 * handler address) for a particular piece of code. Instances of this
33 * class correspond to a {@code try_item[]} and a
34 * {@code catch_handler_item[]}.
38 * the size of a {@code try_item}: a {@code uint}
39 * and two {@code ushort}s
43 /** {@code non-null;} code that contains the catches *
44 private final DalvCode code; field in class:CatchStructs
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
AccessFlags.java 17 package com.android.dx.rop.code;
26 * identical to Java access flags, but {@code ACC_SUPER} isn't
27 * used at all in translated code, and {@code ACC_SYNCHRONIZED}
47 * synchronized method; only valid in dex files for {@code native}
53 * class with new-style {@code invokespecial} for superclass
80 * method with strict floating point ({@code strictfp})
101 * method was declared {@code synchronized}; has no effect on
150 * @return {@code non-null;} human-oriented string
161 * @return {@code non-null;} human-oriented strin
    [all...]
BasicBlockList.java 17 package com.android.dx.rop.code;
30 * {@code >= -1;} the count of registers required by this method or
31 * {@code -1} if not yet calculated
36 * Constructs an instance. All indices initially contain {@code null},
37 * and the first-block label is initially {@code -1}.
48 * Constructs a mutable copy for {@code getMutableCopy()}.
61 * do that, this will throw {@code NullPointerException}.
63 * @param n {@code >= 0, < size();} which index
64 * @return {@code non-null;} element at that index
73 * @param n {@code >= 0, < size();} which inde
    [all...]
Insn.java 17 package com.android.dx.rop.code;
31 /** {@code non-null;} opcode */
34 /** {@code non-null;} source position */
37 /** {@code null-ok;} spec for the result of this instruction, if any */
40 /** {@code non-null;} specs for all the sources of this instruction */
46 * @param opcode {@code non-null;} the opcode
47 * @param position {@code non-null;} source position
48 * @param result {@code null-ok;} spec for the result, if any
49 * @param sources {@code non-null;} specs for all the sources
75 * {@code x.equals(y)} is only true if {@code x == y}
    [all...]
LocalVariableExtractor.java 17 package com.android.dx.rop.code;
23 * Code to figure out which local variables are active at which points in
27 /** {@code non-null;} method being extracted from */
30 /** {@code non-null;} block list for the method */
33 /** {@code non-null;} result in-progress */
36 /** {@code non-null;} work set indicating blocks needing to be processed */
42 * @param method {@code non-null;} the method to extract from
43 * @return {@code non-null;} the extracted information
53 * @param method {@code non-null;} the method to extract from
72 * @return {@code non-null;} the extracted informatio
    [all...]
RegisterSpecSet.java 17 package com.android.dx.rop.code;
27 /** {@code non-null;} no-element instance */
31 * {@code non-null;} array of register specs, where each element is
32 * {@code null} or is an instance whose {@code reg}
37 /** {@code >= -1;} size of the set or {@code -1} if not yet calculated */
43 * @param maxSize {@code >= 0;} the maximum register number (exclusive) that
129 * @return {@code >= 0;} the maximum size
138 * @return {@code >= 0;} the siz
    [all...]
Rop.java 17 package com.android.dx.rop.code;
28 /** minimum {@code BRANCH_*} value */
49 /** maximum {@code BRANCH_*} value */
56 * {@code non-null;} result type of this operation; {@link Type#VOID} for
61 /** {@code non-null;} types of all the sources of this operation */
64 /** {@code non-null;} list of possible types thrown by this operation */
68 * the branchingness of this op; one of the {@code BRANCH_*}
76 /** {@code null-ok;} nickname, if specified (used for debugging) */
84 * @param result {@code non-null;} result type of this operation; {@link
86 * @param sources {@code non-null;} types of all the sources of this operatio
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiCheck.java 78 System.exit(report.code);
230 private int code; field in class:ApiCheck.Report
233 private Report(int code, Set<ErrorMessage> errors) {
234 this.code = code;
238 public int code() { method in class:ApiCheck.Report
239 return code;
  /external/e2fsprogs/lib/ext2fs/
tst_bitmaps.c 576 int c, err, code; local
621 (char *)NULL, &tst_bitmaps_cmds, &code);
622 if (code) {
623 ss_perror(sci_idx, code, "creating invocation");
627 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &code);
628 if (code) {
629 ss_perror(sci_idx, code, "adding standard requests");
639 code = ss_execute_line(sci_idx, request);
640 if (code) {
641 ss_perror(sci_idx, code, request)
    [all...]
  /external/freetype/src/gzip/
infcodes.c 41 } code; /* if LEN or DIST, where in tree */ member in union:inflate_codes_state::__anon11265
117 c->sub.code.need = c->lbits;
118 c->sub.code.tree = c->ltree;
121 j = c->sub.code.need;
123 t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
144 c->sub.code.need = e;
145 c->sub.code.tree = t + t->base;
154 c->mode = BADCODE; /* invalid code */
155 z->msg = (char*)"invalid literal/length code";
163 c->sub.code.need = c->dbits
    [all...]
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifHeaderParser.java 83 int code = read(); local
84 switch (code) {
97 code = read();
98 switch (code) {
  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 53 static const UCDRecord *get_ucd_record(uint32_t code)
57 if (code >= 0x110000)
60 index = index0[code >> (SHIFT1+SHIFT2)] << SHIFT1;
61 offset = (code >> SHIFT2) & ((1<<SHIFT1) - 1);
63 offset = code & ((1<<SHIFT2) - 1);
70 static const unsigned short *get_decomp_record(uint32_t code)
74 if (code >= 0x110000)
77 index = decomp_index0[code >> (DECOMP_SHIFT1+DECOMP_SHIFT2)]
79 offset = (code >> DECOMP_SHIFT2) & ((1<<DECOMP_SHIFT1) - 1);
81 offset = code & ((1<<DECOMP_SHIFT2) - 1)
155 const unsigned short *code = *code_ptr; local
    [all...]

Completed in 1106 milliseconds

<<21222324252627282930>>