HomeSort by relevance Sort by last modified time
    Searched refs:TP (Results 1 - 23 of 23) sorted by null

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js 11 var TP = org.antlr.runtime.tree.TreeParser;
13 org.antlr.lang.augmentObject(TP, {
18 org.antlr.lang.extend(TP, org.antlr.runtime.BaseRecognizer, {
20 TP.superclass.reset.call(this); // reset all recognizer state variables
66 !(tokenType===TP.UP && level===0) )
71 if ( tokenType === TP.DOWN ) {
74 else if ( tokenType === TP.UP ) {
103 if ( this instanceof TP ) {
112 return TP.superclass.getErrorMessage.call(this, e, tokenNames);
116 TP.superclass.traceIn.call(this, ruleName, ruleIndex, this.input.LT(1))
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 67 const Type *TP = T.getTypePtrOrNull();
68 if (!TP)
72 switch (TP->getTypeClass()) {
74 return GetBuiltinTypeKind(cast<BuiltinType>(TP));
283 const Type *TP = T.getTypePtrOrNull();
285 if (!TP)
288 switch (TP->getTypeClass()) {
290 T = cast<PointerType>(TP)->getPointeeType();
293 T = cast<BlockPointerType>(TP)->getPointeeType();
297 T = cast<ReferenceType>(TP)->getPointeeType()
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 61 TypeSet(MVT::SimpleValueType VT, TreePattern &TP);
109 bool MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP);
111 bool MergeInTypeInfo(MVT::SimpleValueType InVT, TreePattern &TP) {
112 return MergeInTypeInfo(EEVT::TypeSet(InVT, TP), TP);
116 bool EnforceInteger(TreePattern &TP);
119 bool EnforceFloatingPoint(TreePattern &TP);
122 bool EnforceScalar(TreePattern &TP);
125 bool EnforceVector(TreePattern &TP);
129 bool EnforceSmallerThan(EEVT::TypeSet &Other, TreePattern &TP);
    [all...]
CodeGenDAGPatterns.cpp 45 EEVT::TypeSet::TypeSet(MVT::SimpleValueType VT, TreePattern &TP) {
47 EnforceInteger(TP);
49 EnforceFloatingPoint(TP);
51 EnforceVector(TP);
75 bool EEVT::TypeSet::FillWithPossibleTypes(TreePattern &TP,
80 TP.getDAGPatterns().getTargetInfo().getLegalValueTypes();
88 TP.error("Type inference contradiction found, no " +
150 bool EEVT::TypeSet::MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP){
168 InCopy.EnforceInteger(TP);
169 InCopy.EnforceScalar(TP);
    [all...]
DAGISelMatcherGen.cpp 171 // TP - Get *SOME* tree pattern, we don't care which. It is only used for
173 TreePattern &TP = *CGP.pf_begin()->second;
178 MadeChange = PatWithNoTypes->ApplyTypeConstraints(TP,
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/doc/
sed.x 35 .TP
42 .TP
47 .TP
52 .TP
55 .TP
57 .TP
62 .TP
64 .TP
69 .TP
75 .TP
    [all...]
  /external/strace/linux/arm/
syscallent.h 32 { 1, TP, sys_exit, "exit" }, /* 1 */
33 { 0, TP, sys_fork, "fork" }, /* 2 */
38 { 3, TP, sys_waitpid, "waitpid" }, /* 7 */
42 { 3, TF|TP, sys_execve, "execve" }, /* 11 */
145 { 4, TP, sys_wait4, "wait4" }, /* 114 */
151 { 5, TP, sys_clone, "clone" }, /* 120 */
222 { 0, TP, sys_vfork, "vfork" }, /* 190 */
281 { 1, TP, sys_exit, "exit_group" }, /* 248 */
313 { 5, TP, sys_waitid, "waitid" }, /* 280 */
370 { 1, TP, sys_unshare, "unshare" }, /* 337 *
    [all...]
  /external/strace/linux/i386/
syscallent.h 32 { 1, TP, sys_exit, "_exit", SYS_exit }, /* 1 */
33 { 0, TP, sys_fork, "fork", SYS_fork }, /* 2 */
38 { 3, TP, sys_waitpid, "waitpid", SYS_wait4 }, /* 7 */
42 { 3, TF|TP, sys_execve, "execve", SYS_execve }, /* 11 */
145 { 4, TP, sys_wait4, "wait4", SYS_wait4 }, /* 114 */
151 { 5, TP, sys_clone, "clone", SYS_clone }, /* 120 */
222 { 0, TP, sys_vfork, "vfork", SYS_vfork }, /* 190 */
285 { 1, TP, sys_exit, "exit_group", __NR_exit_group }, /* 252 */
317 { 5, TP, sys_waitid, "waitid", SYS_waitid }, /* 284 */
343 { 1, TP, sys_unshare, "unshare" }, /* 310 *
    [all...]
  /external/strace/linux/sh/
syscallent.h 34 { 1, TP, sys_exit, "_exit" }, /* 1 */
35 { 0, TP, sys_fork, "fork" }, /* 2 */
40 { 3, TP, sys_waitpid, "waitpid" }, /* 7 */
44 { 3, TF|TP, sys_execve, "execve" }, /* 11 */
147 { 4, TP, sys_wait4, "wait4" }, /* 114 */
153 { 5, TP, sys_clone, "clone" }, /* 120 */
224 { 0, TP, sys_vfork, "vfork" }, /* 190 */
287 { 1, TP, sys_exit, "exit_group" }, /* 252 */
319 { 5, TP, sys_waitid, "waitid" }, /* 284 */
345 { 1, TP, sys_unshare, "unshare" }, /* 310 *
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersASTChecker.cpp 50 const Type *TP = T.getTypePtr();
51 QualType PointeeT = TP->getPointeeType();
64 if (const Type *TElem = TP->getArrayElementTypeNoTypeQual())
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
help2man 411 $content = ".TP\n\x83$2\n\x83$5\n";
432 $content = ".TP\n\x83$2\n\x83$3\n";
  /external/strace/linux/mips/
syscallent.h     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 281 DIE *getOrCreateTemplateTypeParameterDIE(DITemplateTypeParameter TP);
DwarfCompileUnit.cpp     [all...]
  /external/llvm/lib/VMCore/
AsmWriter.cpp     [all...]
  /external/valgrind/unittest/
racecheck_unittest.cc 55 // - TP (true positive) : a race exists and reported.
61 // TP and FP tests are annotated with ANNOTATE_EXPECT_RACE,
91 // test01: TP. Simple race (write vs write). {{{1
104 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test01. TP.");
423 // test09: TP. Simple race (read vs write). {{{1
439 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test09. TP.");
475 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test10. TP. FN in MSMHelgrind.");
823 // test20: TP. Incorrect synchronization via AwaitWhen(), timeout. {{{1
842 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test20. TP.");
851 // test21: TP. Incorrect synchronization via LockWhenWithTimeout(). {{{
    [all...]
  /bionic/libc/bionic/
dlmalloc.c 3785 tchunkptr tp = (tchunkptr)p; local
    [all...]
  /external/libffi/src/
dlmalloc.c 3566 tchunkptr tp = (tchunkptr)p; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_malloc.c 3576 tchunkptr tp = (tchunkptr)p; local
    [all...]
  /external/mdnsresponder/mDNSCore/
mDNSEmbeddedAPI.h     [all...]
  /external/strace/
syscall.c 116 #define TP TRACE_PROCESS
151 #undef TP
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 105 // - TP (true positive) : a race exists and reported.
111 // TP and FP tests are annotated with ANNOTATE_EXPECT_RACE,
328 // test01: TP. Simple race (write vs write). {{{1
345 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test01. TP.");
665 // test09: TP. Simple race (read vs write). {{{1
682 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test09. TP.");
719 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test10. TP. FN in MSMHelgrind.");
1120 // test20: TP. Incorrect synchronization via AwaitWhen(), timeout. {{{1
1143 ANNOTATE_EXPECT_RACE_FOR_TSAN(&GLOB, "test20. TP.");
1151 // test21: TP. Incorrect synchronization via LockWhenWithTimeout(). {{{
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]

Completed in 847 milliseconds