Searched refs:local (Results 1 - 25 of 27) 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/services/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.cpp67 status_t CommonClock::localToCommon(int64_t local, int64_t *common_out) const { argument
73 if (!cur_trans_.doForwardTransform(local, common_out))
97 void CommonClock::setBasis(int64_t local, int64_t common) { argument
100 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.rsh75 * in @p local. This function also returns a pointer to @p local. If @p local
78 * @param local Broken-down time.
81 * @return Pointer to broken-down time (same as input @p local).
84 rsLocaltime(rs_tm *local, const rs_time_t *timer);
/frameworks/av/media/libnbaio/
H A DAndroid.mk19 # libsndfile license is incompatible; uncomment to use for local debug only
/frameworks/rs/
H A DrsScriptC_Lib.cpp88 tm* rsrLocalTime(Context *rsc, tm *local, time_t *timer) { argument
89 if (!local) {
98 memcpy(local, tmp, sizeof(*tmp));
101 memcpy(local, tmp, sizeof(int)*9);
104 return local;
H A DAndroid.mk58 # here so that local-intermediates-dir works.
62 intermediates := $(local-intermediates-dir)
78 intermediates:= $(local-intermediates-dir)
H A DrsRuntime.h123 tm* rsrLocalTime(Context *, tm *local, time_t *timer);
/frameworks/support/v8/renderscript/rs_support/
H A DAndroid.mk20 # here so that local-intermediates-dir works.
24 intermediates := $(local-intermediates-dir)
42 intermediates:= $(local-intermediates-dir)
/frameworks/base/media/mca/filterfw/native/
H A DAndroid.mk36 # add local includes
/frameworks/testing/uiautomator/samples/SkeletonTest/
H A DAndroid.mk15 local_target_dir := $(TARGET_OUT_DATA)/local/tmp
/frameworks/compile/slang/
H A DSlangData.mk28 intermediates := $(call local-intermediates-dir)
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.h60 size_t getLocalNum() const; ///< number of local symbols in primary GOT
104 * \brief GOTMultipart counts local and global entries in the GOT.
108 GOTMultipart(size_t local = 0, size_t global = 0);
112 size_t m_LocalNum; ///< number of reserved local entries
115 size_t m_ConsumedLocal; ///< consumed local entries
118 MipsGOTEntry* m_pLastLocal; ///< the last consumed local entry
H A DMipsGOT.cpp39 MipsGOT::GOTMultipart::GOTMultipart(size_t local, size_t global) argument
40 : m_LocalNum(local),
58 "Consumed too many local GOT entries");
121 // FIXME: (simon) Do not count local entries for non-pic.
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter2.java384 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
386 mOrgWriter.visitFrame(type, nLocal, local, nStack, stack);
H A DStubMethodAdapter.java299 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
301 mParentVisitor.visitFrame(type, nLocal, local, nStack, stack);
H A DAsmAnalyzer.java642 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) { argument
687 // desc is the type descriptor of this local variable.
689 // signature is the type signature of this local variable. May be null if the local
753 // pass -- local variable instruction
H A DDependencyFinder.java536 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) { argument
581 // desc is the type descriptor of this local variable.
583 // signature is the type signature of this local variable. May be null if the local
649 // pass -- local variable instruction
/frameworks/native/libs/binder/
H A DParcel.cpp80 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
117 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
160 IBinder *local = binder->localBinder(); local
161 if (!local) {
172 obj.binder = local->getWeakRefs();
173 obj.cookie = local;
193 IBinder *local = real->localBinder(); local
194 if (!local) {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsFragment.java332 for (RootInfo local : locals) {
333 add(new RootItem(local));
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionGroup.java127 * @param profile the local profile with password crossed out
163 String local = null;
169 local = socket.getLocalAddress().getHostAddress();
179 if (local == null) {
185 mLocalIp = local;
193 mSipStack.createListeningPoint(local, port, protocol));
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DFrameworkPerfActivity.java199 mLocalCheckBox = (CheckBox)findViewById(R.id.local);
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp520 tm* SC_LocalTime(tm *local, time_t *timer) { argument
522 return rsrLocalTime(rsc, local, timer);
1269 rs_tm* rsLocaltime(rs_tm* local, const int *timer) { argument
1270 return (rs_tm*)(SC_LocalTime((tm*)local, (long*)timer));

Completed in 433 milliseconds

12