OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:srcType
(Results
1 - 9
of
9
) sorted by null
/dalvik/vm/native/
java_lang_System.cpp
155
char
srcType
= srcClass->descriptor[1];
162
bool srcPrim = (
srcType
!= '[' &&
srcType
!= 'L');
165
if (srcPrim != dstPrim ||
srcType
!= dstType) {
171
srcType
, dstArray->contents, dstPos,
174
switch (
srcType
) {
java_lang_reflect_Field.cpp
573
PrimitiveType
srcType
= dexGetPrimitiveTypeFromDescriptorChar(descriptor);
583
if (dvmConvertPrimitiveValue(
srcType
, fieldType->primitiveType,
/dalvik/vm/reflect/
Reflect.cpp
896
int dvmConvertPrimitiveValue(PrimitiveType
srcType
,
905
assert((
srcType
!= PRIM_VOID) && (
srcType
!= PRIM_NOT));
912
conv = (
srcType
== dstType) ? OK4 : bad;
916
switch (
srcType
) {
924
switch (
srcType
) {
934
switch (
srcType
) {
945
switch (
srcType
) {
957
switch (
srcType
) {
988
dexGetPrimitiveTypeDescriptor(
srcType
),
[
all
...]
Reflect.h
74
int dvmConvertPrimitiveValue(PrimitiveType
srcType
,
/dalvik/vm/analysis/
CodeVerify.cpp
262
* Determine whether we can convert "
srcType
" to "checkType", where
267
static bool canConvertTo1nr(RegType
srcType
, RegType checkType)
294
LOG_VFY("Unexpected checkType %d (
srcType
=%d)", checkType,
srcType
);
300
//printf("convTab[%d][%d] = %d\n",
srcType
, checkType,
301
// convTab[
srcType
-kRegType1nrSTART][checkType-kRegType1nrSTART]);
302
if (
srcType
>= kRegType1nrSTART &&
srcType
<= kRegType1nrEND)
303
return (bool) convTab[
srcType
-kRegType1nrSTART][checkType-kRegType1nrSTART];
311
static bool canConvertTo2(RegType
srcType
, RegType checkType
[
all
...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
ExpressionTranslator.java
356
private JavaExpression infix(Type destType, Type
srcType
, String infix, PExpression leftNode,
358
JavaExpression left = cast(
srcType
, leftNode);
359
JavaExpression right = cast(
srcType
, rightNode);
363
private JavaExpression prefix(Type destType, Type
srcType
, String prefix, PExpression node) {
364
return JavaExpression.prefix(destType, prefix, cast(
srcType
, node));
/external/javassist/src/main/javassist/compiler/
CodeGen.java
897
private boolean invalidDim(int
srcType
, int srcDim, String srcClass,
902
if (
srcType
== NULL)
907
else if (isCast && srcDim == 0 &&
srcType
== CLASS
[
all
...]
/external/clang/lib/Sema/
SemaCXXCast.cpp
66
static bool CastsAwayConstness(Sema &Self, QualType
SrcType
, QualType DestType,
91
static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType
SrcType
,
97
static TryCastResult TryStaticDowncast(Sema &Self, CanQualType
SrcType
,
105
QualType
SrcType
,
254
QualType
srcType
= src->getType();
255
if (!destType->isRecordType() && !
srcType
->isRecordType())
303
<< CT <<
srcType
<< destType
383
/// CastsAwayConstness - Check if the pointer conversion from
SrcType
to
392
CastsAwayConstness(Sema &Self, QualType
SrcType
, QualType DestType,
404
assert((
SrcType
->isAnyPointerType() || SrcType->isMemberPointerType() |
[
all
...]
/external/sqlite/dist/
sqlite3.c
[
all
...]
Completed in 785 milliseconds