Searched refs:None (Results 26 - 50 of 620) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/cctest/
H A Dtest-representation.cc49 TestPairNegative(Representation::None(), Representation::None());
50 TestPairPositive(Representation::Integer8(), Representation::None());
51 TestPairPositive(Representation::UInteger8(), Representation::None());
52 TestPairPositive(Representation::Integer16(), Representation::None());
53 TestPairPositive(Representation::UInteger16(), Representation::None());
54 TestPairPositive(Representation::Smi(), Representation::None());
55 TestPairPositive(Representation::Integer32(), Representation::None());
56 TestPairPositive(Representation::HeapObject(), Representation::None());
57 TestPairPositive(Representation::Double(), Representation::None());
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDOMWindowWebDatabase.cpp50 DatabaseError error = DatabaseError::None;
54 ASSERT(database || error != DatabaseError::None);
55 if (error != DatabaseError::None)
/external/lldb/scripts/Python/interface/
H A DSBInstruction.i82 if _newclass: mnemonic = property(__mnemonic_property__, None, doc='''A read only property that returns the mnemonic for this instruction as a string.''')
85 if _newclass: operands = property(__operands_property__, None, doc='''A read only property that returns the operands for this instruction as a string.''')
88 if _newclass: comment = property(__comment_property__, None, doc='''A read only property that returns the comment for this instruction as a string.''')
91 if _newclass: addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that represents the address (lldb.SBAddress) for this instruction.''')
94 if _newclass: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes for this instruction as an integer.''')
97 if _newclass: is_branch = property(DoesBranch, None, doc='''A read only property that returns a boolean value that indicates if this instruction is a branch instruction.''')
H A DSBValue.i417 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''')
420 if _newclass: type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''')
423 if _newclass: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this value.''')
426 if _newclass: is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value that indicates whether this value is currently lexically in scope.''')
437 if _newclass: value_type = property(GetValueType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eValueType") that represents the type of this value (local, argument, global, register, etc.).''')
440 if _newclass: changed = property(GetValueDidChange, None, doc='''A read only property that returns a boolean value that indicates if this value has changed since it was last updated.''')
443 if _newclass: data = property(GetData, None, doc='''A read only property that returns an lldb object (lldb.SBData) that represents the bytes that make up the value for this object.''')
446 if _newclass: load_addr = property(GetLoadAddress, None, doc='''A read only property that returns the load address of this value as an integer.''')
449 if _newclass: addr = property(GetAddress, None, doc='''A read only property that returns an lldb.SBAddress that represents the address of this value if it is in memory.''')
452 if _newclass: deref = property(Dereference, None, do
[all...]
H A DSBDeclaration.i57 if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
60 if _newclass: ling = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
63 if _newclass: column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
H A DSBAddress.i167 if _newclass: module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) that this address resides within.''')
170 if _newclass: compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.SBCompileUnit) that this address resides within.''')
173 if _newclass: line_entry = property(GetLineEntry, None, doc='''A read only property that returns an lldb object that represents the line entry (lldb.SBLineEntry) that this address resides within.''')
176 if _newclass: function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) that this address resides within.''')
179 if _newclass: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the block (lldb.SBBlock) that this address resides within.''')
182 if _newclass: symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that represents the symbol (lldb.SBSymbol) that this address resides within.''')
185 if _newclass: offset = property(GetOffset, None, doc='''A read only property that returns the section offset in bytes as an integer.''')
188 if _newclass: section = property(GetSection, None, doc='''A read only property that returns an lldb object that represents the section (lldb.SBSection) that this address resides within.''')
191 if _newclass: file_addr = property(GetFileAddress, None, doc='''A read only property that returns file address for the section as an integer. This is the address that represents the address as it is found in the object file that defines it.''')
H A DSBTypeSummary.i84 if _newclass: is_summary_string = property(IsSummaryString, None)
87 if _newclass: is_function_name = property(IsFunctionName, None)
90 if _newclass: is_function_name = property(IsFunctionCode, None)
93 if _newclass: summary_data = property(GetData, None)
H A DSBType.i48 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''')
51 if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''')
54 if _newclass: byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''')
57 if _newclass: bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
60 if _newclass: is_bitfield = property(IsBitfield, None, doc='''A read only property that returns true if this member is a bitfield.''')
63 if _newclass: bitfield_bit_size = property(GetBitfieldSizeInBits, None, doc='''A read only property that returns the bitfield size in bits for this member as an integer, or zero if this member is not a bitfield.''')
245 return None
248 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name for this type as a string.''')
251 if _newclass: size = property(GetByteSize, None, doc='''A read only property that returns size in bytes for this type as an integer.''')
254 if _newclass: is_pointer = property(IsPointerType, None, do
[all...]
H A DSBData.i164 def CreateDataFromInt (cls, value, size = None, target = None, ptr_size = None, endian = None):
171 lldbtarget = None
172 if target == None and lldbtarget != None and lldbtarget.IsValid():
174 if ptr_size == None:
179 if endian == None:
184 if size == None
[all...]
H A DSBTypeNameSpecifier.i58 if _newclass: name = property(GetName, None)
61 if _newclass: is_regex = property(IsRegex, None)
H A DSBTypeCategory.i146 return None
193 if _newclass: formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
196 if _newclass: format = property(get_formats_access_object, None, doc=r'''A read only property that returns an object that you can use to look for formats by index or type name.''')
199 if _newclass: summaries = property(get_summaries_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category''')
202 if _newclass: summary = property(get_summaries_access_object, None, doc=r'''A read only property that returns an object that you can use to look for summaries by index or type name or regular expression.''')
205 if _newclass: filters = property(get_filters_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFilter objects contained in this category''')
208 if _newclass: filter = property(get_filters_access_object, None, doc=r'''A read only property that returns an object that you can use to look for filters by index or type name or regular expression.''')
211 if _newclass: synthetics = property(get_synthetics_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSynthetic objects contained in this category''')
214 if _newclass: synthetic = property(get_synthetics_access_object, None, doc=r'''A read only property that returns an object that you can use to look for synthetic children provider by index or type name or regular expression.''')
217 if _newclass: num_formats = property(GetNumFormats, None)
[all...]
H A DSBBlock.i36 otherwise, return None.
132 return None
150 if _newclass: parent = property(GetParent, None, doc='''A read only property that returns the same result as GetParent().''')
153 if _newclass: first_child = property(GetFirstChild, None, doc='''A read only property that returns the same result as GetFirstChild().''')
156 if _newclass: call_site = property(get_call_site, None, doc='''A read only property that returns a lldb.declaration object that contains the inlined call site file, line and column.''')
159 if _newclass: sibling = property(GetSibling, None, doc='''A read only property that returns the same result as GetSibling().''')
162 if _newclass: name = property(GetInlinedName, None, doc='''A read only property that returns the same result as GetInlinedName().''')
165 if _newclass: inlined_block = property(GetContainingInlinedBlock, None, doc='''A read only property that returns the same result as GetContainingInlinedBlock().''')
168 if _newclass: range = property(get_ranges_access_object, None, doc='''A read only property that allows item access to the address ranges for a block by integer (range = block.range[0]) and by lldb.SBAdddress (find the range that contains the specified lldb.SBAddress like "pc_range = lldb.frame.block.range[frame.addr]").''')
171 if _newclass: ranges = property(get_ranges_array, None, do
[all...]
H A DSBTypeSynthetic.i72 if _newclass: contains_code = property(IsClassCode, None)
75 if _newclass: synthetic_data = property(GetData, None)
H A DSBSymbolContextList.i120 if _newclass: modules = property(get_module_array, None, doc='''Returns a list() of lldb.SBModule objects, one for each module in each SBSymbolContext object in this list.''')
123 if _newclass: compile_units = property(get_compile_unit_array, None, doc='''Returns a list() of lldb.SBCompileUnit objects, one for each compile unit in each SBSymbolContext object in this list.''')
126 if _newclass: functions = property(get_function_array, None, doc='''Returns a list() of lldb.SBFunction objects, one for each function in each SBSymbolContext object in this list.''')
129 if _newclass: blocks = property(get_block_array, None, doc='''Returns a list() of lldb.SBBlock objects, one for each block in each SBSymbolContext object in this list.''')
132 if _newclass: line_entries = property(get_line_entry_array, None, doc='''Returns a list() of lldb.SBLineEntry objects, one for each line entry in each SBSymbolContext object in this list.''')
135 if _newclass: symbols = property(get_symbol_array, None, doc='''Returns a list() of lldb.SBSymbol objects, one for each symbol in each SBSymbolContext object in this list.''')
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dlint-webkitpy35 checker = PythonChecker(path, lambda *args: None)
/external/llvm/utils/git/
H A Dfind-rev27 bestRev = bestCommit = None
28 lastCommit = None
37 if bestRev is None or lrev>bestRev:
44 if bestCommit is not None:
/external/clang/utils/
H A DFindSpecRefs604 best = None
612 section = None
620 spec = None
623 if spec is not None:
625 if best is None or dist < best[0]:
635 return None
637 best = None
641 if best is None or dist < best[0]:
644 if best is not None:
646 return None
[all...]
H A DCmpDriver42 return sum(map(dist, a + [None] * (len(b) - len(a)), b))
49 # For each None we have to insert...
53 best = None
55 a_0 = a[:j] + [None] + a[j:]
57 if best is None or candidate < best[0]:
117 stdin=None,
146 if aElt is None:
148 elif bElt is None:
166 if aElt is None:
168 elif bElt is None
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dglxcurrent.c230 if ((gc != NULL) && (gc->xid == None)) {
234 if (gc == NULL && (draw != None || read != None)) {
235 __glXGenerateError(dpy, (draw != None) ? draw : read,
239 if (gc != NULL && (draw == None || read == None)) {
240 __glXGenerateError(dpy, None, BadMatch, X_GLXMakeContextCurrent);
272 __glXGenerateError(dpy, None, GLXBadContext, X_GLXMakeContextCurrent);
287 if (oldGC->thread_refcount == 0 && oldGC != &dummyContext && oldGC->xid == None) {
/external/mesa3d/src/glx/
H A Dglxcurrent.c230 if ((gc != NULL) && (gc->xid == None)) {
234 if (gc == NULL && (draw != None || read != None)) {
235 __glXGenerateError(dpy, (draw != None) ? draw : read,
239 if (gc != NULL && (draw == None || read == None)) {
240 __glXGenerateError(dpy, None, BadMatch, X_GLXMakeContextCurrent);
272 __glXGenerateError(dpy, None, GLXBadContext, X_GLXMakeContextCurrent);
287 if (oldGC->thread_refcount == 0 && oldGC != &dummyContext && oldGC->xid == None) {
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_agp_offset.spec43 None
47 None
55 None
59 None
80 None. This is a client side-only extension.
89 None
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUMCAsmInfo.cpp62 LCOMMDirectiveType = LCOMM::None;
72 ExceptionsType = ExceptionHandling::None;
/external/mesa3d/docs/
H A DMESA_agp_offset.spec43 None
47 None
55 None
59 None
80 None. This is a client side-only extension.
89 None
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUMCAsmInfo.cpp62 LCOMMDirectiveType = LCOMM::None;
72 ExceptionsType = ExceptionHandling::None;
/external/llvm/lib/Target/SystemZ/
H A DSystemZTargetMachine.cpp61 if (getOptLevel() != CodeGenOpt::None &&
91 if (getOptLevel() != CodeGenOpt::None)
93 if (getOptLevel() != CodeGenOpt::None)

Completed in 225 milliseconds

1234567891011>>