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

<<11121314151617181920>>

  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
SoapFault12.java 43 public Node Code;
64 this.faultcode = Code.getElement(SoapEnvelope.ENV2003, "Value").getText(0);
76 if (name.equals("Code")) {
77 this.Code = new Node();
78 this.Code.parse(parser);
106 //this.Code.write(xw);
108 xw.startTag(SoapEnvelope.ENV2003, "Code");
109 this.Code.write(xw);
110 xw.endTag(SoapEnvelope.ENV2003, "Code");
144 String code = Code.getElement(SoapEnvelope.ENV2003, "Value").getText(0) local
    [all...]
  /external/libexif/libexif/
exif-log.c 39 ExifLogCode code; member in struct:__anon3224
53 exif_log_code_get_title (ExifLogCode code)
57 for (i = 0; codes[i].title; i++) if (codes[i].code == code) break;
62 exif_log_code_get_message (ExifLogCode code)
66 for (i = 0; codes[i].message; i++) if (codes[i].code == code) break;
135 exif_log (ExifLog *log, ExifLogCode code, const char *domain,
141 exif_logv (log, code, domain, format, args);
146 exif_logv (ExifLog *log, ExifLogCode code, const char *domain
    [all...]
  /external/libunwind/tests/
Gtest-dyn1.c 26 /* This file tests dynamic code-generation via function-cloning. */
63 long code; member in struct:fdesc
72 long code; member in struct:fdesc
77 (fdesc).code = (long) &(func) & ~0x1; \
79 /*# define get_fdesc(fdesc,func) ({(fdesc).code = (long) &(func) & ~0x1; \
81 # define get_funcp(fdesc) ((template_t) ((fdesc).code | (fdesc).is_thumb))
86 long code; member in struct:fdesc
88 # define get_fdesc(fdesc,func) (fdesc.code = (long) &(func))
89 # define get_funcp(fdesc) ((template_t) (fdesc).code)
184 printf ("old code @ %p, new code @ %p\n", (void *) fdesc.code, mem)
    [all...]
  /external/libvorbis/vq/
distribution.c 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
165 float code; local
172 while(!flag && sscanf(line,"%f",&code)==1){
174 min=max=code;
178 while(line && sscanf(line,"%f",&code)==1){
181 if(code<min)min=code;
182 if(code>max)max=code;
208 float code; local
    [all...]
latticetune.c 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
98 long code; local
102 if(sscanf(line,"%ld",&code)==1)
103 hits[code]++;
115 /* code:hits\n */
116 /* likely to have multiple listing for each code entry; must
121 long code=atol(line); local
123 hits[code]+=val;
  /external/lldb/source/API/
SBTypeSynthetic.cpp 64 const char* code = m_opaque_sp->GetPythonCode(); local
65 return (code && *code);
  /external/mesa3d/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/nist-sip/java/gov/nist/javax/sip/parser/
WarningParser.java 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
86 // Parsing the 3digits code
90 int code = Integer.parseInt(token.getTokenValue()); local
91 warning.setCode(code);
128 // Parsing the 3digits code
132 int code = Integer.parseInt(tok.getTokenValue()); local
133 warning.setCode(code);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
StatusLineTest.java 29 int code = 200; local
30 StatusLine statusLine = new StatusLine("HTTP/1." + version + " " + code + " " + message);
33 assertEquals(code, statusLine.code());
38 int code = 503; local
39 StatusLine statusLine = new StatusLine("HTTP/1." + version + " " + code + " ");
42 assertEquals(code, statusLine.code());
52 int code = 503; local
53 StatusLine statusLine = new StatusLine("HTTP/1." + version + " " + code);
    [all...]
  /external/oprofile/daemon/
opd_spu.c 143 * context switch (via handlers[code)), we cache the
149 unsigned long long code; local
152 code = pop_buffer_value(trans);
154 if (!is_escape_code(code)) {
155 opd_put_spu_sample(trans, code);
166 code = pop_buffer_value(trans);
168 if (code >= LAST_CODE) {
169 fprintf(stderr, "Unknown code %llu\n", code);
173 handlers[code](trans)
    [all...]
opd_trans.c 137 fprintf(stderr, "Unknown code !\n");
314 * is an unsigned long and below the printf("..." %llu\n", code)
317 unsigned long long code; local
325 code = pop_buffer_value(&trans);
327 if (!is_escape_code(code)) {
328 opd_put_sample(&trans, code);
339 code = pop_buffer_value(&trans);
341 if (code >= LAST_CODE) {
342 fprintf(stderr, "Unknown code %llu\n", code);
    [all...]
  /external/oprofile/opjitconv/
opjitconv.h 38 * the jit dump file gets mmapped and code and
45 /* point to code in the memory mapped file */
46 void const * code; member in struct:jitentry
47 /* size of the jitted code */
54 /* seconds since epoch when the code was created */
56 /* seconds since epoch when the code was overwritten */
59 * section we put this code to */
66 /* seconds since epoch when the code was created */
68 /* seconds since epoch when the code was overwritten */
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CodeItem.java 19 import com.android.dexgen.dex.code.CatchTable;
20 import com.android.dexgen.dex.code.CstInsn;
21 import com.android.dexgen.dex.code.DalvCode;
22 import com.android.dexgen.dex.code.DalvInsn;
23 import com.android.dexgen.dex.code.DalvInsnList;
24 import com.android.dexgen.dex.code.LocalList;
25 import com.android.dexgen.dex.code.PositionList;
42 * {@code dex} file.
51 /** {@code non-null;} method that this code implements *
55 private final DalvCode code; field in class:CodeItem
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 17 package com.android.dx.cf.code;
19 import com.android.dx.rop.code.LocalItem;
40 * {@code non-null;} canned error message for local variable
47 /** {@code non-null;} machine to use when simulating */
50 /** {@code non-null;} array of bytecode */
51 private final BytecodeArray code; field in class:Simulator
53 /** {@code non-null;} local variable information */
56 /** {@code non-null;} visitor instance to use */
62 * @param machine {@code non-null;} machine to use when simulating
63 * @param method {@code non-null;} method data to us
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CodeItem.java 20 import com.android.dx.dex.code.DalvCode;
21 import com.android.dx.dex.code.DalvInsnList;
33 * {@code dex} file.
42 /** {@code non-null;} method that this code implements */
45 /** {@code non-null;} the bytecode instructions and associated data */
46 private final DalvCode code; field in class:CodeItem
48 /** {@code null-ok;} the catches, if needed; set in {@link #addContents} */
51 /** whether this instance is for a {@code static} method */
55 * {@code non-null;} list of possibly-thrown exceptions; just used i
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
singlesigner.js 2 // Use of this source code is governed by a BSD-style license that can be
16 * code: number,
315 * @param {number} code the result of the sign operation
320 function(challengeIndex, code, opt_info) {
322 ', challenge ' + challengeIndex + ' yielded ' + code.toString(16)));
331 if (code == DeviceStatusCodes.WRONG_DATA_STATUS ||
332 code == DeviceStatusCodes.WRONG_LENGTH_STATUS) {
336 this.cachedError_[challenge.keyHandle] = code;
342 switch (code) {
344 this.goToError_(code);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CodeItem.java 19 import com.android.dx.dex.code.CstInsn;
20 import com.android.dx.dex.code.CatchTable;
21 import com.android.dx.dex.code.DalvCode;
22 import com.android.dx.dex.code.DalvInsn;
23 import com.android.dx.dex.code.DalvInsnList;
24 import com.android.dx.dex.code.LocalList;
25 import com.android.dx.dex.code.PositionList;
42 * {@code dex} file.
51 /** {@code non-null;} method that this code implements *
55 private final DalvCode code; field in class:CodeItem
    [all...]
  /external/javassist/src/main/javassist/compiler/
JvstCodeGen.java 22 /* Code generator accepting extended Java syntax for Javassist.
142 protected void atAssignParamList(CtClass[] params, Bytecode code)
151 code.addOpcode(DUP);
152 code.addIconst(i);
153 code.addOpcode(AALOAD);
154 compileUnwrapValue(params[i], code);
155 code.addStore(varNo, params[i]);
596 * by the produced code.
604 public static int compileParameterList(Bytecode code,
607 code.addIconst(0); // iconst_
    [all...]
  /art/compiler/dex/
verified_method.cc 267 * Walks over the method code and adds any cast instructions in which
268 * the type cast is implicit to a set, which is used in the code generation
280 Instruction::Code code = inst->Opcode(); local
281 if ((code == Instruction::CHECK_CAST) || (code == Instruction::APUT_OBJECT)) {
285 if (code == Instruction::CHECK_CAST) {
  /bootable/recovery/minui/
events.c 191 int code; local
204 for (code = 0; code <= KEY_MAX; code++) {
205 if (test_bit(code, key_bits))
206 set_key_cb(code, 1, data);
  /cts/tools/utils/
monsoon.py 21 To install gflags, see http://code.google.com/p/python-gflags/
48 import gflags as flags # http://code.google.com/p/python-gflags/ namespace
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
33 * {@code non-null;} address representing the instruction that uses this
38 /** {@code non-null;} initial values to be filled into an array */
52 * unknown ({@code -1}).
54 * @param position {@code non-null;} source position
55 * @param user {@code non-null;} address representing the instruction that
57 * @param values {@code non-null;} initial values to be filled into an array
CatchHandlerList.java 17 package com.android.dexgen.dex.code;
28 /** {@code non-null;} empty instance */
32 * Constructs an instance. All indices initially contain {@code null}.
34 * @param size {@code >= 0;} the size of the list
43 * do that, this will throw {@code NullPointerException}.
45 * @param n {@code >= 0, < size();} which index
46 * @return {@code non-null;} element at that index
61 * @param prefix {@code non-null;} the prefix for every line
62 * @param header {@code non-null;} the header for the first line (after the
64 * @return {@code non-null;} the human for
    [all...]
PositionList.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.SourcePosition;
27 /** {@code non-null;} empty instance */
53 * @param insns {@code non-null;} instructions to convert
56 * @return {@code non-null;} the positions list
115 * Constructs an instance. All indices initially contain {@code null}.
117 * @param size {@code >= 0;} the size of the list
126 * do that, this will throw {@code NullPointerException}.
128 * @param n {@code >= 0, < size();} which index
129 * @return {@code non-null;} element at that inde
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form35c.java 17 package com.android.dexgen.dex.code.form;
19 import com.android.dexgen.dex.code.CstInsn;
20 import com.android.dexgen.dex.code.DalvInsn;
21 import com.android.dexgen.dex.code.InsnFormat;
22 import com.android.dexgen.rop.code.RegisterSpec;
23 import com.android.dexgen.rop.code.RegisterSpecList;
31 * Instruction format {@code 35c}. See the instruction format spec
35 /** {@code non-null;} unique instance of this class */
123 * category-2 values count as two words. Return {@code -1} if the
127 * @param regs {@code non-null;} the register list in questio
    [all...]

Completed in 1954 milliseconds

<<11121314151617181920>>