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

<<11121314151617181920>>

  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalSnapshot.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.RegisterSpecSet;
22 import com.android.dx.rop.code.SourcePosition;
30 /** {@code non-null;} local state associated with this instance */
35 * unknown ({@code -1}).
37 * @param position {@code non-null;} source position
38 * @param locals {@code non-null;} associated local variable state
65 * @return {@code non-null;} the stat
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form11x.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;
22 import com.android.dx.rop.code.RegisterSpecList;
28 * Instruction format {@code 11x}. See the instruction format spec
32 /** {@code non-null;} unique instance of this class */
  /external/e2fsprogs/lib/ss/
error.c 60 void ss_error (int sci_idx, long code, const char * fmt, ...)
67 com_err_va (whoami, code, fmt, pvar);
72 void ss_perror (sci_idx, code, msg) /* for compatibility */
74 long code;
77 ss_error (sci_idx, code, "%s", msg);
  /external/llvm/lib/Support/
system_error.cpp 35 error_category::equivalent(int code, const error_condition& condition) const {
36 return default_error_condition(code) == condition;
40 error_category::equivalent(const error_code& code, int condition) const {
41 return *this == code.category() && code.value() == condition;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ShadowBinderTest.java 23 assertThat(testBinder.code, equalTo(2));
30 int code; field in class:ShadowBinderTest.TestBinder
36 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException {
37 this.code = code;
  /frameworks/native/include/binder/
IAppOpsService.h 33 virtual int32_t checkOperation(int32_t code, int32_t uid, const String16& packageName) = 0;
34 virtual int32_t noteOperation(int32_t code, int32_t uid, const String16& packageName) = 0;
35 virtual int32_t startOperation(const sp<IBinder>& token, int32_t code, int32_t uid,
37 virtual void finishOperation(const sp<IBinder>& token, int32_t code, int32_t uid,
66 virtual status_t onTransact( uint32_t code,
  /frameworks/base/obex/javax/obex/
ServerSession.java 9 * - Redistributions of source code must retain the above copyright notice,
153 * create a <code>HeaderSet</code> object to pass to the
154 * <code>ServerRequestHandler</code> object. After the handler processes the
160 int code = ResponseCodes.OBEX_HTTP_OK; local
167 code = ResponseCodes.OBEX_HTTP_REQ_TOO_LARGE;
172 code = mListener.onAbort(request, reply);
173 Log.v(TAG, "onAbort request handler return value- " + code);
174 code = validateResponseCode(code)
297 int code = -1; local
418 int code = ResponseCodes.OBEX_HTTP_OK; local
529 int code = -1; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/
char-escape.js 6 // * Redistributions of source code must retain the above copyright
36 function code(str) { function
41 assertEquals(0x08, code("\b"));
42 assertEquals(0x09, code("\t"));
43 assertEquals(0x0A, code("\n"));
44 assertEquals(0x0B, code("\v"));
45 assertEquals(0x0C, code("\f"));
46 assertEquals(0x0D, code("\r"));
47 assertEquals(0x22, code("\""));
48 assertEquals(0x27, code("\'"));
    [all...]
  /external/v8/test/mjsunit/
char-escape.js 6 // * Redistributions of source code must retain the above copyright
36 function code(str) { function
41 assertEquals(0x08, code("\b"));
42 assertEquals(0x09, code("\t"));
43 assertEquals(0x0A, code("\n"));
44 assertEquals(0x0B, code("\v"));
45 assertEquals(0x0C, code("\f"));
46 assertEquals(0x0D, code("\r"));
47 assertEquals(0x22, code("\""));
48 assertEquals(0x27, code("\'"));
    [all...]
  /frameworks/native/libs/binder/
IAppOpsService.cpp 40 virtual int32_t checkOperation(int32_t code, int32_t uid, const String16& packageName) {
43 data.writeInt32(code);
52 virtual int32_t noteOperation(int32_t code, int32_t uid, const String16& packageName) {
55 data.writeInt32(code);
64 virtual int32_t startOperation(const sp<IBinder>& token, int32_t code, int32_t uid,
69 data.writeInt32(code);
78 virtual void finishOperation(const sp<IBinder>& token, int32_t code, int32_t uid,
83 data.writeInt32(code);
122 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
125 switch(code) {
128 int32_t code = data.readInt32(); local
138 int32_t code = data.readInt32(); local
149 int32_t code = data.readInt32(); local
160 int32_t code = data.readInt32(); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
FixedSizeInsn.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
24 * Base class for instructions which are of a fixed code size and which use {@link InsnFormat} methods to write themselves. This
30 * unknown ({@code -1}).
33 * absolutely no registers (e.g., a {@code nop} or a
39 * @param position {@code non-null;} source position
40 * @param registers {@code non-null;} register list, including a
OddSpacer.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
24 * Pseudo-instruction which either turns into a {@code nop} or
32 * unknown ({@code -1}).
34 * @param position {@code non-null;} source position
  /dalvik/dx/src/com/android/dx/dex/code/
FixedSizeInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
24 * Base class for instructions which are of a fixed code size and
31 * unknown ({@code -1}).
34 * absolutely no registers (e.g., a {@code nop} or a
40 * @param position {@code non-null;} source position
41 * @param registers {@code non-null;} register list, including a
OddSpacer.java 17 package com.android.dx.dex.code;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;
25 * Pseudo-instruction which either turns into a {@code nop} or
33 * unknown ({@code -1}).
35 * @param position {@code non-null;} source position
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
ISO10126d2Padding.java 51 byte code = (byte)(in.length - inOff);
59 in[inOff] = code;
61 return code;
PKCS7Padding.java 42 byte code = (byte)(in.length - inOff);
46 in[inOff] = code;
50 return code;
X923Padding.java 45 byte code = (byte)(in.length - inOff);
60 in[inOff] = code;
62 return code;
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
error.py 26 def __init__(self, code, message, token, position, fix_data):
30 code: The numeric error code.
38 self.code = code
51 """Compare two error objects, by source code order.
  /external/chromium_org/build/android/buildbot/tests/
bb_run_bot_test.py 3 # Use of this source code is governed by a BSD-style license that can be
15 code = 0
18 code |= proc.returncode
22 return code
  /external/chromium_org/chrome/test/webdriver/
webdriver_error.h 2 // Use of this source code is governed by a BSD-style license that can be
19 // If you add a code here, don't forget to add it to |ErrorCodeToString|.
50 explicit Error(ErrorCode code);
52 Error(ErrorCode code, const std::string& details);
58 ErrorCode code() const;
  /external/chromium_org/net/test/embedded_test_server/
http_response.h 2 // Use of this source code is governed by a BSD-style license that can be
37 // The response code.
38 HttpStatusCode code() const { return code_; } function in class:net::test_server::BasicHttpResponse
39 void set_code(HttpStatusCode code) { code_ = code; }
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8LazyEventListener.h 8 * * Redistributions of source code must retain the above copyright
47 // V8LazyEventListener is a wrapper for a JavaScript code string that is compiled and evaluated when an event is fired.
51 static PassRefPtr<V8LazyEventListener> create(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String& sourceURL, const TextPosition& position, Node* node)
53 return adoptRef(new V8LazyEventListener(functionName, eventParameterName, code, sourceURL, position, node));
62 V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition&, Node*);
67 // the SVG code does not add the event handler in both
  /external/chromium_org/third_party/WebKit/Source/web/
WebEntities.cpp 8 * * Redistributions of source code must retain the above copyright
55 String WebEntities::entityNameByCode(int code) const
58 if (m_entitiesMap.contains(code))
59 return m_entitiesMap.get(code);
  /external/chromium_org/third_party/WebKit/public/web/
WebGeolocationError.h 8 * 1. Redistributions of source code must retain the above copyright
49 WebGeolocationError(Error code, const WebString& message) { assign(code, message); }
53 WEBKIT_EXPORT void assign(Error code, const WebString& message);
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
error.py 26 def __init__(self, code, message, token, position, fix_data):
30 code: The numeric error code.
38 self.code = code
51 """Compare two error objects, by source code order.

Completed in 1751 milliseconds

<<11121314151617181920>>