HomeSort by relevance Sort by last modified time
    Searched refs:NL (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/webkit/Source/WebCore/platform/graphics/filters/arm/
FELightingNEON.cpp 64 #define NL "\n"
153 "vmul.f32 " temp##_Q ", " source##_Q ", " source##_Q NL \
154 "vadd.f32 " source##_S3 ", " temp##_S0 ", " temp##_S1 NL \
155 "vadd.f32 " source##_S3 ", " source##_S3 ", " temp##_S2 NL \
156 "vsqrt.f32 " source##_S3 ", " source##_S3 NL
160 "vmul.f32 " destination##_Q ", " source1##_Q ", " source2##_Q NL \
161 "vadd.f32 " destination##_S0 ", " destination##_S0 ", " destination##_S1 NL \
162 "vadd.f32 " destination##_S0 ", " destination##_S0 ", " destination##_S2 NL
165 "tst " FLAGS_R ", #" TOSTRING(FLAG_DIFFUSE_CONST_IS_1) NL \
166 "vmuleq.f32 " TMP2_S1 ", " DIFFUSE_CONST_S ", " normalVectorLength NL \
    [all...]
  /external/openssh/openbsd-compat/
bsd-cygwin_util.c 65 #define NL(x) x, (sizeof (x) - 1)
72 { NL("ALLUSERSPROFILE=") },
73 { NL("COMPUTERNAME=") },
74 { NL("COMSPEC=") },
75 { NL("CYGWIN=") },
76 { NL("OS=") },
77 { NL("PATH=") },
78 { NL("PATHEXT=") },
79 { NL("SYSTEMDRIVE=") },
80 { NL("SYSTEMROOT=") }
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
TestFixtureBase.cs 42 public static readonly string NL = Environment.NewLine;
ANTLRxxxxStreamFixture.cs 55 + "parser grammar p;" + NL
56 + "prog : WHILE ID LCURLY (assign)* RCURLY EOF;" + NL
57 + "assign : ID ASSIGN expr SEMI ;" + NL
58 + "expr : INT | FLOAT | ID ;" + NL;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedCreateFeedTask.java 44 private static final String NL="\n"; //$NON-NLS-1$
89 sb.append("<?xml-stylesheet href=\"http://www.blogger.com/styles/atom.css\" type=\"text/css\"?>" + NL); //$NON-NLS-1$
90 sb.append("<feed xmlns=\"http://www.w3.org/2005/Atom\">" + NL); //$NON-NLS-1$
91 sb.append(" <title>" + project + SP + Messages.getString("RSSFeedCreateFeedTask.Builds") + "</title>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
92 sb.append(" <link rel=\"self\" type=\"application/atom+xml\" href=\"" + (!isNullString(feedURL)?feedURL:NS) + "\"/>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
93 sb.append(" <updated>" + getTimestamp() + "</updated>" + NL); //$NON-NLS-1$ //$NON-NLS-2$
94 sb.append(" <author>" + NL); //$NON-NLS-1$
95 sb.append(" <name>" + (!isNullString(project)?project + SP : NS) + Messages.getString("RSSFeedCreateFeedTask.BuildTeam") + "</name>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
96 sb.append(" </author>" + NL); //$NON-NLS-1$
97 sb.append(" <id>" + (!isNullString(feedURL)?feedURL:NS) + "</id>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3
    [all...]
RSSFeedAddEntryTask.java 116 private static final String NL="\n"; //$NON-NLS-1$
121 private static final String splitter = "[,\t " + NL + "]+"; //$NON-NLS-1$ //$NON-NLS-2$
306 element.insertBefore(document.createTextNode(NL + " "),refNode); //$NON-NLS-1$
333 String[] txt = { NL + " ", NL + " ", NL + " ", NL + " ", NL + " " , NL + " " }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
  /external/webkit/Tools/android/flex-2.5.4a/
scan.l 79 NL \r?\n
110 ^"%{".*{NL} {
128 ^"%pointer".*{NL} yytext_is_array = false; ++linenum;
129 ^"%array".*{NL} yytext_is_array = true; ++linenum;
133 ^"%"{LEXOPT}{OPTWS}[[:digit:]]*{OPTWS}{NL} ++linenum; /* ignore */
134 ^"%"{LEXOPT}{WS}.*{NL} ++linenum; /* ignore */
145 ^{OPTWS}{NL} ++linenum; /* allows blank lines in section 1 */
146 {OPTWS}{NL} ACTION_ECHO; ++linenum; /* maybe end of comment line */
154 [^*\n]*{NL} ++linenum; ACTION_ECHO;
170 ^"%}".*{NL} ++linenum; BEGIN(INITIAL)
    [all...]
  /external/e2fsprogs/lib/ss/
list_rqs.c 22 static char const NL[2] = "\n";
69 strcat(buffer, NL);
76 strcat(buffer, NL);
  /external/gcc-demangle/
cp-demangle.c     [all...]
  /external/valgrind/main/coregrind/m_demangle/
cp-demangle.c     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCSelfInitChecker.cpp 77 const char *NL, const char *Sep) const;
342 const char *NL, const char *Sep) const {
350 Out << Sep << NL << "ObjCSelfInitChecker:" << NL;
353 Out << " An init method has been called." << NL;
358 << NL;
362 << NL;
366 Out << NL;
383 Out << NL;
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
vertexconversion.h 74 typedef std::numeric_limits<T> NL;
77 if (NL::is_signed)
81 const float divisor = 1.0f/(2*static_cast<float>(NL::max())+1);
86 return f/NL::max();
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h 95 void print(raw_ostream &Out, const char *NL, const char *Sep) const;
99 const char *NL, const char *Sep) const;
SubEngine.h 131 const char *NL, const char *Sep) = 0;
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tests.pas 16 NL = #13#10;
18 + 'parser grammar p;' + NL
19 + 'prog : WHILE ID LCURLY (assign)* RCURLY EOF;' + NL
20 + 'assign : ID ASSIGN expr SEMI ;' + NL
21 + 'expr : INT | FLOAT | ID ;' + NL;
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 50 %token <i> NL ',' '{' '(' '|' ';' '/' ')' '}' '[' ']'
72 %type <i> pst opt_pst lbrace rbrace rparen comma nl opt_nl and bor
104 AND | and NL
108 BOR | bor NL
112 ',' | comma NL
116 DO | do NL
120 ELSE | else NL
142 '{' | lbrace NL
145 nl: label
146 NL | nl N
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 218 void Environment::print(raw_ostream &Out, const char *NL,
226 Out << NL << NL
228 << NL;
231 Out << NL;
ProgramState.cpp 396 const char *NL, const char *Sep) const {
399 Mgr.getStoreManager().print(getStore(), Out, NL, Sep);
402 Env.print(Out, NL, Sep);
405 Mgr.getConstraintManager().print(this, Out, NL, Sep);
408 Mgr.getOwningEngine()->printState(Out, this, NL, Sep);
420 const char *NL, const char *Sep) const {
424 Out <<"Tainted Symbols:" << NL;
427 Out << I->first << " : " << I->second << NL;
  /external/llvm/lib/Analysis/
LoopInfo.cpp 426 Loop *NL = getNearestLoop(*POI, L);
428 if (NL != L) {
429 // For reducible loops, NL is now an ancestor of Unloop.
430 assert((NL != Unloop && (!NL || NL->contains(Unloop))) &&
432 LI->changeLoopFor(*POI, NL);
454 Loop *NL = getNearestLoop(*POI, L);
455 if (NL != L) {
456 assert(NL != Unloop && (!NL || NL->contains(Unloop)) &
    [all...]
  /external/guava/guava/src/com/google/common/base/
Ascii.java 144 * meaning "New Line" (NL), a format effector which controls the
158 public static final byte NL = 10;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
bugTools.jar 
feedTools.jar 
  /external/webkit/LayoutTests/http/tests/resources/
post-and-verify-hybrid.cgi 76 $postData =~ s/$nativeEnding/[NL]/g;
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_defs_ext.h 115 CCM(CMOV,NL), CCM(CMOV,GE),
229 CCM(J,NL), CCM(J,GE),
290 CCM(SET,NL), CCM(SET,GE),
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 494 unsigned NL = std::distance(LStart, LE);
496 SmallVector<DiffEntry, 20> Paths1(NL+1);
497 SmallVector<DiffEntry, 20> Paths2(NL+1);
509 for (unsigned I = 0; I != NL+1; ++I) {
546 SmallVectorImpl<char> &Path = Cur[NL].Path;

Completed in 1396 milliseconds

1 2 3