/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_StringIO.py | 14 _line = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!'
variable in class:TestGenericStringIO 16 # Constructor to use for the test data (._line is passed to this
21 self._line = self.constructor(self._line)
22 self._lines = self.constructor((self._line + '\n') * 5)
28 eq(self._fp.read(10), self._line[:10])
29 eq(self._fp.readline(), self._line[10:] + '\n')
32 eq(self._fp.readline(-1), self._line + '\n')
37 f.write(self._line[:6])
39 f.write(self._line[20:26]) [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
ANTLRStringStream.as | 41 protected var _line:int = 1; 78 _line = 1; 87 _line++; 142 state.line = _line; 152 _line = state.line; 187 return _line; 195 this._line = line;
|
CommonToken.as | 34 protected var _line:int; 70 token._line = oldToken.line; 86 _line = line; 110 return _line;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/ |
AToken_traditional.h | 156 int _line;
member in class:ANTLRCommonNoRefCountToken 161 { setType(t); _line = 0; setText(s); }
163 { setType((ANTLRTokenType)0); _line = 0; setText(""); }
167 virtual int getLine() { return _line; }
168 void setLine(int line) { _line = line; }
185 int _line;
member in class:ANTLRCommonToken 190 { setType(t); _line = 0; setText(s); }
192 { setType((ANTLRTokenType)0); _line = 0; setText(""); }
197 virtual int getLine() { return _line; }
198 void setLine(int line) { _line = line; } [all...] |
AToken.h | 159 int _line;
member in class:ANTLRCommonNoRefCountToken 164 { setType(t); _line = 0; _text = NULL; setText(s); }
166 { setType((ANTLRTokenType)0); _line = 0; _text = NULL; setText(""); }
172 virtual int getLine() const { return _line; }
173 void setLine(int line) { _line = line; }
208 setLine(from._line);
223 setLine(rhs._line);
232 int _line;
member in class:ANTLRCommonToken 237 { setType(t); _line = 0; _text = NULL; setText(s); } // MR9
239 { setType((ANTLRTokenType)0); _line = 0; _text = NULL; setText(""); } // MR9 [all...] |
DLexerBase.cpp | 74 this->_line = 1;
93 this->_line=1;
101 _line = 1;
118 state->line = _line;
142 _line = state->line;
212 _line,_lextext);
237 _ANTLRTokenPtr tk = token_to_fill->makeToken(tt, _lextext,_line);
|
DLexerBase.h | 135 int _line; /* line current token is on */
member in class:DLGLexerBase 163 int line() { return _line; }
164 void set_line(int newValue) { _line=newValue; }; // MR1
165 virtual void newline() { _line++; }
|
/external/mesa3d/src/glx/apple/ |
apple_glx_log.c | 108 char *_line; local 109 asprintf(&_line, "%d", line); 110 if (_line) { 111 asl_set(msg, "Line", _line); 112 free(_line);
|
/external/opencv/cv/src/ |
cvlinefit.cpp | 220 icvCalcDist2D( CvPoint2D32f * points, int count, float *_line, float *dist ) 223 float px = _line[2], py = _line[3]; 224 float nx = _line[1], ny = -_line[0]; 242 icvCalcDist3D( CvPoint3D32f * points, int count, float *_line, float *dist ) 245 float px = _line[3], py = _line[4], pz = _line[5]; 246 float vx = _line[0], vy = _line[1], vz = _line[2] [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/ |
AToken.h | 179 int _line;
member in class:ANTLRCommonNoRefCountToken 184 { setType(t); _line = 0; _text = NULL; setText(s); }
186 { setType((ANTLRTokenType)0); _line = 0; _text = NULL; setText(""); }
192 virtual int getLine() const { return _line; }
193 void setLine(int line) { _line = line; }
228 setLine(from._line);
243 setLine(rhs._line);
252 int _line;
member in class:ANTLRCommonToken 257 { setType(t); _line = 0; _text = NULL; setText(s); } // MR9
259 { setType((ANTLRTokenType)0); _line = 0; _text = NULL; setText(""); } // MR9 [all...] |
DLexerBase.h | 135 int _line; /* line current token is on */
member in class:DLGLexerBase 163 int line() { return _line; }
164 void set_line(int newValue) { _line=newValue; }; // MR1
165 virtual void newline() { _line++; }
|
DLexerBase.cpp | 75 this->_line = 1;
94 this->_line=1;
102 _line = 1;
119 state->line = _line;
143 _line = state->line;
225 _line,_lextext);
250 _ANTLRTokenPtr tk = token_to_fill->makeToken(tt, _lextext,_line);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_StringIO.py | 16 _line = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!' variable in class:TestGenericStringIO 18 # Constructor to use for the test data (._line is passed to this 23 self._lines = self.constructor((self._line + '\n') * 5) 29 eq(self._fp.read(10), self._line[:10]) 32 eq(self._fp.readline(), self._line[10:] + '\n') 35 eq(self._fp.readline(-1), self._line + '\n') 40 f.write(self._line[:6]) 42 f.write(self._line[20:26]) 43 f.write(self._line[52]) 48 f.writelines([self._line[0], self._line[1], self._line[2]] [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_StringIO.py | 16 _line = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!' variable in class:TestGenericStringIO 18 # Constructor to use for the test data (._line is passed to this 23 self._lines = self.constructor((self._line + '\n') * 5) 29 eq(self._fp.read(10), self._line[:10]) 32 eq(self._fp.readline(), self._line[10:] + '\n') 35 eq(self._fp.readline(-1), self._line + '\n') 40 f.write(self._line[:6]) 42 f.write(self._line[20:26]) 43 f.write(self._line[52]) 48 f.writelines([self._line[0], self._line[1], self._line[2]] [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_StringIO.py | 16 _line = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!' variable in class:TestGenericStringIO 18 # Constructor to use for the test data (._line is passed to this 23 self._lines = self.constructor((self._line + '\n') * 5) 29 eq(self._fp.read(10), self._line[:10]) 32 eq(self._fp.readline(), self._line[10:] + '\n') 35 eq(self._fp.readline(-1), self._line + '\n') 40 f.write(self._line[:6]) 42 f.write(self._line[20:26]) 43 f.write(self._line[52]) 48 f.writelines([self._line[0], self._line[1], self._line[2]] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_StringIO.py | 16 _line = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!' variable in class:TestGenericStringIO 18 # Constructor to use for the test data (._line is passed to this 23 self._lines = self.constructor((self._line + '\n') * 5) 29 eq(self._fp.read(10), self._line[:10]) 32 eq(self._fp.readline(), self._line[10:] + '\n') 35 eq(self._fp.readline(-1), self._line + '\n') 40 f.write(self._line[:6]) 42 f.write(self._line[20:26]) 43 f.write(self._line[52]) 48 f.writelines([self._line[0], self._line[1], self._line[2]] [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
RecognitionException.cs | 106 private int _line; field in class:Antlr.Runtime.RecognitionException 150 this._line = _token.Line; 157 this._line = ((ICharStream)input).Line; 172 _line = info.GetInt32("Line"); 250 return _line; 253 _line = value; 273 info.AddValue("Line", _line); 285 this._line = lastRealToken.Line; 304 this._line = priorPayload.Line; 313 this._line = payload.Line [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
RecognitionException.cs | 108 private int _line; field in class:Antlr.Runtime.RecognitionException 160 this._line = _token.Line; 175 this._line = ((ICharStream)input).Line; 194 _line = info.GetInt32("Line"); 296 return _line; 300 _line = value; 324 info.AddValue("Line", _line); 340 this._line = lastRealToken.Line; 363 this._line = priorPayload.Line; 382 this._line = payload.Line [all...] |
/system/tpm/trunks/generator/ |
generator.py | 962 self._line = None 972 self._line = self._in_file.next() 974 self._line = None 990 while self._line: 991 if self._BEGIN_TYPES_TOKEN == self._line.rstrip(): 993 elif self._BEGIN_CONSTANTS_TOKEN == self._line.rstrip(): 995 elif self._BEGIN_STRUCTURES_TOKEN == self._line.rstrip(): 997 elif self._BEGIN_UNIONS_TOKEN == self._line.rstrip(): 999 elif self._BEGIN_DEFINES_TOKEN == self._line.rstrip(): 1002 print('Invalid file format: %s' % self._line) [all...] |
/external/harfbuzz_ng/src/ |
hb-private.hh | 243 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1] 244 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond)) 273 #define _ASSERT_TYPE_POD1(_line, _type) union _type_##_type##_on_line_##_line##_is_not_POD { _type instance; } 274 #define _ASSERT_TYPE_POD0(_line, _type) _ASSERT_TYPE_POD1 (_line, _type) 278 # define _ASSERT_INSTANCE_POD1(_line, _instance) \ 280 typedef __typeof__(_instance) _type_##_line; \ [all...] |
hb-open-type-private.hh | 85 #define _DEFINE_INSTANCE_ASSERTION1(_line, _assertion) \ 86 inline void _instance_assertion_on_line_##_line (void) const \ 91 # define _DEFINE_INSTANCE_ASSERTION0(_line, _assertion) _DEFINE_INSTANCE_ASSERTION1 (_line, _assertion) 95 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ 96 inline void _compiles_assertion_on_line_##_line (void) const \ 98 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code)
|
/external/eigen/test/ |
geo_parametrizedline.cpp | 16 template<typename LineType> void parametrizedline(const LineType& _line) 23 const Index dim = _line.dim();
|
/external/harfbuzz_ng/util/ |
options.hh | 82 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1] 83 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond))
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
httplib.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
httplib.py | [all...] |