/cts/tools/dasm/src/dasm/ |
D | DopInfo.java | 19 import com.android.dx.dex.code.Dop; 20 import com.android.dx.dex.code.Dops; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.dex.code.form.Form10t; 23 import com.android.dx.dex.code.form.Form10x; 24 import com.android.dx.dex.code.form.Form11n; 25 import com.android.dx.dex.code.form.Form11x; 26 import com.android.dx.dex.code.form.Form12x; 27 import com.android.dx.dex.code.form.Form20t; 28 import com.android.dx.dex.code.form.Form21c; [all …]
|
D | parser.cup | 13 action code {: 20 parser code {: 185 com.android.dx.rop.code.AccessFlags.ACC_INTERFACE)); :} 203 PUBLIC {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_PUBLIC; :} 205 PRIVATE {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_PRIVATE; :} 207 PROTECTED {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_PROTECTED; :} 209 STATIC {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_STATIC; :} 211 FINAL {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_FINAL; :} 213 SYNCHRONIZED {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_SYNCHRONIZED; :} 215 VOLATILE {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_VOLATILE; :} [all …]
|
D | parser.java | 1610 com.android.dx.rop.code.AccessFlags.ACC_INTERFACE), in CUP$do_action() 2313 access_val |= com.android.dx.rop.code.AccessFlags.ACC_DECLARED_SYNCHRONIZED; in CUP$do_action() 2321 access_val |= com.android.dx.rop.code.AccessFlags.ACC_SYNTHETIC; in CUP$do_action() 2329 access_val |= com.android.dx.rop.code.AccessFlags.ACC_STRICT; in CUP$do_action() 2337 access_val |= com.android.dx.rop.code.AccessFlags.ACC_VARARGS; in CUP$do_action() 2345 access_val |= com.android.dx.rop.code.AccessFlags.ACC_BRIDGE; in CUP$do_action() 2353 access_val |= com.android.dx.rop.code.AccessFlags.ACC_ENUM; in CUP$do_action() 2361 access_val |= com.android.dx.rop.code.AccessFlags.ACC_ANNOTATION; in CUP$do_action() 2369 access_val |= com.android.dx.rop.code.AccessFlags.ACC_ABSTRACT; in CUP$do_action() 2377 access_val |= com.android.dx.rop.code.AccessFlags.ACC_INTERFACE; in CUP$do_action() [all …]
|
D | DasmCatchBuilder.java | 19 import com.android.dx.dex.code.CatchBuilder; 20 import com.android.dx.dex.code.CatchHandlerList; 21 import com.android.dx.dex.code.CatchTable; 22 import com.android.dx.dex.code.CodeAddress;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/ |
D | StreamingVideoActivity.java | 62 public final String code; field in StreamingVideoActivity.Stream 69 public Stream(String name, String code, String uri) { in Stream() argument 71 this.code = code; in Stream() 84 && code.equals(stream.code) in equals() 91 return name.hashCode() ^ uri.hashCode() ^ code.hashCode(); in hashCode() 207 ArrayTestListAdapter adapter, String name, String code, int itag, String signature) { 212 Stream stream = new Stream(name, code, rtspUrl); 219 streams.add(TestListItem.newTest(stream.name, PlayVideoActivity.getTestId(stream.code),
|
/cts/tests/attentionservice/src/android/attentionservice/cts/ |
D | CtsTestAttentionService.java | 47 public static void respondSuccess(int code) { in respondSuccess() argument 49 sCurrentCallback.onSuccess(code, 0); in respondSuccess() 54 public static void respondFailure(int code) { in respondFailure() argument 56 sCurrentCallback.onFailure(code); in respondFailure()
|
/cts/apps/VpnApp/src/com/android/cts/vpnfirewall/ |
D | IcmpMessage.java | 27 int code; field in IcmpMessage 33 code = stream.readUnsignedByte(); in IcmpMessage() 57 stream.writeByte(code); in getEncoded() 75 out.append("\n Code: "); out.append(code); in toString()
|
/cts/hostsidetests/appsecurity/test-apps/SplitApp/ |
D | Android.mk | 39 LOCAL_AAPT_FLAGS := --version-code 100 --version-name OneHundred --replace-version 71 LOCAL_AAPT_FLAGS := --version-code 100 --version-name OneHundredRevisionTwelve --replace-version 100 LOCAL_AAPT_FLAGS := --version-code 101 --version-name OneHundredOne --replace-version 129 LOCAL_AAPT_FLAGS := --version-code 100 --version-name OneHundred --replace-version 158 LOCAL_AAPT_FLAGS := --version-code 100 --version-name OneHundredRevisionTwelve --replace-version
|
/cts/tests/tests/media/libaudiojni/ |
D | sl-utils.cpp | 62 const char *getSLErrStr(int code) { in getSLErrStr() argument 63 if ((size_t)code >= ARRAY_SIZE(gErrorStrings)) { in getSLErrStr() 66 return gErrorStrings[code]; in getSLErrStr()
|
/cts/tools/dasm/src/java_cup/ |
D | parser.cup | 15 (and will appear in the generated code for the parser). In this 20 Action code 21 This section provides code that is included with the class encapsulating 22 the various pieces of user code embedded in the grammar (i.e., the 26 Parser code 27 This section provides code included in the parser class itself. In 31 These sections provide small bits of code that initialize, then 43 code strings) are stored as static variables of the emit class and 44 in a few cases as variables declared in the action code section. 52 code section. These include: rhs_parts, rhs_pos, and lhs_nt which [all …]
|
/cts/tests/tests/media/libndkaudio/ |
D | OpenSLESUtils.cpp | 45 const char * getSLErrStr(int code) { in getSLErrStr() argument 46 return errStrings[code]; in getSLErrStr()
|
/cts/tests/tests/os/src/android/os/cts/ |
D | LocalService.java | 49 protected boolean onTransact(int code, Parcel data, Parcel reply, 51 if (code == SET_REPORTER_CODE) { 56 return super.onTransact(code, data, reply, flags);
|
/cts/hostsidetests/securitybulletin/src/android/security/cts/ |
D | Poc18_10.java | 45 int code = AdbUtils.runPocGetExitStatus("/data/local/tmp/CVE-2018-9490", getDevice(), 60); in testPocCVE_2018_9490() local 46 assertTrue(code != 139); // 128 + signal 11 in testPocCVE_2018_9490()
|
D | Poc17_04.java | 64 int code = AdbUtils.runCommandGetExitCode("/data/local/tmp/CVE-2017-0477", getDevice()); in testPocCVE_2017_0477() local 65 assertTrue(code != 139); // 128 + signal 11 in testPocCVE_2017_0477()
|
/cts/hostsidetests/devicepolicy/app/SimpleApp/src/com/android/cts/launcherapps/simpleapp/ |
D | SimpleService.java | 42 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) 44 switch (code) { 49 return super.onTransact(code, data, reply, flags);
|
/cts/hostsidetests/jvmti/base/jni/ |
D | Android.bp | 50 "-Wunreachable-code", 59 "-Wunreachable-code-break", 60 "-Wunreachable-code-return",
|
/cts/tests/app/app/src/android/app/stubs/ |
D | LocalService.java | 60 protected boolean onTransact(int code, Parcel data, Parcel reply, 62 switch (code) { 92 return super.onTransact(code, data, reply, flags);
|
/cts/tests/tests/binder_ndk/libbinder_ndk_test/ |
D | utilities.h | 63 typedef std::function<binder_status_t(transaction_code_t code, 113 static binder_status_t transact(AIBinder* binder, transaction_code_t code, 128 status = AIBinder_transact(binder, code, &in, &out, flags);
|
D | utilities.cpp | 40 binder_status_t SampleClassOnTransact(AIBinder* binder, transaction_code_t code, in SampleClassOnTransact() argument 51 return data->onTransact(code, in, out); in SampleClassOnTransact()
|
/cts/hostsidetests/jvmti/attaching/ |
D | Android.bp | 62 "-Wunreachable-code", 71 "-Wunreachable-code-break", 72 "-Wunreachable-code-return",
|
/cts/hostsidetests/securitybulletin/test-apps/launchanywhere/src/com/android/security/cts/launchanywhere/ |
D | Authenticator.java | 67 public boolean transact(int code, Parcel data, Parcel reply, int flags) 69 if (code == TRANSACTION_onResult) { 76 mOriginRemote.transact(code, data, reply, flags);
|
/cts/hostsidetests/sustainedperf/dhrystone/ |
D | LICENSE.TXT | 25 * Redistributions of source code must retain the above copyright notice, 48 The LLVM software contains code written by third parties. Such software will 51 to that code. 54 applies to all code in the LLVM Distribution, and nothing in any of the
|
D | Rationale | 46 suppressed code generation for too many statements (by "dead code 49 Dhrystone - without inspection of the code that was generated - could 97 suppresses code generation for a part of the statements. Therefore in 102 At several places in the benchmark, code has been added, but only in 104 compilers should be prevented from moving code out of the measurement 105 loop, or from removing code altogether. Statements that are executed 115 where optimizing compilers may not generate code for some statements. 117 benchmarks. Users of the benchmark are advised to check code listings 118 whether code is generated for all statements of Dhrystone. 156 suppressed code generation for the division. [all …]
|
/cts/hostsidetests/appsecurity/test-apps/SplitApp/feature/ |
D | Android.mk | 29 LOCAL_AAPT_FLAGS := --version-code 100 --version-name OneHundred --replace-version 67 LOCAL_AAPT_FLAGS := --version-code 100 --version-name OneHundred --replace-version
|
/cts/tools/signature-tools/src/signature/converter/doclet/ |
D | DocletFactory.java | 66 accessModifier |= com.sun.tools.javac.code.Flags.PRIVATE; // 0x2 in getRootDoc() 70 accessModifier |= com.sun.tools.javac.code.Flags.PROTECTED; // 0x4 in getRootDoc() 72 accessModifier |= com.sun.tools.javac.code.Flags.PUBLIC; // 0x1 in getRootDoc()
|