Searched refs:local (Results 1 - 25 of 45) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/text/format/
H A DTimeTest.java180 Time local = new Time("America/Los_Angeles");
185 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1);
187 local.normalize(false /* use isDst */);
188 local.monthDay += test.offset;
189 local.normalize(true /* ignore isDst */);
190 if (local.year != test.year2 || local.month != test.month2
191 || local.monthDay != test.day2 || local.hour != test.hour2
192 || local
[all...]
/frameworks/base/libs/common_time/
H A Dcommon_clock.h34 status_t localToCommon(int64_t local, int64_t *common_out) const;
40 void setBasis(int64_t local, int64_t common);
H A Dcommon_clock.cpp68 status_t CommonClock::localToCommon(int64_t local, int64_t *common_out) const { argument
74 if (!cur_trans_.doForwardTransform(local, common_out))
98 void CommonClock::setBasis(int64_t local, int64_t common) { argument
101 cur_trans_.a_zero = local;
/frameworks/native/cmds/flatland/
H A DAndroid.mk1 local_target_dir := $(TARGET_OUT_DATA)/local/tmp
/frameworks/av/media/common_time/
H A DAndroid.mk4 # (binder marshalers for ICommonClock as well as common clock and local clock
/frameworks/rs/scriptc/
H A Drs_time.rsh71 * rsLocaltime: Convert to local time
74 * hour, etc. This value is stored at *local.
77 * local parameter is NULL, this function does nothing and returns NULL.
80 * local: Pointer to time structure where the local time will be stored.
83 * Returns: Pointer to the output local time, i.e. the same value as the parameter local.
86 rsLocaltime(rs_tm* local, const rs_time_t* timer);
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserRestrictionsUtilsTest.java113 final Bundle local = new Bundle();
116 UserRestrictionsUtils.sortToGlobalAndLocal(null, global, local);
118 assertEquals(0, local.size());
120 UserRestrictionsUtils.sortToGlobalAndLocal(Bundle.EMPTY, global, local);
122 assertEquals(0, local.size());
131 ), global, local);
148 ), local);
/frameworks/av/media/libnbaio/
H A DAndroid.mk18 # libsndfile license is incompatible; uncomment to use for local debug only
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DRefactorClassAdapter.java100 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
101 super.visitFrame(type, nLocal, renameFrame(local), nStack, renameFrame(stack));
H A DDelegateMethodAdapter.java389 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
391 mOrgWriter.visitFrame(type, nLocal, local, nStack, stack);
/frameworks/support/v8/renderscript/rs_support/
H A DAndroid.mk20 # here so that local-intermediates-dir works.
24 intermediates := $(local-intermediates-dir)
46 generated_sources_dir := $(call local-generated-sources-dir)
/frameworks/base/media/mca/filterfw/native/
H A DAndroid.mk36 # add local includes
/frameworks/compile/libbcc/
H A Dlibbcc.sha1.mk26 intermediates := $(call local-intermediates-dir,,$(my_2nd_arch_prefix))
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/compile/mclinker/tools/mcld/
H A DAndroid.mk78 intermediates := $(call local-generated-sources-dir)
109 intermediates := $(call local-generated-sources-dir)
/frameworks/data-binding/compiler/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/data-binding/developmentPlugins/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/data-binding/integration-tests/App With Spaces/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/data-binding/integration-tests/IndependentLibrary/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/data-binding/integration-tests/MultiModuleTestApp/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/data-binding/integration-tests/TestApp/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/data-binding/samples/BindingDemo/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/rs/
H A DrsScriptC_Lib.cpp88 tm* rsrLocalTime(Context *rsc, tm *local, time_t *timer) { argument
89 if (!local) {
97 memcpy(local, tmp, sizeof(int)*9);
99 return local;
H A DAndroid.mk71 # here so that local-intermediates-dir works.
75 intermediates := $(local-intermediates-dir)
95 generated_sources:= $(local-generated-sources-dir)
198 generated_sources:= $(local-generated-sources-dir)
266 intermediates := $(call local-generated-sources-dir)
/frameworks/av/services/audioflinger/
H A DTracks.cpp1101 ExtendedTimestamp local = timeStamp; local
1106 if (local.mTimeNs[i] > 0) {
1107 local.mPosition[i] = mFrameMap.findX(local.mPosition[i]);
1111 local.mPosition[i] >= mAudioTrackServerProxy->framesReleased());
1120 local.mFlushed = mAudioTrackServerProxy->framesFlushed();
1121 mServerProxy->setTimestamp(local);
1646 ExtendedTimestamp local = timestamp; local
1651 if (local.mTimeNs[i] != 0) {
1652 const int64_t relativeServerFrames = local
[all...]

Completed in 9702 milliseconds

12