HomeSort by relevance Sort by last modified time
    Searched refs:zone (Results 101 - 125 of 1089) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/util/
CECalendar.java 57 * in the default time zone with the default <code>FORMAT</code> locale.
65 * in the given time zone with the default <code>FORMAT</code> locale.
67 * @param zone The time zone for the new calendar.
69 protected CECalendar(TimeZone zone) {
70 this(zone, ULocale.getDefault(Category.FORMAT));
75 * in the default time zone with the given locale.
85 * in the default time zone with the given locale.
95 * in the given time zone with the given locale.
97 * @param zone The time zone for the new calendar
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CECalendar.java 56 * in the default time zone with the default <code>FORMAT</code> locale.
64 * in the given time zone with the default <code>FORMAT</code> locale.
66 * @param zone The time zone for the new calendar.
68 protected CECalendar(TimeZone zone) {
69 this(zone, ULocale.getDefault(Category.FORMAT));
74 * in the default time zone with the given locale.
84 * in the default time zone with the given locale.
94 * in the given time zone with the given locale.
96 * @param zone The time zone for the new calendar
    [all...]
  /external/v8/src/ast/
modules.cc 17 const AstRawString* module_request, Scanner::Location loc, Zone* zone) {
18 Entry* entry = new (zone) Entry(loc);
28 Scanner::Location loc, Zone* zone) {
29 Entry* entry = new (zone) Entry(loc);
32 AddNamespaceImport(entry, zone);
42 Scanner::Location loc, Zone* zone) {
43 Entry* entry = new (zone) Entry(loc)
    [all...]
  /external/v8/src/crankshaft/
hydrogen-osr.cc 22 Zone* zone = builder_->zone(); local
48 osr_values_ = new(zone) ZoneList<HUnknownOSRValue*>(length, zone);
54 osr_values_->Add(osr_value, zone);
63 osr_values_->Add(osr_value, zone);
hydrogen-gvn.cc 16 HInstructionMap(Zone* zone, SideEffectsTracker* side_effects_tracker)
24 ResizeLists(kInitialSize, zone);
25 Resize(kInitialSize, zone);
30 void Add(HInstruction* instr, Zone* zone) {
32 Insert(instr, zone);
37 HInstructionMap* Copy(Zone* zone) const {
38 return new(zone) HInstructionMap(zone, this)
    [all...]
compilation-phase.h 11 #include "src/zone/zone.h"
27 Zone* zone() { return &zone_; } function in class:v8::internal::BASE_EMBEDDED
32 Zone zone_;
hydrogen-uint32-analysis.h 19 : HPhase("H_Compute safe UInt32 operations", graph), phis_(4, zone()) { }
typing.h 15 #include "src/zone/zone.h"
26 AstTyper(Isolate* isolate, Zone* zone, Handle<JSFunction> closure,
42 Zone* zone_;
51 Zone* zone() const { return zone_; } function in class:v8::internal::final
55 bounds_->set(e, AstBounds::Both(bounds_->get(e), b, zone()));
58 bounds_->set(e, AstBounds::NarrowLower(bounds_->get(e), t, zone()));
lithium.h 15 #include "src/zone/zone-allocator.h"
133 LUnallocated* CopyUnconstrained(Zone* zone) {
134 LUnallocated* result = new(zone) LUnallocated(ANY);
320 static LSubKindOperand* Create(int index, Zone* zone) {
323 return new(zone) LSubKindOperand(index);
350 explicit LParallelMove(Zone* zone) : move_operands_(4, zone) {
353 move_operands_.Add(LMoveOperands(from, to), zone); local
441 Zone* zone() const { return zone_; } function in class:v8::internal::final
677 Zone* zone() const { return info_->zone(); } function in class:v8::internal::LChunk
756 Zone* zone() const { return zone_; } function in class:v8::internal::BASE_EMBEDDED
    [all...]
  /packages/apps/Car/Hvac/src/com/android/car/hvac/
HvacController.java 241 public void onErrorEvent(final int propertyId, final int zone) {
268 void handleSeatWarmerUpdate(int zone, int level) {
269 boolean shouldPropagate = mDataStore.shouldPropagateSeatWarmerLevelUpdate(zone, level);
271 Log.d(TAG, "Seat Warmer Update, zone: " + zone + " level: " + level +
277 if (zone == VehicleAreaSeat.SEAT_ROW_1_LEFT) {
333 private void handleFanPositionUpdate(int zone, int position) {
335 boolean shouldPropagate = mDataStore.shouldPropagateFanPositionUpdate(zone, index);
337 Log.d(TAG, "Fan Position Update, zone: " + zone + " position: " + position
365 final int zone = value.getAreaId(); local
570 int zone = SEAT_ALL; \/\/ Car specific workaround. local
    [all...]
  /external/v8/src/compiler/
js-generic-lowering.cc 96 isolate(), zone(), descriptor, descriptor.GetStackParameterCount(), flags,
99 node->InsertInput(zone(), 0, stub_code);
112 Linkage::GetRuntimeCallDescriptor(zone(), f, nargs, properties, flags);
115 node->InsertInput(zone(), 0, jsgraph()->CEntryStubConstant(fun->result_size));
116 node->InsertInput(zone(), nargs + 1, ref);
117 node->InsertInput(zone(), nargs + 2, arity);
143 node->AppendInput(zone(), graph()->start());
152 node->AppendInput(zone(), graph()->start());
161 node->AppendInput(zone(), graph()->start());
172 node->InsertInput(zone(), 2, jsgraph()->SmiConstant(p.feedback().index()))
696 Zone* JSGenericLowering::zone() const { return graph()->zone(); } function in class:v8::internal::compiler::JSGenericLowering
    [all...]
common-node-cache.cc 15 return external_constants_.Find(zone(), bit_cast<intptr_t>(value.address()));
20 return heap_constants_.Find(zone(), bit_cast<intptr_t>(value.address()));
control-flow-optimizer.h 10 #include "src/zone/zone-containers.h"
25 MachineOperatorBuilder* machine, Zone* zone);
40 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
47 Zone* const zone_;
graph-trimmer.cc 13 GraphTrimmer::GraphTrimmer(Zone* zone, Graph* graph)
14 : graph_(graph), is_live_(graph, 2), live_(zone) {
typer.h 42 Zone* zone() const { return graph()->zone(); } function in class:v8::internal::compiler::Typer
unwinding-info-writer.h 31 explicit UnwindingInfoWriter(Zone* zone) {}
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-nullability.h 20 - (id)copyWithZone:(nullable NSZone *)zone;
24 - (id)mutableCopyWithZone:(nullable NSZone *)zone;
  /libcore/luni/src/test/java/libcore/java/time/zone/
ZoneOffsetTransitionTest.java 16 package libcore.java.time.zone;
23 import java.time.zone.ZoneOffsetTransition;
30 * @see tck.java.time.zone.TCKZoneOffsetTransition
  /packages/services/Car/car-lib/src/android/car/hardware/property/
ICarProperty.aidl 34 CarPropertyValue getProperty(int prop, int zone) = 3;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 53 Zone.Seconds seconds = new Zone.Seconds();
54 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) {
55 Zone zone = (Zone)it.next(); local
56 String id = zone.id;
58 if (zone.minRecentOffset != zone.maxRecentOffset) {
61 + ": " + Zone.formatHours(zone.minRecentOffset
122 Zone zone = (Zone)it.next(); local
246 private TimeZone zone; field in class:TimeZoneAliasTest.Zone
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 50 Zone.Seconds seconds = new Zone.Seconds();
51 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) {
52 Zone zone = (Zone)it.next(); local
53 String id = zone.id;
55 if (zone.minRecentOffset != zone.maxRecentOffset) {
58 + ": " + Zone.formatHours(zone.minRecentOffset
119 Zone zone = (Zone)it.next(); local
243 private TimeZone zone; field in class:TimeZoneAliasTest.Zone
    [all...]
  /external/v8/src/asmjs/
asm-types.h 13 #include "src/zone/zone-containers.h"
14 #include "src/zone/zone.h"
141 AsmFunctionType(Zone* zone, AsmType* return_type)
142 : return_type_(return_type), args_(zone) {}
168 explicit AsmOverloadedFunctionType(Zone* zone) : overloads_(zone) {}
    [all...]
  /external/v8/src/parsing/
func-name-inferrer.h 8 #include "src/zone/zone.h"
32 FuncNameInferrer(AstValueFactory* ast_value_factory, Zone* zone);
65 funcs_to_infer_.Add(func_to_infer, zone());
97 void Enter() { entries_stack_.Add(names_stack_.length(), zone()); }
105 Zone* zone() const { return zone_; } function in class:v8::internal::FuncNameInferrer
121 Zone* zone_;
  /frameworks/base/core/proto/android/os/
pagetypeinfo.proto 31 * The memory has multiple zones, e.g. DMA zone, Normal zone
32 * Each zone has 11 free area. Each free area corresponds to pages of the same order.
35 * Each zone has 11 * 6 = 66 free list.
52 optional string zone = 2;
67 optional string zone = 2;
  /libcore/ojluni/src/main/java/java/time/temporal/
TemporalQueries.java 112 * <li> a zone, or
138 * This queries a {@code TemporalAccessor} for the zone.
139 * The zone is only returned if the date-time conceptually contains a {@code ZoneId}.
144 * In most cases, applications should use {@link #zone()} as this query is too strict.
150 * {@code ZonedDateTime} returns the associated zone<br>
155 * {@code ChronoZonedDateTime} returns the associated zone<br>
165 * @return a query that can obtain the zone ID of a temporal, not null
252 * This queries a {@code TemporalAccessor} for the zone.
253 * It first tries to obtain the zone, using {@link #zoneId()}.
263 * exception if a zone cannot be obtained
267 public static TemporalQuery<ZoneId> zone() { method in class:TemporalQueries
    [all...]

Completed in 981 milliseconds

1 2 3 45 6 7 8 91011>>