亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cstrnpsr.c

?? clips源代碼
?? C
?? 第 1 頁 / 共 4 頁
字號:
/* record on destination based on which fields are set in  *//* the parsed constraint record. Assumes AddConstraint has *//* not yet been called for the destination constraint      *//* record.                                                 *//***********************************************************/globle void OverlayConstraint(  void *theEnv,  CONSTRAINT_PARSE_RECORD *pc,  CONSTRAINT_RECORD *cdst,  CONSTRAINT_RECORD *csrc)  {   if (pc->type == 0)     {      cdst->anyAllowed = csrc->anyAllowed;      cdst->symbolsAllowed = csrc->symbolsAllowed;      cdst->stringsAllowed = csrc->stringsAllowed;      cdst->floatsAllowed = csrc->floatsAllowed;      cdst->integersAllowed = csrc->integersAllowed;      cdst->instanceNamesAllowed = csrc->instanceNamesAllowed;      cdst->instanceAddressesAllowed = csrc->instanceAddressesAllowed;      cdst->externalAddressesAllowed = csrc->externalAddressesAllowed;      cdst->voidAllowed = csrc->voidAllowed;      cdst->factAddressesAllowed = csrc->factAddressesAllowed;     }   if (pc->range == 0)     {      ReturnExpression(theEnv,cdst->minValue);      ReturnExpression(theEnv,cdst->maxValue);      cdst->minValue = CopyExpression(theEnv,csrc->minValue);      cdst->maxValue = CopyExpression(theEnv,csrc->maxValue);     }   if (pc->allowedClasses == 0)     {      ReturnExpression(theEnv,cdst->classList);      cdst->classList = CopyExpression(theEnv,csrc->classList);     }   if (pc->allowedValues == 0)     {      if ((pc->allowedSymbols == 0) &&          (pc->allowedStrings == 0) &&          (pc->allowedLexemes == 0) &&          (pc->allowedIntegers == 0) &&          (pc->allowedFloats == 0) &&          (pc->allowedNumbers == 0) &&          (pc->allowedInstanceNames == 0))        {         cdst->anyRestriction = csrc->anyRestriction;         cdst->symbolRestriction = csrc->symbolRestriction;         cdst->stringRestriction = csrc->stringRestriction;         cdst->floatRestriction = csrc->floatRestriction;         cdst->integerRestriction = csrc->integerRestriction;         cdst->classRestriction = csrc->classRestriction;         cdst->instanceNameRestriction = csrc->instanceNameRestriction;         cdst->restrictionList = CopyExpression(theEnv,csrc->restrictionList);        }      else        {         if ((pc->allowedSymbols == 0) && csrc->symbolRestriction)           {            cdst->symbolRestriction = 1;            AddToRestrictionList(theEnv,SYMBOL,cdst,csrc);           }         if ((pc->allowedStrings == 0) && csrc->stringRestriction)           {            cdst->stringRestriction = 1;            AddToRestrictionList(theEnv,STRING,cdst,csrc);           }         if ((pc->allowedLexemes == 0) && csrc->symbolRestriction && csrc->stringRestriction)           {            cdst->symbolRestriction = 1;            cdst->stringRestriction = 1;            AddToRestrictionList(theEnv,SYMBOL,cdst,csrc);            AddToRestrictionList(theEnv,STRING,cdst,csrc);           }         if ((pc->allowedIntegers == 0) && csrc->integerRestriction)           {            cdst->integerRestriction = 1;            AddToRestrictionList(theEnv,INTEGER,cdst,csrc);           }         if ((pc->allowedFloats == 0) && csrc->floatRestriction)           {            cdst->floatRestriction = 1;            AddToRestrictionList(theEnv,FLOAT,cdst,csrc);           }         if ((pc->allowedNumbers == 0) && csrc->integerRestriction && csrc->floatRestriction)           {            cdst->integerRestriction = 1;            cdst->floatRestriction = 1;            AddToRestrictionList(theEnv,INTEGER,cdst,csrc);            AddToRestrictionList(theEnv,FLOAT,cdst,csrc);           }         if ((pc->allowedInstanceNames == 0) && csrc->instanceNameRestriction)           {            cdst->instanceNameRestriction = 1;            AddToRestrictionList(theEnv,INSTANCE_NAME,cdst,csrc);           }        }     }   if (pc->cardinality == 0)     {      ReturnExpression(theEnv,cdst->minFields);      ReturnExpression(theEnv,cdst->maxFields);      cdst->minFields = CopyExpression(theEnv,csrc->minFields);      cdst->maxFields = CopyExpression(theEnv,csrc->maxFields);     }  }/**********************************************//* OverlayConstraintParseRecord: Performs a   *//*   field-wise "or" of the destination parse *//*   record with the source parse record.     *//**********************************************/globle void OverlayConstraintParseRecord(  CONSTRAINT_PARSE_RECORD *dst,  CONSTRAINT_PARSE_RECORD *src)  {   if (src->type) dst->type = TRUE;   if (src->range) dst->range = TRUE;   if (src->allowedSymbols) dst->allowedSymbols = TRUE;   if (src->allowedStrings) dst->allowedStrings = TRUE;   if (src->allowedLexemes) dst->allowedLexemes = TRUE;   if (src->allowedIntegers) dst->allowedIntegers = TRUE;   if (src->allowedFloats) dst->allowedFloats = TRUE;   if (src->allowedNumbers) dst->allowedNumbers = TRUE;   if (src->allowedValues) dst->allowedValues = TRUE;   if (src->allowedInstanceNames) dst->allowedInstanceNames = TRUE;   if (src->allowedClasses) dst->allowedClasses = TRUE;   if (src->cardinality) dst->cardinality = TRUE;  }/************************************************************//* AddToRestrictionList: Prepends atoms of the specified    *//* type from the source restriction list to the destination *//************************************************************/static void AddToRestrictionList(  void *theEnv,  int type,  CONSTRAINT_RECORD *cdst,  CONSTRAINT_RECORD *csrc)  {   struct expr *theExp,*tmp;   for (theExp = csrc->restrictionList; theExp != NULL; theExp = theExp->nextArg)     {      if (theExp->type == type)        {         tmp = GenConstant(theEnv,theExp->type,theExp->value);         tmp->nextArg = cdst->restrictionList;         cdst->restrictionList = tmp;        }     }  }/*******************************************************************//* ParseAllowedValuesAttribute: Parses the allowed-... attributes. *//*******************************************************************/static intBool ParseAllowedValuesAttribute(  void *theEnv,  char *readSource,  char *constraintName,  CONSTRAINT_RECORD *constraints,  CONSTRAINT_PARSE_RECORD *parsedConstraints)  {   struct token inputToken;   int expectedType, restrictionType, error = FALSE;   struct expr *newValue, *lastValue;   int constantParsed = FALSE, variableParsed = FALSE;   char *tempPtr = NULL;   /*======================================================*/   /* The allowed-values attribute is not allowed if other */   /* allowed-... attributes have already been parsed.     */   /*======================================================*/   if ((strcmp(constraintName,"allowed-values") == 0) &&       ((parsedConstraints->allowedSymbols) ||        (parsedConstraints->allowedStrings) ||        (parsedConstraints->allowedLexemes) ||        (parsedConstraints->allowedIntegers) ||        (parsedConstraints->allowedFloats) ||        (parsedConstraints->allowedNumbers) ||        (parsedConstraints->allowedInstanceNames)))     {      if (parsedConstraints->allowedSymbols) tempPtr = "allowed-symbols";      else if (parsedConstraints->allowedStrings) tempPtr = "allowed-strings";      else if (parsedConstraints->allowedLexemes) tempPtr = "allowed-lexemes";      else if (parsedConstraints->allowedIntegers) tempPtr = "allowed-integers";      else if (parsedConstraints->allowedFloats) tempPtr = "allowed-floats";      else if (parsedConstraints->allowedNumbers) tempPtr = "allowed-numbers";      else if (parsedConstraints->allowedInstanceNames) tempPtr = "allowed-instance-names";      NoConjunctiveUseError(theEnv,"allowed-values",tempPtr);      return(FALSE);     }   /*=======================================================*/   /* The allowed-values/numbers/integers/floats attributes */   /* are not allowed with the range attribute.             */   /*=======================================================*/   if (((strcmp(constraintName,"allowed-values") == 0) ||        (strcmp(constraintName,"allowed-numbers") == 0) ||        (strcmp(constraintName,"allowed-integers") == 0) ||        (strcmp(constraintName,"allowed-floats") == 0)) &&       (parsedConstraints->range))     {      NoConjunctiveUseError(theEnv,constraintName,"range");      return(FALSE);     }   /*===================================================*/   /* The allowed-... attributes are not allowed if the */   /* allowed-values attribute has already been parsed. */   /*===================================================*/   if ((strcmp(constraintName,"allowed-values") != 0) &&            (parsedConstraints->allowedValues))     {      NoConjunctiveUseError(theEnv,constraintName,"allowed-values");      return(FALSE);     }   /*==================================================*/   /* The allowed-numbers attribute is not allowed if  */   /* the allowed-integers or allowed-floats attribute */   /* has already been parsed.                         */   /*==================================================*/   if ((strcmp(constraintName,"allowed-numbers") == 0) &&       ((parsedConstraints->allowedFloats) || (parsedConstraints->allowedIntegers)))     {      if (parsedConstraints->allowedFloats) tempPtr = "allowed-floats";      else tempPtr = "allowed-integers";      NoConjunctiveUseError(theEnv,"allowed-numbers",tempPtr);      return(FALSE);     }   /*============================================================*/   /* The allowed-integers/floats attributes are not allowed if  */   /* the allowed-numbers attribute has already been parsed.     */   /*============================================================*/   if (((strcmp(constraintName,"allowed-integers") == 0) ||        (strcmp(constraintName,"allowed-floats") == 0)) &&       (parsedConstraints->allowedNumbers))     {      NoConjunctiveUseError(theEnv,constraintName,"allowed-number");      return(FALSE);     }   /*==================================================*/   /* The allowed-lexemes attribute is not allowed if  */   /* the allowed-symbols or allowed-strings attribute */   /* has already been parsed.                         */   /*==================================================*/   if ((strcmp(constraintName,"allowed-lexemes") == 0) &&       ((parsedConstraints->allowedSymbols) || (parsedConstraints->allowedStrings)))     {      if (parsedConstraints->allowedSymbols) tempPtr = "allowed-symbols";      else tempPtr = "allowed-strings";      NoConjunctiveUseError(theEnv,"allowed-lexemes",tempPtr);      return(FALSE);     }   /*===========================================================*/   /* The allowed-symbols/strings attributes are not allowed if */   /* the allowed-lexemes attribute has already been parsed.    */   /*===========================================================*/   if (((strcmp(constraintName,"allowed-symbols") == 0) ||        (strcmp(constraintName,"allowed-strings") == 0)) &&       (parsedConstraints->allowedLexemes))     {      NoConjunctiveUseError(theEnv,constraintName,"allowed-lexemes");      return(FALSE);     }   /*========================*/   /* Get the expected type. */   /*========================*/   restrictionType = GetConstraintTypeFromAllowedName(constraintName);   SetRestrictionFlag(restrictionType,constraints,TRUE);   if (strcmp(constraintName,"allowed-classes") == 0)     { expectedType = SYMBOL; }   else     { expectedType = restrictionType; }      /*=================================================*/   /* Get the last value in the restriction list (the */   /* allowed values will be appended there).         */   /*=================================================*/   if (strcmp(constraintName,"allowed-classes") == 0)     { lastValue = constraints->classList; }   else     { lastValue = constraints->restrictionList; }        if (lastValue != NULL)     { while (lastValue->nextArg != NULL) lastValue = lastValue->nextArg; }   /*==================================================*/   /* Read the allowed values and add them to the list */   /* until a right parenthesis is encountered.        */   /*==================================================*/   SavePPBuffer(theEnv," ");   GetToken(theEnv,readSource,&inputToken);   while (inputToken.type != RPAREN)     {      SavePPBuffer(theEnv," ");      /*=============================================*/      /* Determine the type of the token just parsed */      /* and if it is an appropriate value.          */      /*=============================================*/      switch(inputToken.type)        {         case INTEGER:           if ((expectedType != UNKNOWN_VALUE) &&               (expectedType != INTEGER) &&               (expectedType != INTEGER_OR_FLOAT)) error = TRUE;           constantParsed = TRUE;           break;         case FLOAT:           if ((expectedType != UNKNOWN_VALUE) &&               (expectedType != FLOAT) &&               (expectedType != INTEGER_OR_FLOAT)) error = TRUE;           constantParsed = TRUE;           break;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一卡二卡三卡四卡| 国产亚洲欧美日韩俺去了| 精品一区二区三区在线观看国产| 国产日韩在线不卡| 在线观看91精品国产麻豆| 岛国一区二区三区| 久久99精品久久久久久| 亚洲韩国精品一区| 国产精品美女久久福利网站| 欧美电影免费观看高清完整版在线| 97成人超碰视| 国产精品中文字幕一区二区三区| 午夜精品视频在线观看| 自拍偷拍亚洲欧美日韩| 国产视频不卡一区| 6080yy午夜一二三区久久| 91丨九色丨黑人外教| 国产精品一区久久久久| 奇米色一区二区三区四区| 亚洲精品少妇30p| 国产性天天综合网| 精品欧美久久久| 欧美精品777| 欧美午夜片在线观看| 91日韩在线专区| 成人久久视频在线观看| 91在线视频免费观看| 粉嫩嫩av羞羞动漫久久久| 久久精品国产99国产| 亚洲高清免费在线| 一区二区国产视频| 亚洲麻豆国产自偷在线| 自拍偷拍亚洲综合| 亚洲欧美日韩综合aⅴ视频| 亚洲国产精品ⅴa在线观看| 欧美激情在线观看视频免费| 久久久午夜精品| 久久综合成人精品亚洲另类欧美 | 色偷偷久久一区二区三区| 国产剧情一区二区| 国产麻豆午夜三级精品| 国产美女一区二区三区| 国产精品一区不卡| 国产一区欧美一区| 国产一区二区三区免费看| 狠狠色丁香婷婷综合| 国模一区二区三区白浆| 国产一区二区三区日韩| 国产一区二区三区免费| 国产99精品国产| proumb性欧美在线观看| 91捆绑美女网站| 在线观看av一区二区| 欧美体内she精高潮| 欧美老年两性高潮| 欧美日韩不卡一区| 欧美mv日韩mv亚洲| 精品国产三级a在线观看| 久久欧美中文字幕| 亚洲日本在线天堂| 亚洲午夜成aⅴ人片| 免费在线看成人av| 韩国三级在线一区| 成人av在线观| 欧美三级日韩三级国产三级| 日韩一区二区在线观看| 久久久九九九九| 亚洲精品日韩综合观看成人91| 亚洲va韩国va欧美va| 国产一区二区在线观看视频| 成人免费观看视频| 欧亚一区二区三区| 精品久久99ma| 中文字幕一区二区三区在线观看| 亚洲综合偷拍欧美一区色| 蜜桃视频第一区免费观看| 国产高清成人在线| 欧日韩精品视频| 久久久精品综合| 亚洲老司机在线| 精品一区二区综合| 色哟哟一区二区在线观看| 日韩欧美在线综合网| 亚洲欧洲在线观看av| 五月综合激情网| 成人深夜福利app| 欧美美女一区二区在线观看| 久久色.com| 亚洲高清在线视频| 国产精品一区久久久久| 欧美性色综合网| 久久久久久久国产精品影院| 午夜av电影一区| 99re成人精品视频| wwwwww.欧美系列| 天天做天天摸天天爽国产一区 | 不卡一区二区中文字幕| 91精品婷婷国产综合久久性色| 一区视频在线播放| 国产激情一区二区三区四区| 欧美福利电影网| 亚洲免费色视频| 粉嫩嫩av羞羞动漫久久久| 日韩女优制服丝袜电影| 一区二区三区 在线观看视频| 国产精品18久久久久久久久久久久| 欧美色精品天天在线观看视频| 国产色产综合产在线视频| 日本大胆欧美人术艺术动态| 色先锋aa成人| 中文字幕一区二区三区av| 国产乱人伦精品一区二区在线观看| 欧美福利视频导航| 亚洲国产wwwccc36天堂| 99re成人在线| 中文字幕制服丝袜成人av | 黄色精品一二区| 欧美喷潮久久久xxxxx| 亚洲天堂免费看| 粉嫩高潮美女一区二区三区| 久久久久国产免费免费| 九九视频精品免费| 91精品欧美福利在线观看| 亚洲一区在线视频| 91免费在线播放| 亚洲日本va在线观看| 99re视频这里只有精品| 1区2区3区精品视频| 成人中文字幕在线| 国产精品入口麻豆九色| 豆国产96在线|亚洲| 国产网站一区二区三区| 国产精品亚洲一区二区三区在线 | 亚洲成年人网站在线观看| 色999日韩国产欧美一区二区| 亚洲欧美日韩一区二区| 一本色道a无线码一区v| 一区二区高清在线| 欧美专区亚洲专区| 亚洲国产一区二区在线播放| 在线观看视频91| 午夜欧美在线一二页| 88在线观看91蜜桃国自产| 日韩电影在线一区二区| 欧美一级生活片| 久久丁香综合五月国产三级网站| 日韩午夜中文字幕| 精油按摩中文字幕久久| 欧美激情在线观看视频免费| 成人av集中营| 亚洲六月丁香色婷婷综合久久| 欧美三级资源在线| 日韩电影一区二区三区| 日韩美女天天操| 国产成人亚洲精品狼色在线| 中文字幕不卡三区| 色国产精品一区在线观看| 日韩高清国产一区在线| 欧美成人猛片aaaaaaa| 成人午夜免费视频| 亚洲香蕉伊在人在线观| 日韩免费电影一区| 成人免费视频国产在线观看| 国产精品久久久久久久久晋中| 色综合久久久久综合| 五月综合激情婷婷六月色窝| 精品成人一区二区三区| 成人国产精品免费| www.欧美.com| 亚洲午夜精品17c| 日韩三级视频在线看| 成人的网站免费观看| 亚洲18女电影在线观看| 2020国产精品久久精品美国| 91视频.com| 美美哒免费高清在线观看视频一区二区 | 亚洲一区二区三区中文字幕在线| 91精品国产黑色紧身裤美女| 国产一区二区三区观看| 一区二区三区小说| 日韩免费看的电影| 日本二三区不卡| 黄色资源网久久资源365| 亚洲激情网站免费观看| 久久新电视剧免费观看| 欧美午夜在线一二页| 成人精品国产福利| 免费观看一级特黄欧美大片| 中文字幕一区二区三区不卡在线| 欧美一区二区三区播放老司机| aa级大片欧美| 美国av一区二区| 亚洲综合网站在线观看| 国产精品入口麻豆九色| 欧美一级一区二区| 91福利在线看| 成人理论电影网| 韩国在线一区二区| 日韩中文欧美在线| 亚洲男女毛片无遮挡|