/external/chromium_org/chrome/browser/ui/views/location_bar/ |
translate_icon_view.cc | 27 void TranslateIconView::SetToggled(bool on) { 29 on ? IDR_TRANSLATE_ACTIVE : IDR_TRANSLATE));
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/ |
fixChangeLogPatch.pl | 27 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 46 # Changed some code on 2009-12-22. 55 # Changed some code on 2009-12-21. 72 Changed some code on 2010-12-22. 84 Changed some code on 2010-12-22. 98 - Changed some code on 2010-12-22. 115 - Changed some code on 2010-12-22. 136 - Changed some code on 2010-12-22. 152 - Changed some code on 2010-12-22. 172 Changed some code on 2010-12-22 [all...] |
parseSvnDiffFooter.pl | 28 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 49 Property changes on: FileA 66 Property changes on: Makefile 82 Property changes on: Makefile 98 Property changes on: Makefile 115 Property changes on: FileA 132 Property changes on: FileA 152 Property changes on: FileA 171 Property changes on: FileA 176 Property changes on: Makefile.share [all...] |
/external/compiler-rt/ |
README.android | 9 * merge conflicts with upstream on those parts. 20 * Recent downstreaming on 2013/8/8: Synced to r187889 (Contact srhines for merge questions.) 21 * Recent downstreaming on 2013/6/13: Synced to r183849 (Contact srhines for merge questions.) 22 * Recent downstreaming on 2013/5/3: Synced to r180792 (Contact srhines for merge questions.) 23 * Recent downstreaming on 2013/3/18: Synced to r177337 (Contact srhines for merge questions.) 24 * Recent downstreaming on 2013/3/5: Synced to r176091 (Contact srhines for merge questions.) 25 * Recent downstreaming on 2013/1/8: Synced to r171802 (Contact srhines for merge questions.) 26 * Recent downstreaming on 2012/08/23: Synced to r162279 (Contact srhines for merge questions.) 27 * Recent downstreaming on 2012/08/15: Synced to r159129 (Contact sliao for merge questions.) 28 * Cherry-pick on 2012/07/27: https://llvm.org/svn/llvm-project/compiler-rt/trunk@160853 for ASan (Contact srhines f (…) [all...] |
/external/ipsec-tools/src/racoon/samples/roadwarrior/client/ |
racoon.conf | 12 nat_traversal on; 13 ike_frag on; 14 mode_cfg on;
|
/external/ipsec-tools/src/racoon/samples/roadwarrior/server/ |
racoon.conf | 12 generate_policy on; 13 nat_traversal on; 15 ike_frag on;
|
/external/valgrind/main/memcheck/tests/x86/ |
xor-undef-x86.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s) 4 Conditional jump or move depends on uninitialised value(s) 7 Conditional jump or move depends on uninitialised value(s)
|
/external/valgrind/main/memcheck/tests/amd64/ |
xor-undef-amd64.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s) 4 Conditional jump or move depends on uninitialised value(s) 7 Conditional jump or move depends on uninitialised value(s) 10 Conditional jump or move depends on uninitialised value(s) 13 Conditional jump or move depends on uninitialised value(s)
|
/external/llvm/ |
README.android | 9 * merge conflicts with upstream on those parts. 26 * Recent downstreaming on 2013/8/8: Synced to r187913 (Contact srhines for merge questions.) 27 * Recent downstreaming on 2013/6/13: Synced to r183849 (Contact srhines for merge questions.) 28 * Recent downstreaming on 2013/5/3: Synced to r180947 (Contact srhines for merge questions.) 29 * Recent downstreaming on 2013/3/18: Synced to r177342 (Contact srhines for merge questions.) 30 * Recent downstreaming on 2013/3/5: Synced to r176139 (Contact srhines for merge questions.) 31 * Recent downstreaming on 2013/1/8: Synced to r171905 (Contact srhines for merge questions.) 32 * Recent downstreaming on 2012/8/23: Synced to r162314 (Contact srhines for merge questions.) 33 * Recent downstreaming on 2012/8/3: Synced to r160668 (Contact sliao for merge questions.) 34 * Cherry-pick on 2012/05/23: https://llvm.org/svn/llvm-project/llvm/trunk@157317 (Contact srhines for merge questio (…) [all...] |
/external/srtp/crypto/include/ |
err.h | 38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 147 int on; /* 1 if debugging is on, 0 if it is off */ member in struct:__anon29289 153 #define debug_on(mod) (mod).on = 1 155 #define debug_off(mod) (mod).on = 0 159 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg) 161 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg1,arg2)
|
/frameworks/base/tools/layoutlib/bridge/src/com/google/android/maps/ |
MapView.java | 11 * distributed under the License is distributed on an "AS IS" BASIS, 79 public void setSatellite(boolean on) { 86 public void setTraffic(boolean on) { 93 public void setStreetView(boolean on) {
|
/libcore/luni/src/main/java/java/security/ |
DigestInputStream.java | 12 * distributed under the License is distributed on an "AS IS" BASIS, 35 // Indicates whether digest functionality is on or off 43 * {@code DigestInputStream}. All operations on such a stream will fail. 76 * for the byte if this function is {@link #on(boolean)}. 89 // - digest functionality is on 101 * {@link #on(boolean)}. 115 // - digest functionality is on 125 * Enables or disables the digest function (default is on). 127 * @param on 132 public void on(boolean on) method in class:DigestInputStream [all...] |
DigestOutputStream.java | 12 * distributed under the License is distributed on an "AS IS" BASIS, 35 // Indicates whether digest functionality is on or off 73 * this function is {@link #on(boolean)}. 82 // update digest only if digest functionality is on 92 * offset. Updates the digest if this function is {@link #on(boolean)}. 105 // update digest only if digest functionality is on 114 * Enables or disables the digest function (default is on). 116 * @param on 121 public void on(boolean on) { method in class:DigestOutputStream [all...] |
/build/core/combo/arch/mips/ |
mips32-fp.mk | 1 # Configuration for Android on MIPS.
|
mips32.mk | 1 # Configuration for Android on MIPS.
|
mips32r2.mk | 1 # Configuration for Android on MIPS.
|
/external/llvm/autoconf/m4/ |
linux_mixed_64_32.m4 | 6 [AC_CACHE_CHECK(for 32-bit userspace on 64-bit system,llvm_cv_linux_mixed,
|
/external/llvm/projects/sample/autoconf/m4/ |
linux_mixed_64_32.m4 | 6 [AC_CACHE_CHECK(for 32-bit userspace on 64-bit system,llvm_cv_linux_mixed,
|
/external/v8/ |
Android.mk | 12 ## distributed under the License is distributed on an "AS IS" BASIS, 22 $(warning WARNING: Building on ARM with non-ARMv7 variant. On ARM, V8 is well tested only on ARMv7.)
|
/external/valgrind/main/drd/tests/ |
sigaltstack.stderr.exp | 5 caught signal, local var is on 0x........
|
/external/valgrind/main/memcheck/tests/ |
manuel3.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s)
|
memcmptest.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s)
|
sigaltstack.stderr.exp | 5 caught signal, local var is on 0x........
|
strchr.stderr.exp | 1 Conditional jump or move depends on uninitialised value(s) 5 Conditional jump or move depends on uninitialised value(s) 9 Conditional jump or move depends on uninitialised value(s) 13 Conditional jump or move depends on uninitialised value(s)
|
/hardware/ti/omap4xxx/ion/ |
Android.mk | 1 # only include if running on an omap4 platform
|