/external/sfntly/cpp/src/sample/subtly/ |
character_predicate.cc | 31 bool AcceptRange::operator()(int32_t character) const { 32 return start_ <= character && character <= end_; 44 bool AcceptSet::operator()(int32_t character) const { 45 return characters_->find(character) != characters_->end(); 49 bool AcceptAll::operator()(int32_t character) const { 50 UNREFERENCED_PARAMETER(character);
|
character_predicate.h | 28 virtual bool operator()(int32_t character) const = 0; 37 virtual bool operator()(int32_t character) const; 52 virtual bool operator()(int32_t character) const; 64 virtual bool operator()(int32_t character) const;
|
/external/proguard/src/proguard/ |
WordReader.java | 139 Character.isWhitespace(currentLine.charAt(currentIndex))) 166 Character.isWhitespace(currentLine.charAt(currentIndex))) 194 // The next word is starting with a quote character. 198 // The next word is a quoted character string. 226 Character.isWhitespace(currentLine.charAt(currentIndex-1)))) { 237 Character.isWhitespace(currentLine.charAt(endIndex-1))) 244 // The next word is a single delimiting character. 249 // The next word is a simple character string. 256 Character.isWhitespace(currentCharacter) || 347 private boolean isOption(char character) [all...] |
/external/jmonkeyengine/engine/src/bullet-native/ |
com_jme3_bullet_objects_PhysicsCharacter.cpp | 40 #include "BulletDynamics/Character/btKinematicCharacterController.h" 90 btKinematicCharacterController* character = new btKinematicCharacterController(ghost, shape, stepHeight); local 91 return reinterpret_cast<jlong>(character); 101 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 102 if (character == NULL) { 109 character->warp(vec); 119 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 120 if (character == NULL) { 127 character->setWalkDirection(vec); 137 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId) local 153 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 169 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 185 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 201 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 217 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 233 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 249 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 265 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 377 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
Text_Suite.py | 38 """color - The color of the first character. """ 42 """font - The name of the font of the first character. """ 46 """size - The size in points of the first character. """ 56 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem 57 """character - This subdivides the text into characters. """ 64 characters = character 100 'character' : character, 114 'character' : character, [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/ |
Text_Suite.py | 38 """color - The color of the first character. """ 42 """font - The name of the font of the first character. """ 46 """size - The size in points of the first character. """ 56 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem 57 """character - This subdivides the text into characters. """ 64 characters = character 100 'character' : character, 114 'character' : character, [all...] |
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tokenization/ |
named_entity_trie.js | 4 //(see: http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#tokenizing-character-references and 5 //http://www.whatwg.org/specs/web-apps/current-work/multipage/named-character-references.html#named-character-references) [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
NameLookupBuilder.java | 178 int character; local 183 character = name.codePointAt(position++); 184 if ((character == 0x20) || (character == 0x2c) || (character == 0x2E)) { 190 if ((character < 0x1100) || (character > 0x1112 && character < 0x3131) || 191 (character > 0x314E && character < 0xAC00) | [all...] |
HanziToPinyin.java | 28 * An object to convert Chinese character to its corresponding pinyin string. 97 private void tokenize(char character, Token token) { 98 token.source = Character.toString(character); 101 if (character < 128) { 108 if (character < 0x250 || (0x1e00 <= character && character < 0x1eff)) { 133 * space will be put into a Token, One Hanzi character which has pinyin will be treated as a 151 // c. current character is space 153 final char character = input.charAt(i); local [all...] |
/external/lldb/test/functionalities/data-formatter/data-formatter-script/ |
main.cpp | 18 char character; member in struct:i_am_cool 20 integer(I), floating(F), character(C) {} 21 i_am_cool() : integer(1), floating(2), character('3') {}
|
/external/clang/test/PCH/ |
cxx_exprs.cpp | 12 char character; variable 26 const_cast_result char_ptr = &character;
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/ |
PhysicsCharacter.java | 37 import com.bulletphysics.dynamics.character.KinematicCharacterController; 52 * Basic Bullet Character 57 protected KinematicCharacterController character; field in class:PhysicsCharacter 81 throw (new UnsupportedOperationException("Kinematic character nodes cannot have mesh collision shapes")); 95 character = new KinematicCharacterController(gObject, (ConvexShape) collisionShape.getCShape(), stepHeight); 99 * Sets the location of this physics character 103 character.warp(Converter.convert(location, tempVec)); 115 character.setWalkDirection(Converter.convert(walkDirection, tempVec)); 127 character.setUpAxis(axis); 136 character.setFallSpeed(fallSpeed) [all...] |
/frameworks/base/core/java/android/util/ |
Patterns.java | 229 char character = matchingRegion.charAt(i); local 231 if (character == '+' || Character.isDigit(character)) { 232 buffer.append(character);
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
BinaryDictDecoderUtils.java | 114 * A class grouping utility function for our specific character encoding. 121 private static boolean fitsOnOneByte(final int character, 123 int codePoint = character; 125 if (codePointToOneByteCodeMap.containsKey(character)) { 126 codePoint = codePointToOneByteCodeMap.get(character); 134 * Compute the size of a character given its character code. 147 * @param character the character code. 150 static int getCharSize(final int character, 267 int character = readChar(dictBuffer); local 284 int character = dictBuffer.readUnsignedByte(); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Text_Suite.py | 32 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem 33 """character - A character """ 56 """color - the color of the first character """ 60 """font - the name of the font of the first character """ 68 """size - the size in points of the first character """ 72 """style - the text style of the first character of the first character """ 115 character._superclassnames = ['text'] 116 character._privpropdict = [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
token.ml | 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
token.ml | 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
token.ml | 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/ |
pod_char_traits.h | 1 // POD character, std::char_traits specialization -*- C++ -*- 43 // POD character abstraction. 47 /// @brief A POD class that serves as a character abstraction class. 49 struct character struct 54 typedef character<V, I, S> char_type; 78 operator==(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 83 operator<(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 93 /// char_traits<__gnu_cxx::character> specialization [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/ |
pod_char_traits.h | 1 // POD character, std::char_traits specialization -*- C++ -*- 43 // POD character abstraction. 47 /// @brief A POD class that serves as a character abstraction class. 49 struct character struct 54 typedef character<V, I, S> char_type; 78 operator==(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 83 operator<(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 93 /// char_traits<__gnu_cxx::character> specialization [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/ |
pod_char_traits.h | 1 // POD character, std::char_traits specialization -*- C++ -*- 43 // POD character abstraction. 47 /// @brief A POD class that serves as a character abstraction class. 49 struct character struct 54 typedef character<V, I, S> char_type; 78 operator==(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 83 operator<(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 93 /// char_traits<__gnu_cxx::character> specialization [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/ |
pod_char_traits.h | 1 // POD character, std::char_traits specialization -*- C++ -*- 39 // POD character abstraction. 43 /// @brief A POD class that serves as a character abstraction class. 45 struct character struct 50 typedef character<V, I, S> char_type; 74 operator==(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 79 operator<(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 86 /// char_traits<__gnu_cxx::character> specialization [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/ |
pod_char_traits.h | 1 // POD character, std::char_traits specialization -*- C++ -*- 39 // POD character abstraction. 43 /// @brief A POD class that serves as a character abstraction class. 45 struct character struct 50 typedef character<V, I, S> char_type; 74 operator==(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 79 operator<(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 86 /// char_traits<__gnu_cxx::character> specialization [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/ |
pod_char_traits.h | 1 // POD character, std::char_traits specialization -*- C++ -*- 39 // POD character abstraction. 43 /// @brief A POD class that serves as a character abstraction class. 45 struct character struct 50 typedef character<V, I, S> char_type; 74 operator==(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 79 operator<(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 86 /// char_traits<__gnu_cxx::character> specialization [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/ |
pod_char_traits.h | 1 // POD character, std::char_traits specialization -*- C++ -*- 39 // POD character abstraction. 43 /// @brief A POD class that serves as a character abstraction class. 45 struct character struct 50 typedef character<V, I, S> char_type; 74 operator==(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 79 operator<(const character<V, I, S>& lhs, const character<V, I, S>& rhs) 86 /// char_traits<__gnu_cxx::character> specialization [all...] |