HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 451 - 475 of 2299) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/net/http/
LoggingEventHandler.java 36 int code, /* Status-Code value */
41 " code: " + code +
  /frameworks/base/include/binder/
Binder.h 35 virtual status_t transact( uint32_t code,
61 virtual status_t onTransact( uint32_t code,
IMemory.h 57 uint32_t code,
87 uint32_t code,
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d_gain_c.cpp 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
61 code[] = pointer to innovation codevector of type Word16
95 PSEUDO-CODE
101 When the code is written for a specific target processor the
188 ; FUNCTION CODE
194 Word16 code[], /* i : innovation codevector */
217 gc_pred(pred_state, mode, code, &exp, &frac,
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
ResultCode.java 21 * Enumeration for the return code in TERMINAL RESPONSE.
22 * To get the actual return code for each enum value, call {@link #code() code}
105 /** Launch browser generic error code */
166 ResultCode(int code) {
167 mCode = code;
171 * Retrieves the actual result code that this object represents.
172 * @return Actual result code
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
LayoutResult.java 46 * Creates a LayoutResult with a specific success code and associated message
47 * @param code
50 public LayoutResult(int code, String message) {
51 mSuccess = code;
  /packages/apps/IM/src/com/android/im/engine/
ImErrorInfo.java 27 * respond to an error condition with an error code and possibly a description
65 * Creates a new error with specified code and description.
67 * @param code the error code.
70 public ImErrorInfo(int code, String description) {
71 mCode = code;
81 * Gets the error code.
83 * @return the error code.
  /packages/apps/IM/src/com/android/im/imps/
ImpsErrorInfo.java 96 ImpsErrorInfo(int code, String description, Primitive primitive) {
97 super(code, description);
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_thread.h 74 typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
79 typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
104 The return code for the thread function is placed in the area
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_thread.h 74 typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
79 typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
104 The return code for the thread function is placed in the area
  /prebuilt/windows/sdl/include/SDL/
SDL_thread.h 74 typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
79 typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
104 The return code for the thread function is placed in the area
  /external/webkit/WebCore/bridge/
testbindings.mm 7 * 1. Redistributions of source code must retain the above copyright
209 static char code[BufferSize];
219 int num = fread(code, 1, BufferSize, f);
220 code[num] = '\0';
226 return code;
254 const char *code = readJavaScriptFromFile(argv[i]);
256 if (code) {
258 Completion comp(interp.evaluate(code));
  /external/bluetooth/glib/gio/fam/
fam-helper.c 51 fam_event_to_file_monitor_event (int code)
53 switch (code)
91 if (ev.code == FAMAcknowledge && cancelled)
103 GFileMonitorEvent eflags = fam_event_to_file_monitor_event (ev.code);
127 GFileMonitorEvent eflags = fam_event_to_file_monitor_event (ev.code);
  /external/freetype/src/cff/
cffcmap.c 80 FT_UInt code = (FT_UInt)(char_code + 1); local
85 if ( code >= 256 )
88 result = cmap->gids[code];
91 *pchar_code = code;
95 code++;
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
pvamrwbdecoder_acelp.h 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
253 int16 code[], /* (i) Q9 :Innovative vector. */
256 int32 * gain_cod, /* (o) Q16 :Code gain. */
271 int16 code[] /* (o) :Q9 algebraic (fixed) codebook excitation */
283 int16 code[] /* (o) Q9: algebraic (fixed) codebook excitation */
286 int16 * x, /* in/out: impulse response (or algebraic code) */
301 int16 code[], /* (i) Q9 : Fixed codebook excitation */
302 int16 gain_code, /* (i) Q0 : gain of code */
316 int16 gain_code, /* (i) Q0 : gain of code */
318 int16 code[], /* (i/o) : code vector *
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
GotoCommonCodeReplacer.java 32 * This AttributeVisitor redirects unconditional branches so any common code
33 * is shared, and the code preceding the branch can be removed, in the code
81 // Reset the code attribute editor.
87 // Apply the code atribute editor.
163 byte[] code = codeAttribute.code;
176 // Is the code identical at both offsets?
177 if (code[newOffset1] != code[newOffset2]
    [all...]
  /external/webkit/WebKit/win/
WebError.cpp 7 * 1. Redistributions of source code must retain the above copyright
108 /* [in] */ int code,
111 m_error = ResourceError(String(domain, SysStringLen(domain)), code, String(url, SysStringLen(url)), String());
115 HRESULT STDMETHODCALLTYPE WebError::code( function in class:WebError
142 if (int code = m_error.errorCode())
143 *result = BString(wkCFNetworkErrorGetLocalizedDescription(code)).release();
  /frameworks/base/keystore/java/android/security/
KeyStore.java 153 private ArrayList<byte[]> execute(int code, byte[]... parameters) {
167 out.write(code);
177 if ((code = in.read()) != NO_ERROR) {
178 if (code != -1) {
179 mError = code;
  /frameworks/base/libs/binder/
Binder.cpp 97 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
102 switch (code) {
107 err = onTransact(code, data, reply, flags);
186 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
188 switch (code) {
  /frameworks/base/media/java/android/media/
AsyncPlayer.java 39 int code; field in class:AsyncPlayer.Command
47 return "{ code=" + code + " looping=" + looping + " stream=" + stream
94 switch (cmd.code) {
168 cmd.code = PLAY;
190 cmd.code = STOP;
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_acelp.h 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
253 int16 code[], /* (i) Q9 :Innovative vector. */
256 int32 * gain_cod, /* (o) Q16 :Code gain. */
271 int16 code[] /* (o) :Q9 algebraic (fixed) codebook excitation */
283 int16 code[] /* (o) Q9: algebraic (fixed) codebook excitation */
286 int16 * x, /* in/out: impulse response (or algebraic code) */
301 int16 code[], /* (i) Q9 : Fixed codebook excitation */
302 int16 gain_code, /* (i) Q0 : gain of code */
316 int16 gain_code, /* (i) Q0 : gain of code */
318 int16 code[], /* (i/o) : code vector *
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.BasicBlockList;
21 import com.android.dx.rop.code.CstInsn;
22 import com.android.dx.rop.code.InsnList;
23 import com.android.dx.rop.code.RegOps;
24 import com.android.dx.rop.code.RegisterSpec;
25 import com.android.dx.rop.code.RegisterSpecList;
26 import com.android.dx.rop.code.RopMethod;
27 import com.android.dx.rop.code.Rops;
28 import com.android.dx.rop.code.Rop
    [all...]
  /external/icu4c/test/cintltst/
putiltst.c 422 int32_t code=0; local
424 for(;code<U_ERROR_LIMIT;code++){
425 errorName = u_errorName((UErrorCode)code);
428 for(code=0;code<_CODE_ARR_LEN; code++){
429 errorName = u_errorName(errorCode[code]);
430 if(uprv_strcmp(str[code],errorName )!=0){
431 log_err("Error : u_errorName failed. Expected: %s Got: %s \n",str[code],errorName)
    [all...]
  /external/icu4c/tools/gennorm/
gennorm.c 316 /* get code point range */
370 /* set this flag for all code points in this range */
430 uint32_t code, value; local
451 /* get the character code, field 0 */
452 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16);
494 (long)code, u_errorName(*pErrorCode));
507 (long)code, (long)length);
517 /* check for non-character code points */
518 if((code&0xfffe)==0xfffe || (uint32_t)(code-0xfdd0)<0x20 || code>0x10ffff)
    [all...]
  /external/openssl/crypto/0.9.9-dev/sha/
sha256-armv4.pl 12 # Performance is ~2x better than gcc 3.4 generated code and in "abso-
43 $code.=<<___ if ($i<16);
53 $code.=<<___;
82 $code.=<<___;
100 $code=<<___;
102 .code 32
137 $code.=".Lrounds_16_xx:\n";
139 $code.=<<___;
177 $code =~ s/\`([^\`]*)\`/eval $1/gem;
178 $code =~ s/\bbx\s+lr\b/.word\t0xe12fff1e/gm; # make it possible to compile with -march=armv
    [all...]

Completed in 1758 milliseconds

<<11121314151617181920>>