HomeSort by relevance Sort by last modified time
    Searched defs:START (Results 1 - 25 of 648) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
mode.h 1 #define START 0
  /external/clang/test/CoverageMapping/
switchmacro.c 27 #define START { while (0) { switch (0) {
30 START // CHECK: File 0, [[@LINE]]:8 -> [[@LINE+2]]:6
  /hardware/qcom/display/msm8960/libqservice/
IQService.h 39 // Hardware securing start/end notification
41 UNSECURING, // Hardware unsecuring start/end notification
47 START,
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
mode.h 1 #define START 0
  /external/ltp/testcases/kernel/io/disktest/
sfunc.h 110 START, END, STAT, INFO, DBUG, WARN, ERR
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
TweenCallback.java 10 * <b>START</b>: at each iteration beginning<br/>
21 * forward : START END START END START END
33 public static final int START = 0x02;
  /frameworks/support/compat/src/main/java/androidx/core/view/
GravityCompat.java 29 /** Raw bit controlling whether the layout direction is relative or not (START/END instead of
34 /** Push object to x-axis position at the start of its container, not changing its size. */
35 public static final int START = RELATIVE_LAYOUT_DIRECTION | Gravity.LEFT;
43 public static final int RELATIVE_HORIZONTAL_GRAVITY_MASK = START | END;
136 * if horizontal direction is LTR, then START will set LEFT and END will set RIGHT.
137 * if horizontal direction is RTL, then START will set RIGHT and END will set LEFT.
  /packages/experimental/Bummer/src/com/android/dreams/bummer/
BummerView.java 27 public static final int START = 1;
42 case START:
58 .start();
98 mHandler.sendEmptyMessage(START);
103 mHandler.sendEmptyMessage(START);
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
BummerView.java 27 public static final int START = 1;
42 case START:
58 .start();
98 mHandler.sendEmptyMessage(START);
103 mHandler.sendEmptyMessage(START);
  /cts/tools/dasm/src/java_cup/
sym.java 31 static final int START = 12;
  /external/elfutils/libelf/
exttypes.h 52 #define START(Bits, Name, EName) typedef struct {
98 #undef START
gelf_xlate.c 135 #define START(Bits, Name, EName) \
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_imdct_synth.cpp 65 start window
119 #define START 1
254 case START:
  /frameworks/base/services/core/java/com/android/server/notification/
RankingReconsideration.java 28 private static final int START = 0;
44 mState = START;
52 if (mState == START) {
69 if (mState == START) { // can't cancel if running or done
  /frameworks/support/lifecycle/integration-tests/testapp/src/androidTest/java/androidx/lifecycle/
TestUtils.java 152 static final List<Pair<TestEvent, Lifecycle.Event>> START =
  /hardware/qcom/display/msm8084/libqservice/
IQService.h 43 SECURING, // Hardware securing start/end notification
44 UNSECURING, // Hardware unsecuring start/end notification
61 START,
  /hardware/qcom/display/msm8226/libqservice/
IQService.h 42 SECURING, // Hardware securing start/end notification
43 UNSECURING, // Hardware unsecuring start/end notification
61 START,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CapsModeUtils.java 128 // single quote since they aren't start punctuation in the unicode sense, but should still
144 // start of line, or some symbol.
146 // Step 3 : Search for the start of a paragraph. From the starting point computed in step 2,
147 // we go back over any space or tab char sitting there. We find the start of a paragraph
148 // if the first char that's not a space or tab is a start of line (as in \n, start of text,
173 // There are only spacing chars between the start of the paragraph and the cursor,
230 // start of the text, or it's the sentence separator AND it happens to be the same code
244 // START, WORD, PERIOD, ABBREVIATION, NUMBER
245 // On START : (just before the first period
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/parser/
AnrParser.java 33 public static final Pattern START = Pattern.compile(
69 Matcher m = START.matcher(line);
70 // Ignore all input until the start pattern is matched.
  /external/libmojo/base/android/java/src/org/chromium/base/
PerfTraceEvent.java 49 START("S"),
80 // Nanosecond start time of performance tracing.
139 * or {@link #end(String)} is called the time since start of tracking will be logged.
183 savePerfString(makeMemoryTraceNameFromTimingName(name), eventId, EventType.START,
187 savePerfString(name, eventId, EventType.START, false);
226 savePerfString(makeMemoryTraceNameFromTimingName(name), eventId, EventType.START,
229 savePerfString(name, eventId, EventType.START, false);
  /cts/hostsidetests/statsd/src/android/cts/statsd/metric/
GaugeMetricsTests.java 91 // Create AppBreadcrumbReported Start/Stop events.
128 AppBreadcrumbReported.State.START);
  /external/autotest/server/site_tests/firmware_Cr50DeviceState/
firmware_Cr50DeviceState.py 90 START = ''
169 events.append(self.START)
227 if event != self.START:
267 self.stage_irq_add(self.get_irq_counts(), 'start %s' % state)
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowVideoView.java 23 public static final int START = 1;
57 public void start() { method in class:ShadowVideoView
59 currentState = ShadowVideoView.START;
88 return (currentState == ShadowVideoView.START);
  /external/turbine/java/com/google/turbine/parse/
VariableInitializerParser.java 42 * followed by another initializer, or the start of a generic type: `a<b, c>.foo()`. Distinguishing
53 START,
74 FieldInitState state = FieldInitState.START;
96 if (state == FieldInitState.START) {
146 case START:
159 case START:
204 int start = 0; local
208 .addAll(tokens.subList(start, idx - 1))
211 start = idx;
215 .addAll(tokens.subList(start, tokens.size())
    [all...]
  /external/v8/src/
log.h 91 enum StartEnd { START = 0, END = 1 };
202 // Heap sampling events: start, end, and individual types.
215 void SharedLibraryEvent(const std::string& library_path, uintptr_t start,
369 LogTimerEvent(Logger::START);

Completed in 1732 milliseconds

1 2 3 4 5 6 7 8 91011>>