HomeSort by relevance Sort by last modified time
    Searched refs:iType (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/pdfium/xfa/src/fdp/src/fde/
fde_object.cpp 12 IFDE_Brush* IFDE_Brush::Create(int32_t iType) {
13 switch (iType) {
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
OISFactoryCreator.h 49 @param iType Type of devices to check
51 virtual int totalDevices(Type iType) = 0;
55 @param iType Type of devices to check
57 virtual int freeDevices(Type iType) = 0;
61 @param iType Type to check
64 virtual bool vendorExist(Type iType, const std::string & vendor) = 0;
68 @param iType Type to create
72 virtual Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "") = 0;
OISInputManager.h 94 @param iType
97 int getNumberOfDevices( Type iType );
112 Object* createInputObject( Type iType, bool bufferMode, const std::string &vendor = "");
OISObject.h 65 virtual Interface* queryInterface(Interface::IType type) = 0;
71 Object(const std::string &vendor, Type iType, bool buffered,
74 mType(iType),
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/linux/
LinuxInputManager.h 51 int totalDevices(Type iType);
54 int freeDevices(Type iType);
57 bool vendorExist(Type iType, const std::string & vendor);
60 Object* createObject(InputManager *creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/mac/
CocoaInputManager.h 50 int totalDevices(Type iType);
53 int freeDevices(Type iType);
56 bool vendorExist(Type iType, const std::string & vendor);
59 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
MacInputManager.h 49 int totalDevices(Type iType);
52 int freeDevices(Type iType);
55 bool vendorExist(Type iType, const std::string & vendor);
58 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
MacHIDManager.h 81 int totalDevices(Type iType);
84 int freeDevices(Type iType);
87 bool vendorExist(Type iType, const std::string & vendor);
90 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/win32/
Win32InputManager.h 48 int totalDevices(Type iType);
51 int freeDevices(Type iType);
54 bool vendorExist(Type iType, const std::string & vendor);
57 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/extras/LIRC/
OISLIRCFactoryCreator.h 49 int totalDevices(Type iType);
52 int freeDevices(Type iType);
55 bool vendorExist(Type iType, const std::string & vendor);
58 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
OISLIRCFactoryCreator.cpp 304 int LIRCFactoryCreator::totalDevices(Type iType)
306 if( iType == OISJoyStick )
313 int LIRCFactoryCreator::freeDevices(Type iType)
315 if( iType == OISJoyStick )
322 bool LIRCFactoryCreator::vendorExist(Type iType, const std::string & vendor)
324 if( iType == OISJoyStick && std::find(mUnusedRemotes.begin(), mUnusedRemotes.end(), vendor) != mUnusedRemotes.end() )
331 Object* LIRCFactoryCreator::createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor)
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/extras/WiiMote/
OISWiiMoteFactoryCreator.h 59 int totalDevices(Type iType);
62 int freeDevices(Type iType);
65 bool vendorExist(Type iType, const std::string & vendor);
68 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
OISWiiMoteFactoryCreator.cpp 82 int WiiMoteFactoryCreator::totalDevices(Type iType)
84 if( iType == OISJoyStick )
91 int WiiMoteFactoryCreator::freeDevices(Type iType)
93 if( iType == OISJoyStick )
100 bool WiiMoteFactoryCreator::vendorExist(Type iType, const std::string & vendor)
102 if( iType == OISJoyStick && mVendorName == vendor )
109 Object* WiiMoteFactoryCreator::createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor)
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/mac/
MacInputManager.cpp 142 int MacInputManager::totalDevices(Type iType)
144 switch(iType)
153 int MacInputManager::freeDevices(Type iType)
155 switch(iType)
164 bool MacInputManager::vendorExist(Type iType, const std::string & vendor)
166 if( (iType == OISKeyboard || iType == OISMouse) && vendor == mInputSystemName )
173 Object* MacInputManager::createObject(InputManager* creator, Type iType, bool bufferMode,
178 switch(iType)
194 obj = mHIDManager->createObject(creator, iType, bufferMode, vendor)
    [all...]
CocoaInputManager.mm 120 int CocoaInputManager::totalDevices(Type iType)
122 switch(iType)
131 int CocoaInputManager::freeDevices(Type iType)
133 switch(iType)
142 bool CocoaInputManager::vendorExist(Type iType, const std::string & vendor)
144 if( (iType == OISKeyboard || iType == OISMouse) && vendor == mInputSystemName )
151 Object* CocoaInputManager::createObject(InputManager* creator, Type iType, bool bufferMode,
156 switch(iType)
172 obj = mHIDManager->createObject(creator, iType, bufferMode, vendor)
    [all...]
MacHIDManager.cpp 390 int MacHIDManager::totalDevices(Type iType)
397 if((*it)->type == iType)
405 int MacHIDManager::freeDevices(Type iType)
412 if((*it)->inUse == false && (*it)->type == iType)
420 bool MacHIDManager::vendorExist(Type iType, const std::string & vendor)
426 if((*it)->type == iType && (*it)->combinedKey == vendor)
434 Object* MacHIDManager::createObject(InputManager* creator, Type iType, bool bufferMode,
442 if((*it)->inUse == false && (*it)->type == iType && (vendor == "" || (*it)->combinedKey == vendor))
444 int totalDevs = totalDevices(iType);
445 int freeDevs = freeDevices(iType);
    [all...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/iphone/
iPhoneInputManager.h 64 int totalDevices(Type iType);
67 int freeDevices(Type iType);
70 bool vendorExist(Type iType, const std::string & vendor);
73 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/linux/
LinuxInputManager.cpp 124 int LinuxInputManager::totalDevices(Type iType)
126 switch(iType)
136 int LinuxInputManager::freeDevices(Type iType)
138 switch(iType)
148 bool LinuxInputManager::vendorExist(Type iType, const std::string & vendor)
150 if((iType == OISKeyboard || iType == OISMouse) && vendor == mInputSystemName)
154 else if( iType == OISJoyStick )
165 Object* LinuxInputManager::createObject(InputManager *creator, Type iType, bool bufferMode, const std::string & vendor)
169 switch(iType)
    [all...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/iphone/
iPhoneInputManager.mm 160 int iPhoneInputManager::totalDevices(Type iType)
162 switch(iType)
171 int iPhoneInputManager::freeDevices(Type iType)
173 switch(iType)
182 bool iPhoneInputManager::vendorExist(Type iType, const std::string & vendor)
184 if( ( iType == OISMultiTouch || iType == OISJoyStick ) && vendor == mInputSystemName )
191 Object* iPhoneInputManager::createObject(InputManager* creator, Type iType, bool bufferMode,
196 switch(iType)
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/SDL/
SDLInputManager.cpp 85 Object* SDLInputManager::createInputObject( Type iType, bool bufferMode )
89 switch( iType )
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/SDL/
SDLInputManager.h 51 Object* createInputObject( Type iType, bool bufferMode );
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/
Win32InputManager.cpp 194 int Win32InputManager::totalDevices(Type iType)
196 switch(iType)
206 int Win32InputManager::freeDevices(Type iType)
208 switch(iType)
218 bool Win32InputManager::vendorExist(Type iType, const std::string & vendor)
220 if( (iType == OISKeyboard || iType == OISMouse) && vendor == mInputSystemName )
224 else if( iType == OISJoyStick )
235 Object* Win32InputManager::createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor)
239 switch(iType)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mqmail.h 27 MQMailRecipType iType;
51 MQMailFormFieldType iType;
97 MQMailEMailType iType;
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/
OISInputManager.cpp 172 int InputManager::getNumberOfDevices( Type iType )
178 factoyObjects += (*i)->totalDevices(iType);
198 Object* InputManager::createInputObject( Type iType, bool bufferMode, const std::string &vendor )
204 if( (*i)->freeDevices(iType) > 0 )
206 if( vendor == "" || (*i)->vendorExist(iType, vendor) )
208 obj = (*i)->createObject(this, iType, bufferMode, vendor);
  /external/pdfium/core/src/fpdfdoc/
doc_form.cpp 525 int iType,
570 if (pField->GetFieldType() != iType) {
594 int iType) {
595 return ValidateFieldName(csNewFieldName, iType, NULL, NULL);
1011 int32_t iType = pField->GetType();
1012 if (iType == CPDF_FormField::PushButton ||
1013 iType == CPDF_FormField::CheckBox || iType == CPDF_FormField::ListBox) {
    [all...]

Completed in 515 milliseconds

1 2 3 4