HomeSort by relevance Sort by last modified time
    Searched defs:is (Results 176 - 200 of 491) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
RemoteDebugEventSocketListener.java 17 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
198 InputStream is = channel.getInputStream(); local
199 InputStreamReader isr = new InputStreamReader(is, "UTF8");
487 // Note that the string is terminated by \n not end quote.
514 // this unescape is slow but easy to understand
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/
UnixFileTest.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
48 InputStream is; field in class:UnixFileTest.ConsoleResulter
54 is = in;
63 new InputStreamReader(is));
103 // If there is no error, obtain the result
250 // So far this method only deals with the situation that the user is the
276 // However, canRead() always returns true when the user is 'root'.
336 // So far this method only deals with the situation that the user is the
338 // However, canRead() always returns true when the user is 'root'
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
ModuleNode.py 61 # right concept is to split ModuleNode into a ModuleNode and a
95 if not self.doc is None:
334 # init_globals is inserted before this
464 all_defined_here = module is env
504 definition = module is env
527 # This is to work around the fact that array.h isn't part of the C-API,
539 defined_here = module is env
628 error(self.pos, "a default encoding must be provided if c_string_type is not a byte type")
655 if Options.pre_import is not None: namespace
701 #self.generate_gcc33_hack(env, code) # Is this still needed
2356 if Options.pre_import is not None: namespace
    [all...]
Parsing.py 179 #comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
226 elif s.sy == 'is':
232 op = 'is'
242 'in', 'is', 'not'
309 and base_type.name is None):
335 # If it is actually a type, but parsable as an expression,
564 # it is followed by something in follow_set.
670 # '3L' is ambiguous in Py2 but not in Py3. '3U' and '3LL' are
695 if node is not None
1323 s.error("Relative cimport is not supported yet") namespace
1331 s.error("Relative cimport is not supported yet") namespace
    [all...]
