HomeSort by relevance Sort by last modified time
    Searched full:changes (Results 1 - 25 of 13069) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libgdx/
.gitattributes 0 /CHANGES merge=union
  /prebuilts/gdb/darwin-x86/lib/python2.7/config/
Setup.local 1 # Edit this file for local setup changes
  /prebuilts/gdb/linux-x86/lib/python2.7/config/
Setup.local 1 # Edit this file for local setup changes
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
Setup.local 1 # Edit this file for local setup changes
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
Setup.local 1 # Edit this file for local setup changes
  /art/benchmark/jni-perf/
info.txt 1 Tests for measuring performance of JNI state changes.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/
MANIFEST.in 1 include CHANGES README LICENSE
  /external/chromium-trace/catapult/third_party/gsutil/third_party/six/
MANIFEST.in 1 include CHANGES
  /external/chromium-trace/catapult/third_party/html5lib-python/doc/
changes.rst 3 .. include:: ../CHANGES.rst
  /external/chromium-trace/catapult/third_party/six/
MANIFEST.in 1 include CHANGES
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralFormatTest.java 32 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) {
38 String lastValue = (String) changes.get(new Integer(0));
42 if (changes.get(new Integer(i)) != null) {
49 lastValue = (String) changes.get(new Integer(i));
59 String expected = (String) changes.get(new Integer(0));
61 String value = changes.get(n);
77 Map changes = new HashMap(); local
78 changes.put(new Integer(0), "other");
79 helperTestRules(localeIDs, testPattern, changes);
86 Map changes = new HashMap() local
96 Map changes = new HashMap(); local
105 Map changes = new HashMap(); local
129 Map changes = new HashMap(); local
140 Map changes = new HashMap(); local
153 Map changes = new HashMap(); local
172 Map changes = new HashMap(); local
191 Map changes = new HashMap(); local
221 Map changes = new HashMap(); local
232 Map changes = new HashMap(); local
250 Map changes = new HashMap(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralFormatTest.java 28 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) {
34 String lastValue = (String) changes.get(new Integer(0));
38 if (changes.get(new Integer(i)) != null) {
45 lastValue = (String) changes.get(new Integer(i));
55 String expected = (String) changes.get(new Integer(0));
57 String value = changes.get(n);
73 Map changes = new HashMap(); local
74 changes.put(new Integer(0), "other");
75 helperTestRules(localeIDs, testPattern, changes);
82 Map changes = new HashMap() local
92 Map changes = new HashMap(); local
101 Map changes = new HashMap(); local
125 Map changes = new HashMap(); local
136 Map changes = new HashMap(); local
149 Map changes = new HashMap(); local
168 Map changes = new HashMap(); local
187 Map changes = new HashMap(); local
217 Map changes = new HashMap(); local
228 Map changes = new HashMap(); local
246 Map changes = new HashMap(); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/
MANIFEST.in 1 include CHANGES README LICENSE THANKS TODO
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion1-expected-applyCompletion8.diff 2 No changes
  /external/clang/test/Sema/
sign-conversion.c 3 // PR9345: make a subgroup of -Wconversion for signedness changes
6 unsigned t0 = x; // expected-warning {{implicit conversion changes signedness}}
7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}}
  /external/clang/test/SemaOpenCL/
address-spaces.cl 10 ip = gip; // expected-error {{assigning '__global int *' to 'int *' changes address space of pointer}}
11 ip = &li; // expected-error {{assigning '__local int *' to 'int *' changes address space of pointer}}
12 ip = &ci; // expected-error {{assigning '__constant int *' to 'int *' changes address space of pointer}}
17 g = (global int*) l; // expected-error {{casting '__local int *' to type '__global int *' changes address space of pointer}}
18 g = (global int*) c; // expected-error {{casting '__constant int *' to type '__global int *' changes address space of pointer}}
19 g = (global int*) cc; // expected-error {{casting 'const __constant int *' to type '__global int *' changes address space of pointer}}
20 g = (global int*) p; // expected-error {{casting 'int *' to type '__global int *' changes address space of pointer}}
22 l = (local int*) g; // expected-error {{casting '__global int *' to type '__local int *' changes address space of pointer}}
23 l = (local int*) c; // expected-error {{casting '__constant int *' to type '__local int *' changes address space of pointer}}
24 l = (local int*) cc; // expected-error {{casting 'const __constant int *' to type '__local int *' changes address space of pointer}
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/docs/
CHANGES 0 Changes with version 1.0.5
13 Changes with version 1.0.4
18 Changes with version 1.0.3
26 Changes with version 1.0.2
35 Changes with version 1.0.1
40 Changes with version 1.0.0
  /external/chromium-trace/catapult/third_party/html5lib-python/
MANIFEST.in 2 include CHANGES.rst
  /external/libchrome/base/allocator/
OWNERS 3 # For changes to tcmalloc it is advisable to ask jar@chromium.org
  /external/libweave/src/states/
state_change_queue_unittest.cc 33 auto changes = queue_->GetAndClearRecordedStateChanges(); local
34 ASSERT_EQ(1u, changes.size());
35 EXPECT_EQ(timestamp, changes.front().timestamp);
36 EXPECT_JSON_EQ("{'prop':{'name': 23}}", *changes.front().changed_properties);
51 auto changes = queue_->GetAndClearRecordedStateChanges(); local
52 ASSERT_EQ(2u, changes.size());
53 EXPECT_EQ(timestamp1, changes[0].timestamp);
54 EXPECT_JSON_EQ(state1, *changes[0].changed_properties);
55 EXPECT_EQ(timestamp2, changes[1].timestamp);
56 EXPECT_JSON_EQ(state2, *changes[1].changed_properties)
77 auto changes = queue_->GetAndClearRecordedStateChanges(); local
106 auto changes = queue_->GetAndClearRecordedStateChanges(); local
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/docs/
CHANGES 0 Changes with version 1.0.10
11 Changes with version 1.0.9
16 Changes with version 1.0.8
32 Changes with version 1.0.7
40 Changes with version 1.0.6
49 Changes with version 1.0.5
54 Changes with version 1.0.4
62 Changes with version 1.0.3
73 Changes with version 1.0.2
82 Changes with version 1.0.
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
CHANGES.txt 5 CHANGES
15 * Meta change: there now is a CHANGES.tx
  /external/selinux/policycoreutils/sepolicy/sepolicy/help/
booleans_toggled.txt 4 Toggle the button to turn on or off the boolean. This will not happen immediately. All changes on the application screen are bundled up into a single transaction. You need to select the update button to apply all of your changes to the system.
  /external/libchrome/base/
environment_unittest.cc 95 EnvironmentMap changes; local
98 e = AlterEnvironment(empty, changes);
101 changes[L"A"] = L"1";
102 e = AlterEnvironment(empty, changes);
105 changes.clear();
106 changes[L"A"] = string16();
107 e = AlterEnvironment(empty, changes);
110 changes.clear();
111 e = AlterEnvironment(a2, changes);
114 changes.clear()
130 EnvironmentMap changes; local
    [all...]
  /external/clang/test/SemaCXX/
warn-literal-conversion.cpp 8 int y0 = 1.2222F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}}
9 int y1 = (1.2222F); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}}
10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}}
11 int y3 = 12E-1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2 to 1}}
12 int y4 = 1.23E1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 12.3 to 12}}
14 int y5 = 1.2222; // expected-warning {{implicit conversion from 'double' to 'int' changes value from 1.2222 to 1}}
15 int y6 = 12E-1; // expected-warning {{implicit conversion from 'double' to 'int' changes value from 1.2 to 1}}
16 int y7 = 1.23E1; // expected-warning {{implicit conversion from 'double' to 'int' changes value from 12.3 to 12}}
17 int y8 = (1.23E1); // expected-warning {{implicit conversion from 'double' to 'int' changes value from 12.3 to 12}}
20 y8 = 2.22F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 2.22 to 2}
    [all...]

Completed in 977 milliseconds

1 2 3 4 5 6 7 8 91011>>