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

1 23 4 5 6 7

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
token.py 63 AT = 50
sre_parse.py 42 r"\A": (AT, AT_BEGINNING_STRING), # start of string
43 r"\b": (AT, AT_BOUNDARY),
44 r"\B": (AT, AT_NON_BOUNDARY),
51 r"\Z": (AT, AT_END_STRING), # end of string
517 if not item or (_len(item) == 1 and item[0][0] == AT):
662 subpatternappend((AT, AT_BEGINNING))
665 subpattern.append((AT, AT_END))
692 raise error, "bogus characters at end of regular expression"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_parse.py 42 r"\A": (AT, AT_BEGINNING_STRING), # start of string
43 r"\b": (AT, AT_BOUNDARY),
44 r"\B": (AT, AT_NON_BOUNDARY),
51 r"\Z": (AT, AT_END_STRING), # end of string
517 if not item or (_len(item) == 1 and item[0][0] == AT):
662 subpatternappend((AT, AT_BEGINNING))
665 subpattern.append((AT, AT_END))
692 raise error, "bogus characters at end of regular expression"
  /external/clang/lib/Analysis/
ScanfFormatString.cpp 453 const analyze_scanf::ArgType &AT = getArgType(Ctx);
454 if (AT.isValid() && AT.matchesType(Ctx, QT))
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 6 * You may obtain a copy of the License at
111 // or jclass for static methods and the JNIEnv. We start at the aligned register A2.
145 return MipsManagedRegister::FromCoreRegister(AT);
  /dalvik/vm/compiler/template/out/
CompilerTemplateAsm-mips.S 13 * You may obtain a copy of the License at
199 #define GET_VREG_F(rd, rix) EAS2(AT, rFP, rix); \
200 .set noat; l.s rd, (AT); .set at
213 #define SET_VREG_F(rd, rix) EAS2(AT, rFP, rix); \
214 .set noat; s.s rd, (AT); .set at
239 * Uses reg AT
242 sll AT, roff, rshift; \
243 addu rd, rbase, AT; \
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Strip.java 81 wiz.visit(t, ANTLRv3Parser.AT, // ^('@' id ACTION) rule actions
205 ptype==ANTLRv3Parser.AT )
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.cpp 27 const char *DwarfAccelTable::Atom::AtomTypeString(enum AtomType AT) {
28 switch (AT) {
DwarfDebug.cpp 383 // defined at compile unit level. If a function is defined inside another
384 // function then gdb prefers the definition at top level and but does not
    [all...]
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 72 protected static final String AT = Separators.AT;
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 406 if (ObjCAtTryStmt *AT = dyn_cast<ObjCAtTryStmt>(SubStmt)) {
412 AT->getAtTryLoc()));
413 if (Stmt *TryPart = AT->getTryBody())
417 for (unsigned I = 0, N = AT->getNumCatchStmts(); I != N; ++I) {
418 ObjCAtCatchStmt *AC = AT->getCatchStmt(I);
429 if (ObjCAtFinallyStmt *AF = AT->getFinallyStmt()) {
SemaChecking.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp 200 // Let's look at the previous comment.
669 case TargetCXXABI::GenericAArch64: // Same as Itanium at this level
2443 const AtomicType *at = cast<AtomicType>(ty); local
    [all...]
  /external/llvm/lib/Support/
regengine.inc 53 #define at sat
65 #define at lat
110 static void at(struct match *, char *, char *, char *, sopno, sopno);
118 #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2)
123 #define AT(t, p1, p2, s1, s2) /* nothing */
311 AT("diss", start, stop, startst, stopst);
499 AT("back", start, stop, startst, stopst);
580 AT("hard", sp, stop, ss, stopst);
680 - fast - step through the string at top spee
    [all...]
  /bionic/libc/upstream-netbsd/libc/regex/
engine.c 89 #define at sat macro
101 #define at lat macro
148 static void at(struct match *m, char *title, char *start, char *stop, sopno startst, sopno stopst);
161 #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2)
166 #define AT(t, p1, p2, s1, s2) /* nothing */
380 AT("diss", start, stop, startst, stopst);
587 AT("back", start, stop, startst, stopst);
668 AT("hard", sp, stop, ss, stopst);
767 - fast - step through the string at top spee
1129 at( function
1186 #undef at macro
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 53 #define at sat macro
65 #define at lat macro
107 static void at(struct match *, char *, char *, char *, sopno, sopno);
115 #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2)
120 #define AT(t, p1, p2, s1, s2) /* nothing */
306 AT("diss", start, stop, startst, stopst);
490 AT("back", start, stop, startst, stopst);
571 AT("hard", sp, stop, ss, stopst);
671 - fast - step through the string at top spee
979 at(struct match *m, char *title, char *start, char *stop, sopno startst, function
1021 #undef at macro
    [all...]
  /dalvik/vm/compiler/template/mips/
TEMPLATE_RESTORE_STATE.S 6 * zero, AT, gp, sp, fp, ra
14 lw AT, r_AT*4(a0) # restore at
15 .set at
TEMPLATE_SAVE_STATE.S 14 * zero, AT, gp, sp, fp, ra
23 sw AT, r_AT*4(a0) # save at
24 .set at
TEMPLATE_MEM_OP_DECODE.S 50 sw AT, r_AT*-4(sp) # push at
51 .set at
97 lw AT, r_AT*-4(sp) # pop at
98 .set at
  /external/pixman/pixman/
pixman-mips-memcpy-asm.S 51 slti AT, a2, 8
52 bne AT, zero, $last8
76 /* There will be at most 1 32-byte chunk after it */
95 pref 30, 32(a0) /* safe, as we have at least 64 bytes ahead */
96 /* In case the a0 > t9 don't use "pref 30" at all */
230 /* There will be at most 1 32-byte chunk after it */
242 pref 30, 32(a0) /* safe, as we have at least 64 bytes ahead */
243 /* In case the a0 > t9 don't use "pref 30" at all */
  /bionic/libc/arch-mips/include/machine/
asm.h 203 move AT, ra; \
209 .set at;
  /development/ndk/platforms/android-9/arch-mips/include/machine/
asm.h 203 move AT, ra; \
209 .set at;
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/machine/
asm.h 203 move AT, ra; \
209 .set at;
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/machine/
asm.h 203 move AT, ra; \
209 .set at;
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/machine/
asm.h 203 move AT, ra; \
209 .set at;

Completed in 1043 milliseconds

1 23 4 5 6 7