Symtab.py 55 # is_builtin boolean Is an entry in the Python builtins dict
56 # is_cglobal boolean Is a C global variable
57 # is_pyglobal boolean Is a Python module-level variable
60 # is_member boolean Is an assigned class member
61 # is_pyclass_attr boolean Is a name in a Python class namespace
62 # is_variable boolean Is a variable
63 # is_cfunction boolean Is a C function
64 # is_cmethod boolean Is a C method of an extension type
65 # is_builtin_cmethod boolean Is a C method of a builtin type (implies is_cmethod)
66 # is_unbound_cmethod boolean Is an unbound C method of an extension typ
860 if Options.pre_import is None: namespace
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
transrt.cpp 118 virtual UBool is(const UnicodeString& /*sourceString*/) const {return TRUE;} function in class:Legal
128 virtual UBool is(const UnicodeString& sourceString) const;
132 UBool LegalJamo::is(const UnicodeString& sourceString) const { function in class:LegalJamo
172 virtual UBool is(const UnicodeString& sourceString) const;
179 UBool LegalGreek::is(const UnicodeString& sourceString) const { function in class:LegalGreek
184 // modern is simpler: don't care about anything but a grave
186 // A special case which is legal but should be
201 // Legal greek has breathing marks IFF there is a vowel or RHO at the start
265 // density is the approximate total number of code points to returned for the entire set.
440 // see if string is of the form aB; e.g. lower, then upper or titl
1223 UBool LegalHebrew::is(const UnicodeString& sourceString)const{ function in class:LegalHebrew
1281 UBool LegalIndic::is(const UnicodeString& sourceString) const{ function in class:LegalIndic
    [all...]
  /external/chromium_org/v8/src/x64/
assembler-x64.h 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20 // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
63 // to a few constants). If this is a problem, we could change the code
115 bool is(Register reg) const { return code_ == reg.code_; } function in struct:v8::internal::Register
243 bool is(XMMRegister reg) const { return code_ == reg.code_; }
285 // any value < 0 is considered no_condition
402 // Offset is added to existing displacement as 32-bit signed values and
406 // Checks whether either base or index register is the given register.
424 // register is encoded later as part of the emit_operand operation.
428 // Set the SIB byte if one is needed. Sets the length to 2 rather than 1
    [all...]
  /external/clang/lib/Format/
FormatToken.h 5 // This file is distributed under the University of Illinois Open Source
126 /// \brief Whether there is at least one unescaped newline before the \c
134 /// whitespace (relative to \c WhiteSpaceStart). 0 if there is no '\n'.
149 /// \brief Indicates that this is the first token.
173 /// \brief Set to \c true if this token is an unterminated literal.
176 /// \brief Contains the kind of block if this token is a brace.
184 /// \brief \c true if it is allowed to break before this token.
189 /// \brief Number of parameters, if this is "(", "[" or "<".
191 /// This is initialized to 1 as we don't need to distinguish functions with
197 /// if this is "(", "[" or "<"
269 bool is(tok::TokenKind Kind) const { return Tok.is(Kind); } function in struct:clang::format::FormatToken
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLSocketImpl.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
70 * The {@link OpenSSLSocketImpl} object is constructed, but {@link #startHandshake()}
88 * been called. This is expected behaviour in cut-through mode, where SSL_do_handshake
89 * returns before the handshake is complete. We can now start writing data to the socket.
119 private SSLInputStream is; field in class:OpenSSLSocketImpl
144 * {@link #peerHostname} is also set.
154 * Private key for the TLS Channel ID extension. This field is client-side
239 // this.timeout is not set intentionally.
246 throw new SocketException("Socket is closed")
    [all...]
  /external/e2fsprogs/resize/
resize2fs.c 78 * This is the top-level routine which does the dirty deed....
310 * This routine is shared by the online and offline resize routines.
311 * All of the information which is adjusted in memory is done here.
340 * Overhead is the number of bookkeeping blocks per group. It
352 * See if the last group is big enough to support the
442 * If the resize_inode feature is set, and we are changing the
498 * If the number of block groups is staying the same, we're
499 * done and can exit now. (If the number block groups is
658 * If the number of block groups is staying the same, we'r
1608 struct istruct *is = (struct istruct *) priv_data; local
1653 struct istruct is; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
transrt.cpp 118 virtual UBool is(const UnicodeString& /*sourceString*/) const {return TRUE;} function in class:Legal
128 virtual UBool is(const UnicodeString& sourceString) const;
132 UBool LegalJamo::is(const UnicodeString& sourceString) const { function in class:LegalJamo
172 virtual UBool is(const UnicodeString& sourceString) const;
179 UBool LegalGreek::is(const UnicodeString& sourceString) const { function in class:LegalGreek
184 // modern is simpler: don't care about anything but a grave
186 // A special case which is legal but should be
201 // Legal greek has breathing marks IFF there is a vowel or RHO at the start
265 // density is the approximate total number of code points to returned for the entire set.
440 // see if string is of the form aB; e.g. lower, then upper or titl
1223 UBool LegalHebrew::is(const UnicodeString& sourceString)const{ function in class:LegalHebrew
1281 UBool LegalIndic::is(const UnicodeString& sourceString) const{ function in class:LegalIndic
    [all...]
  /external/libvorbis/lib/
vorbisenc.c 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 *
194 int i,k,is=s; local
198 memcpy(f,in+x[is],sizeof(*f));
217 ci->book_param[ci->books++]=(static_codebook *)books[x[is]][i];
231 int i,is=s; local
232 double ds=s-is;
236 memcpy(g,in+(int)x[is],sizeof(*g));
238 ds=x[is]*(1.-ds)+x[is+1]*ds
259 int i,is=s; local
312 int is=s; local
338 int i,is=s; local
362 int i,is=s; local
383 int is=s; local
398 int i,is=s,j; local
447 int is=s; local
593 int i,j,is=s,modes=2; local
622 int is=hi->base_setting; local
864 int i,is; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 
org.eclipse.help.appserver_3.1.400.v20100427.jar 
  /developers/build/lib/
assetstudio.jar 
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
58 * For example: if default KeyStore type in the system is BKS (i.e.
99 * Checks that HttpsURLConnection's default SSLSocketFactory is operable.
162 * HTTP response. After that it checks that the established connection is
388 // is done
430 // is done
466 // is done
501 // is done
538 // is don
1239 InputStream is = peerSocket.getInputStream(); local
1417 InputStream is = connection.getInputStream(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/
parse-js.js 5 This version is suitable for Node.js. With minimal changes (the
8 This file contains the tokenizer/parser. It is a port to JavaScript
45 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ?AS IS? AND ANY
629 function is(type, value) {
669 if (is(type, val)) {
679 S.token.nlb || is("eof") || is("punc", "}")
684 if (is("punc", ";")) next();
711 if (is("operator", "/"))
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips.h 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20 // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
64 // to a few constants). If this is a problem, we could change the code
78 static const int kCpRegister = 23; // cp (s7) is the 23rd register.
94 reg.is(from_code(kCpRegister)));
95 return reg.is(from_code(kCpRegister)) ?
103 from_code(kCpRegister) : // Last index is always the 'cp' register.
134 bool is(Register reg) const { return code_ == reg.code_; } function in struct:v8::internal::Register
239 bool is(FPURegister creg) const { return code_ == creg.code_; } function in struct:v8::internal::FPURegister
241 // Find low reg of a Double-reg pair, which is the reg itself
338 bool is(FPUControlRegister creg) const { return code_ == creg.code_; } function in struct:v8::internal::FPUControlRegister
    [all...]
  /external/chromium_org/v8/src/mips64/
assembler-mips64.h 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20 // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
63 // to a few constants). If this is a problem, we could change the code
77 static const int kCpRegister = 23; // cp (s7) is the 23rd register.
83 reg.is(from_code(kCpRegister)));
84 return reg.is(from_code(kCpRegister)) ?
92 from_code(kCpRegister) : // Last index is always the 'cp' register.
123 bool is(Register reg) const { return code_ == reg.code_; } function in struct:v8::internal::Register
228 bool is(FPURegister creg) const { return code_ == creg.code_; } function in struct:v8::internal::FPURegister
231 // Find low reg of a Double-reg pair, which is the reg itself
327 bool is(FPUControlRegister creg) const { return code_ == creg.code_; } function in struct:v8::internal::FPUControlRegister
    [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 5 // This file is distributed under the University of Illinois Open Source
144 /// \brief Determine whether the given file name is the name of a builtin
220 // This check is not cheap, so enable it only for debugging.
262 // If 'File' is part of 'RequestingModule' we can definitely include it.
286 // We have found a header, but it is private.
324 // Iterate over all modules that 'File' is part of to find the best fit.
328 // Cannot use a module if the header is excluded in it.
332 // Cannot use a module if it is unavailable.
336 // If 'File' is part of 'RequestingModule', 'RequestingModule' is th
941 bool is(TokenKind K) const { return Kind == K; } function in struct:clang::MMToken
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm.h 20 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
69 // to a few constants). If this is a problem, we could change the code
137 bool is(Register reg) const { return code_ == reg.code_; } function in struct:v8::internal::Register
183 bool is(SwVfpRegister reg) const { return code_ == reg.code_; } function in struct:v8::internal::SwVfpRegister
233 bool is(DwVfpRegister reg) const { return code_ == reg.code_; } function in struct:v8::internal::DwVfpRegister
271 bool is(DwVfpRegister reg) const { return code_ == reg.code_; } function in struct:v8::internal::LowDwVfpRegister
272 bool is(LowDwVfpRegister reg) const { return code_ == reg.code_; } function in struct:v8::internal::LowDwVfpRegister
308 bool is(QwNeonRegister reg) const { return code_ == reg.code_; } function in struct:v8::internal::QwNeonRegister
328 // Note that "s(N):s(N+1)" is the same as "d(N/2)"
426 bool is(CRegister creg) const { return code_ == creg.code_; } function in struct:v8::internal::CRegister
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-oro.jar 
ant-commons-net.jar 
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
92 InputStream is = masterFd.createInputStream(); local
93 BufferedInputStream bis = new BufferedInputStream(is);
674 fail("test is broken: never reached eos sample");
    [all...]

Completed in 796 milliseconds

1 2 3 4 5 6 78 91011>>