HomeSort by relevance Sort by last modified time
    Searched refs:NORMAL (Results 51 - 75 of 907) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkconstants.py 70 NORMAL='normal'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 70 NORMAL='normal'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 70 NORMAL='normal'
  /system/core/libutils/include/utils/
FileMap.h 96 NORMAL, RANDOM, SEQUENTIAL, WILLNEED, DONTNEED
  /external/libchrome/base/threading/
platform_thread.h 106 NORMAL,
164 ThreadPriority::NORMAL);
platform_thread_linux.cc 37 {ThreadPriority::NORMAL, 0},
platform_thread_posix.cc 40 : delegate(NULL), joinable(false), priority(ThreadPriority::NORMAL) {}
199 delegate, &unused, ThreadPriority::NORMAL);
246 return ThreadPriority::NORMAL;
262 return ThreadPriority::NORMAL;
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 112 NORMAL,
128 * (NORMAL), was before the first key time (FREEZE_START) or after the last
141 case 0: return Result.NORMAL;
  /frameworks/base/telephony/java/android/telephony/
DisconnectCause.java 31 /** Normal; Remote hangup*/
32 public static final int NORMAL = 2;
33 /** Normal; Local hangup */
73 /** Call was blocked by restricted normal voice access */
289 case NORMAL:
290 return "NORMAL";
  /frameworks/support/compat/tests/java/android/support/v4/graphics/
TypefaceCompatTest.java 141 R.font.styletest_sync_providerfont, Typeface.NORMAL, null /* TextView */);
142 typeface = Typeface.create(typeface, Typeface.NORMAL);
181 R.font.styletest_async_providerfont, Typeface.NORMAL, textView);
231 R.font.styletestfont, Typeface.NORMAL, null /* text view */);
233 mResources, R.font.styletestfont, Typeface.NORMAL));
234 typeface = Typeface.create(typeface, Typeface.NORMAL);
235 // styletestfont has a node of fontStyle="normal" fontWeight="400" font="@font/large_a".
251 // styletestfont has a node of fontStyle="normal" fontWeight="700" font="@font/large_c".
266 R.font.large_a, "res/font/large_a.ttf", Typeface.NORMAL);
269 mResources, R.font.large_a, Typeface.NORMAL));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
statement.c 40 NORMAL
439 parse_remaining_sql_state state = NORMAL;
446 if (state == NORMAL) {
458 state = NORMAL;
462 if (state == NORMAL) {
465 state = NORMAL;
471 if (state == NORMAL) {
  /external/libvterm/src/
parser.c 138 case NORMAL:
196 case NORMAL:
210 #define ENTER_NORMAL_STATE() do { vt->parser_state = NORMAL; string_start = NULL; } while(0)
216 if(vt->parser_state != NORMAL) {
240 if(vt->parser_state != NORMAL)
243 if(vt->parser_state != NORMAL)
308 case NORMAL:
  /external/python/cpython2/Modules/_sqlite/
statement.c 41 NORMAL
444 parse_remaining_sql_state state = NORMAL;
451 if (state == NORMAL) {
463 state = NORMAL;
467 if (state == NORMAL) {
470 state = NORMAL;
476 if (state == NORMAL) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfoTest.java 19 import static com.android.resources.ScreenSize.NORMAL;
58 assertEquals("Theme", ResourceHelper.styleToTheme(info.getDefaultTheme(null, NORMAL)));
88 assertEquals("Theme", ResourceHelper.styleToTheme(info.getDefaultTheme(null, NORMAL)));
146 assertEquals("@style/NoBackground", info.getDefaultTheme(null, NORMAL));
148 NORMAL)));
191 assertEquals("Theme", ResourceHelper.styleToTheme(info.getDefaultTheme(null, NORMAL)));
208 assertEquals("Theme", ResourceHelper.styleToTheme(info.getDefaultTheme(null, NORMAL)));
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
AbstractInjectorGrapherTest.java 135 new BindingEdge(iaNode.getId(), aNode.getId(), BindingEdge.Type.NORMAL),
136 new BindingEdge(iaAnnNode.getId(), aNode.getId(), BindingEdge.Type.NORMAL),
137 new BindingEdge(stringNode.getId(), stringInstanceNode.getId(), BindingEdge.Type.NORMAL),
160 new BindingEdge(stringNode.getId(), stringInstanceNode.getId(), BindingEdge.Type.NORMAL),
180 new BindingEdge(stringNode.getId(), stringInstanceNode.getId(), BindingEdge.Type.NORMAL));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
MockAbstractPreferences.java 28 static final int NORMAL = 0;
36 int result = NORMAL;
100 case NORMAL:
  /libcore/ojluni/src/test/java/time/tck/java/time/format/
TCKPadPrinterParser.java 131 builder.padNext(3, '#').appendValue(MONTH_OF_YEAR, 1, 3, SignStyle.NORMAL);
172 builder.parseLenient().padNext(3, '#').appendValue(MONTH_OF_YEAR, 1, 3, SignStyle.NORMAL);
196 builder.padNext(3, '-').appendValue(MONTH_OF_YEAR, 1, 2, SignStyle.NORMAL);
  /external/llvm/test/MC/Mips/
expansion-jal-sym-pic.s 2 # RUN: FileCheck %s -check-prefixes=ALL,NORMAL,O32
5 # RUN: FileCheck %s -check-prefixes=ALL,NORMAL,N32
8 # RUN: FileCheck %s -check-prefixes=ALL,NORMAL,N64
75 # NORMAL: jalr $25 # encoding: [0x03,0x20,0xf8,0x09]
99 # NORMAL: jalr $25 # encoding: [0x03,0x20,0xf8,0x09]
123 # NORMAL: jalr $25 # encoding: [0x03,0x20,0xf8,0x09]
153 # NORMAL: jalr $25 # encoding: [0x03,0x20,0xf8,0x09]
181 # NORMAL: jalr $25 # encoding: [0x03,0x20,0xf8,0x09]
  /cts/tests/tests/text/src/android/text/style/cts/
TypefaceSpanTest.java 69 assertEquals(Typeface.NORMAL, tp.getTypeface().getStyle());
90 assertEquals(Typeface.NORMAL, tp.getTypeface().getStyle());
  /frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
TypefaceCreatePerfTest.java 52 Typeface face = Typeface.create(Typeface.SANS_SERIF, Typeface.NORMAL);
61 Typeface face = Typeface.create("monospace", Typeface.NORMAL);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
DoubleTest.java 37 Target t = new Target(Target.FunctionType.NORMAL, Target.ReturnType.DOUBLE, true);
  /device/google/contexthub/firmware/os/inc/algos/
fusion.h 69 NORMAL,
  /external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
GraphvizEdge.java 34 private List<ArrowType> arrowHead = ImmutableList.of(ArrowType.NORMAL);
  /external/ltp/testcases/kernel/syscalls/mq_notify/
mq_notify01.c 45 NORMAL,
63 TYPE_NAME(NORMAL),
69 TYPE_NAME(NORMAL),
75 TYPE_NAME(NORMAL),
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParameterNames.java 121 public static final String NORMAL = "normal";

Completed in 638 milliseconds

1 23 4 5 6 7 8 91011>>